/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/InstPrinter/ |
D | X86InstPrinterCommon.cpp | 108 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); in printPCRelImm() local 110 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { in printPCRelImm()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cfi-verify/lib/ |
D | GraphBuilder.cpp | 255 uint64_t BranchTarget; in buildFlowGraphImpl() local 258 ParentMeta.InstructionSize, BranchTarget)) { in buildFlowGraphImpl() 269 if (BranchTarget != Address) { in buildFlowGraphImpl() 302 BranchNode.IndirectCFIsOnTargetPath = (BranchTarget == Address); in buildFlowGraphImpl() 304 if (BranchTarget == Address) in buildFlowGraphImpl()
|
/external/mesa3d/src/mesa/program/ |
D | prog_execute.c | 445 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 450 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 452 pc = inst->BranchTarget - 1; /* go to matching BNGLOOP */ in _mesa_execute_program() 459 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 463 pc = inst->BranchTarget; in _mesa_execute_program() 466 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 470 pc = inst->BranchTarget - 1; in _mesa_execute_program() 479 pc = inst->BranchTarget - 1; in _mesa_execute_program() 649 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 651 program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() [all …]
|
D | program.c | 358 if (inst->BranchTarget > 0) { in _mesa_insert_instructions() 359 if ((GLuint)inst->BranchTarget >= start) { in _mesa_insert_instructions() 360 inst->BranchTarget += count; in _mesa_insert_instructions() 408 if (inst->BranchTarget > 0) { in _mesa_delete_instructions() 409 if (inst->BranchTarget > (GLint) start) { in _mesa_delete_instructions() 410 inst->BranchTarget -= count; in _mesa_delete_instructions()
|
D | prog_print.c | 703 fprintf(f, " # (if false, goto %d)", inst->BranchTarget); in _mesa_fprint_instruction_opt() 707 fprintf(f, "ELSE; # (goto %d)\n", inst->BranchTarget); in _mesa_fprint_instruction_opt() 713 fprintf(f, "BGNLOOP; # (end at %d)\n", inst->BranchTarget); in _mesa_fprint_instruction_opt() 716 fprintf(f, "ENDLOOP; # (goto %d)\n", inst->BranchTarget); in _mesa_fprint_instruction_opt() 722 inst->BranchTarget); in _mesa_fprint_instruction_opt() 737 fprintf(f, "CAL %u", inst->BranchTarget); in _mesa_fprint_instruction_opt()
|
D | prog_instruction.h | 256 GLint BranchTarget; member
|
D | ir_to_mesa.cpp | 2239 mesa_instructions[i].BranchTarget = -1; in set_branchtargets() 2256 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i; in set_branchtargets() 2260 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i; in set_branchtargets() 2276 if (mesa_instructions[j].BranchTarget == -1) { in set_branchtargets() 2277 mesa_instructions[j].BranchTarget = i; in set_branchtargets() 2282 mesa_instructions[i].BranchTarget = loop_stack[loop_stack_pos]; in set_branchtargets() 2283 mesa_instructions[loop_stack[loop_stack_pos]].BranchTarget = i; in set_branchtargets() 2287 if (entry->sig_id == mesa_instructions[i].BranchTarget) { in set_branchtargets() 2288 mesa_instructions[i].BranchTarget = entry->inst; in set_branchtargets()
|
D | prog_optimize.c | 976 loopStack[loopStackDepth].End = inst->BranchTarget; in _mesa_find_temp_intervals()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | MethodGen.java | 933 static final class BranchTarget { class in MethodGen 939 BranchTarget(final InstructionHandle target, final int stackDepth) { in BranchTarget() method in MethodGen.BranchTarget 947 private final Stack<BranchTarget> branchTargets = new Stack<>(); 948 private final Hashtable<InstructionHandle, BranchTarget> visitedTargets = new Hashtable<>(); 959 public BranchTarget pop() { in pop() 961 final BranchTarget bt = branchTargets.pop(); in pop() 968 private BranchTarget visit( final InstructionHandle target, final int stackDepth ) { in visit() 969 final BranchTarget bt = new BranchTarget(target, stackDepth); in visit() 1047 final BranchTarget bt = branchTargets.pop(); in getMaxStack()
|
/external/llvm/lib/Target/X86/InstPrinter/ |
D | X86IntelInstPrinter.cpp | 132 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); in printPCRelImm() local 134 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { in printPCRelImm()
|
D | X86ATTInstPrinter.cpp | 151 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); in printPCRelImm() local 153 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { in printPCRelImm()
|
/external/llvm/lib/Target/AArch64/InstPrinter/ |
D | AArch64InstPrinter.cpp | 1369 const MCConstantExpr *BranchTarget = in printAlignedLabel() local 1372 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { in printAlignedLabel()
|
/external/llvm/lib/Target/X86/ |
D | X86InstrInfo.h | 472 const MCSymbolRefExpr *BranchTarget) const override;
|
D | X86InstrInfo.cpp | 7083 MCInst &Branch, const MCSymbolRefExpr *BranchTarget) const { in getUnconditionalBranch() 7085 Branch.addOperand(MCOperand::createExpr(BranchTarget)); in getUnconditionalBranch()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/InstPrinter/ |
D | AArch64InstPrinter.cpp | 1301 const MCConstantExpr *BranchTarget = in printAlignedLabel() local 1304 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { in printAlignedLabel()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonHardwareLoops.cpp | 1251 MachineBasicBlock *BranchTarget = LastI->getOperand(1).getMBB(); in convertToHardwareLoop() local 1253 if (!L->contains(BranchTarget)) { in convertToHardwareLoop() 1257 TII->InsertBranch(*LastMBB, BranchTarget, nullptr, Cond, LastIDL); in convertToHardwareLoop()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonHardwareLoops.cpp | 1290 MachineBasicBlock *BranchTarget = LastI->getOperand(1).getMBB(); in convertToHardwareLoop() local 1292 if (!L->contains(BranchTarget)) { in convertToHardwareLoop() 1296 TII->insertBranch(*LastMBB, BranchTarget, nullptr, Cond, LastIDL); in convertToHardwareLoop()
|
D | HexagonConstPropagation.cpp | 2303 const MachineBasicBlock *BranchTarget = BrI.getOperand(1).getMBB(); in evaluate() local 2307 Targets.insert(BranchTarget); in evaluate()
|
/external/llvm/include/llvm/Target/ |
D | TargetInstrInfo.h | 578 const MCSymbolRefExpr *BranchTarget) const { in getUnconditionalBranch() argument
|
/external/llvm/lib/Target/Mips/AsmParser/ |
D | MipsAsmParser.cpp | 3080 unsigned BranchTarget; in expandDiv() local 3083 BranchTarget = IsMips64 ? 12 : 8; in expandDiv() 3086 BranchTarget = IsMips64 ? 20 : 16; in expandDiv() 3109 TOut.emitRRI(Mips::BNE, RtReg, ATReg, BranchTarget, IDLoc, STI); in expandDiv() 3114 TOut.emitRRI(Mips::BNE, RtReg, ATReg, BranchTarget, IDLoc, STI); in expandDiv()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64InstrFormats.td | 450 class BranchTarget<int N> : AsmOperandClass { 451 let Name = "BranchTarget" # N; 456 class PCRelLabel<int N> : BranchTarget<N> { 460 def BranchTarget14Operand : BranchTarget<14>; 461 def BranchTarget26Operand : BranchTarget<26>;
|