Searched refs:existing (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/test/maple_be/ |
H A D | cg_cgbb_test.cpp | 48 maplebe::Insn existing = CreateInsnObj("existing", 32); in TEST() local 51 test_bb.SetFirstInsn(&existing); in TEST() 52 EXPECT_EQ(existing.GetPrev(), nullptr); in TEST() 53 maplebe::Insn *ans = test_bb.InsertInsnBefore(existing, newInsn); in TEST() 57 EXPECT_NE(existing.GetPrev(), nullptr); in TEST() 58 ans = test_bb.InsertInsnBefore(existing, newInsn1); in TEST() 66 maplebe::Insn existing = CreateInsnObj("existing", 32); in TEST() local 70 test_bb.SetFirstInsn(&existing); in TEST() [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | cgbb.cpp | 25 Insn *BB::InsertInsnBefore(Insn &existing, Insn &newInsn) in InsertInsnBefore() argument 27 Insn *pre = existing.GetPrev(); in InsertInsnBefore() 29 newInsn.SetNext(&existing); in InsertInsnBefore() 30 existing.SetPrev(&newInsn); in InsertInsnBefore() 34 if (&existing == firstInsn) { in InsertInsnBefore() 41 Insn *BB::InsertInsnAfter(Insn &existing, Insn &newInsn) in InsertInsnAfter() argument 43 newInsn.SetPrev(&existing); in InsertInsnAfter() 44 newInsn.SetNext(existing.GetNext()); in InsertInsnAfter() 45 existing.SetNext(&newInsn); in InsertInsnAfter() 46 if (&existing in InsertInsnAfter() [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | cgbb.h | 175 Insn *InsertInsnBefore(Insn &existing, Insn &newInsn); 178 Insn *InsertInsnAfter(Insn &existing, Insn &newInsn);
|
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/scopesInit/ |
H A D | scopesInitPhase.cpp | 106 // NOTE(gogabr): this will skip type/value parameters when they are added to an existing function sig in HandleFunction() 675 auto &existing = currentDecl->AsFunctionDecl()->Decls(); in CreateFuncDecl() local 676 if (std::find(existing.begin(), existing.end(), func) != existing.end()) { in CreateFuncDecl() 981 // Check for existing scope in VisitETSFunctionType()
|
Completed in 5 milliseconds