Searched refs:ModifyJumpTarget (Results 1 – 6 of 6) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/ |
| D | x64_optimize_common.h | 31 void ModifyJumpTarget(LabelIdx targetLabel, BB &bb) override; 32 void ModifyJumpTarget(Operand &targetOperand, BB &bb) override; 33 void ModifyJumpTarget(BB &newTarget, BB &bb) override;
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/ |
| D | aarch64_optimize_common.h | 31 void ModifyJumpTarget(maple::LabelIdx targetLabel, BB &bb) override; 32 void ModifyJumpTarget(Operand &targetOperand, BB &bb) override; 33 void ModifyJumpTarget(BB &newTarget, BB &bb) override;
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
| D | x64_optimize_common.cpp | 22 void X64InsnVisitor::ModifyJumpTarget(Operand &targetOperand, BB &bb) in ModifyJumpTarget() function in maplebe::X64InsnVisitor 32 void X64InsnVisitor::ModifyJumpTarget(LabelIdx targetLabel, BB &bb) in ModifyJumpTarget() function in maplebe::X64InsnVisitor 35 … ModifyJumpTarget(GetCGFunc()->GetOpndBuilder()->CreateLabel(lableName.c_str(), targetLabel), bb); in ModifyJumpTarget() 38 void X64InsnVisitor::ModifyJumpTarget(BB &newTarget, BB &bb) in ModifyJumpTarget() function in maplebe::X64InsnVisitor 40 …ModifyJumpTarget(newTarget.GetLastInsn()->GetOperand(x64::GetJumpTargetIdx(*newTarget.GetLastInsn(… in ModifyJumpTarget()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
| D | aarch64_optimize_common.cpp | 22 void AArch64InsnVisitor::ModifyJumpTarget(Operand &targetOperand, BB &bb) in ModifyJumpTarget() function in maplebe::AArch64InsnVisitor 52 void AArch64InsnVisitor::ModifyJumpTarget(maple::LabelIdx targetLabel, BB &bb) in ModifyJumpTarget() function in maplebe::AArch64InsnVisitor 54 …ModifyJumpTarget(static_cast<AArch64CGFunc *>(GetCGFunc())->GetOrCreateLabelOperand(targetLabel), … in ModifyJumpTarget() 57 void AArch64InsnVisitor::ModifyJumpTarget(BB &newTarget, BB &bb) in ModifyJumpTarget() function in maplebe::AArch64InsnVisitor 60 …ModifyJumpTarget(newTarget.GetLastInsn()->GetOperand(AArch64isa::GetJumpTargetIdx(*newTarget.GetLa… in ModifyJumpTarget()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
| D | cg_cfg.h | 38 virtual void ModifyJumpTarget(LabelIdx targetLabel, BB &bb) = 0; 46 virtual void ModifyJumpTarget(Operand &targetOperand, BB &bb) = 0; 55 virtual void ModifyJumpTarget(BB &newTarget, BB &bb) = 0;
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | cg_cfg.cpp | 514 insnVisitor->ModifyJumpTarget(targetLabel, *preBB); in RemoveBB() 568 insnVisitor->ModifyJumpTarget(srcBB, targetBB); in RetargetJump()
|