Home
last modified time | relevance | path

Searched refs:existing (Results 1 - 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/test/maple_be/
H A Dcg_cgbb_test.cpp48 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 Dcgbb.cpp25 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 Dcgbb.h175 Insn *InsertInsnBefore(Insn &existing, Insn &newInsn);
178 Insn *InsertInsnAfter(Insn &existing, Insn &newInsn);
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/scopesInit/
H A DscopesInitPhase.cpp106 // 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