Home
last modified time | relevance | path

Searched refs:BranchTarget (Results 1 – 21 of 21) sorted by relevance

/external/mesa3d/src/mesa/program/
Dprog_execute.c442 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program()
447 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program()
449 pc = inst->BranchTarget - 1; /* go to matching BNGLOOP */ in _mesa_execute_program()
456 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program()
460 pc = inst->BranchTarget; in _mesa_execute_program()
463 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program()
467 pc = inst->BranchTarget - 1; in _mesa_execute_program()
476 pc = inst->BranchTarget - 1; in _mesa_execute_program()
648 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program()
650 program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program()
[all …]
Dprogram.c364 if (inst->BranchTarget > 0) { in _mesa_insert_instructions()
365 if ((GLuint)inst->BranchTarget >= start) { in _mesa_insert_instructions()
366 inst->BranchTarget += count; in _mesa_insert_instructions()
414 if (inst->BranchTarget > 0) { in _mesa_delete_instructions()
415 if (inst->BranchTarget > (GLint) start) { in _mesa_delete_instructions()
416 inst->BranchTarget -= count; in _mesa_delete_instructions()
Dprog_print.c687 fprintf(f, " # (if false, goto %d)", inst->BranchTarget); in _mesa_fprint_instruction_opt()
691 fprintf(f, "ELSE; # (goto %d)\n", inst->BranchTarget); in _mesa_fprint_instruction_opt()
697 fprintf(f, "BGNLOOP; # (end at %d)\n", inst->BranchTarget); in _mesa_fprint_instruction_opt()
700 fprintf(f, "ENDLOOP; # (goto %d)\n", inst->BranchTarget); in _mesa_fprint_instruction_opt()
706 inst->BranchTarget); in _mesa_fprint_instruction_opt()
721 fprintf(f, "CAL %u", inst->BranchTarget); in _mesa_fprint_instruction_opt()
Dir_to_mesa.cpp2269 mesa_instructions[i].BranchTarget = -1; in set_branchtargets()
2286 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i; in set_branchtargets()
2290 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i; in set_branchtargets()
2306 if (mesa_instructions[j].BranchTarget == -1) { in set_branchtargets()
2307 mesa_instructions[j].BranchTarget = i; in set_branchtargets()
2312 mesa_instructions[i].BranchTarget = loop_stack[loop_stack_pos]; in set_branchtargets()
2313 mesa_instructions[loop_stack[loop_stack_pos]].BranchTarget = i; in set_branchtargets()
2317 if (entry->sig_id == mesa_instructions[i].BranchTarget) { in set_branchtargets()
2318 mesa_instructions[i].BranchTarget = entry->inst; in set_branchtargets()
Dprog_instruction.h256 GLint BranchTarget; member
Dprog_optimize.c976 loopStack[loopStackDepth].End = inst->BranchTarget; in _mesa_find_temp_intervals()
/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
DEDInst.cpp34 BranchTarget(-1), in EDInst()
113 BranchTarget = opIndex; in parseOperands()
133 return BranchTarget; in branchTargetID()
DEDInst.h84 int BranchTarget; member
/external/llvm/lib/Target/X86/InstPrinter/
DX86IntelInstPrinter.cpp132 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); in printPCRelImm() local
134 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { in printPCRelImm()
DX86ATTInstPrinter.cpp151 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); in printPCRelImm() local
153 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { in printPCRelImm()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/InstPrinter/
DARMInstPrinter.cpp211 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); in printOperand() local
213 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) { in printOperand()
/external/llvm/lib/Target/AArch64/InstPrinter/
DAArch64InstPrinter.cpp1369 const MCConstantExpr *BranchTarget = in printAlignedLabel() local
1372 if (BranchTarget && BranchTarget->evaluateAsAbsolute(Address)) { in printAlignedLabel()
/external/llvm/lib/Target/X86/
DX86InstrInfo.h472 const MCSymbolRefExpr *BranchTarget) const override;
DX86InstrInfo.cpp7083 MCInst &Branch, const MCSymbolRefExpr *BranchTarget) const { in getUnconditionalBranch()
7085 Branch.addOperand(MCOperand::createExpr(BranchTarget)); in getUnconditionalBranch()
/external/llvm/lib/Target/Hexagon/
DHexagonHardwareLoops.cpp1251 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/llvm/include/llvm/Target/
DTargetInstrInfo.h578 const MCSymbolRefExpr *BranchTarget) const { in getUnconditionalBranch() argument
/external/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp3080 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/annotation-tools/asmx/test/lib/
Dbcel-5.1.jarMETA-INF/ org/ org/apache/ org/apache/bcel/ org/apache ...
Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META- ...
/external/annotation-tools/asmx/
Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...