Searched refs:BranchTarget (Results 1 - 19 of 19) sorted by relevance

/external/llvm/lib/Target/X86/InstPrinter/
H A DX86IntelInstPrinter.cpp127 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); local
129 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) {
H A DX86ATTInstPrinter.cpp139 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); local
141 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) {
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_print.c785 inst->BranchTarget,
804 fprintf(f, " # (if false, goto %d)", inst->BranchTarget);
808 fprintf(f, "ELSE; # (goto %d)\n", inst->BranchTarget);
814 fprintf(f, "BGNLOOP; # (end at %d)\n", inst->BranchTarget);
817 fprintf(f, "ENDLOOP; # (goto %d)\n", inst->BranchTarget);
825 inst->BranchTarget);
847 fprintf(f, "CAL %s; # (goto %d)\n", inst->Comment, inst->BranchTarget);
850 fprintf(f, "CAL %u", inst->BranchTarget);
H A Dprogram.c586 if (inst->BranchTarget > 0) {
587 if ((GLuint)inst->BranchTarget >= start) {
588 inst->BranchTarget += count;
635 if (inst->BranchTarget > 0) {
636 if (inst->BranchTarget > (GLint) start) {
637 inst->BranchTarget -= count;
749 newInst[lenA + i].BranchTarget += lenA;
H A Dprog_execute.c718 ASSERT(program->Instructions[inst->BranchTarget].Opcode
723 ASSERT(program->Instructions[inst->BranchTarget].Opcode
725 pc = inst->BranchTarget - 1; /* go to matching BNGLOOP */
735 pc = inst->BranchTarget - 1;
739 ASSERT(program->Instructions[inst->BranchTarget].Opcode
744 pc = inst->BranchTarget;
748 ASSERT(program->Instructions[inst->BranchTarget].Opcode
753 pc = inst->BranchTarget - 1;
764 pc = inst->BranchTarget - 1;
951 ASSERT(program->Instructions[inst->BranchTarget]
[all...]
H A Dprog_instruction.h408 GLint BranchTarget; member in struct:prog_instruction
H A Dir_to_mesa.cpp199 * the function body. So we make the BranchTarget that is called a
2268 mesa_instructions[i].BranchTarget = -1;
2285 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i;
2289 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i;
2299 * already had a BranchTarget assigned) to point to the end
2305 if (mesa_instructions[j].BranchTarget == -1) {
2306 mesa_instructions[j].BranchTarget = i;
2311 mesa_instructions[i].BranchTarget = loop_stack[loop_stack_pos];
2312 mesa_instructions[loop_stack[loop_stack_pos]].BranchTarget = i;
2318 if (entry->sig_id == mesa_instructions[i].BranchTarget) {
[all...]
H A Dprog_optimize.c1008 loopStack[loopStackDepth].End = inst->BranchTarget;
/external/mesa3d/src/mesa/program/
H A Dprog_print.c785 inst->BranchTarget,
804 fprintf(f, " # (if false, goto %d)", inst->BranchTarget);
808 fprintf(f, "ELSE; # (goto %d)\n", inst->BranchTarget);
814 fprintf(f, "BGNLOOP; # (end at %d)\n", inst->BranchTarget);
817 fprintf(f, "ENDLOOP; # (goto %d)\n", inst->BranchTarget);
825 inst->BranchTarget);
847 fprintf(f, "CAL %s; # (goto %d)\n", inst->Comment, inst->BranchTarget);
850 fprintf(f, "CAL %u", inst->BranchTarget);
H A Dprogram.c586 if (inst->BranchTarget > 0) {
587 if ((GLuint)inst->BranchTarget >= start) {
588 inst->BranchTarget += count;
635 if (inst->BranchTarget > 0) {
636 if (inst->BranchTarget > (GLint) start) {
637 inst->BranchTarget -= count;
749 newInst[lenA + i].BranchTarget += lenA;
H A Dprog_execute.c718 ASSERT(program->Instructions[inst->BranchTarget].Opcode
723 ASSERT(program->Instructions[inst->BranchTarget].Opcode
725 pc = inst->BranchTarget - 1; /* go to matching BNGLOOP */
735 pc = inst->BranchTarget - 1;
739 ASSERT(program->Instructions[inst->BranchTarget].Opcode
744 pc = inst->BranchTarget;
748 ASSERT(program->Instructions[inst->BranchTarget].Opcode
753 pc = inst->BranchTarget - 1;
764 pc = inst->BranchTarget - 1;
951 ASSERT(program->Instructions[inst->BranchTarget]
[all...]
H A Dprog_instruction.h408 GLint BranchTarget; member in struct:prog_instruction
H A Dir_to_mesa.cpp199 * the function body. So we make the BranchTarget that is called a
2268 mesa_instructions[i].BranchTarget = -1;
2285 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i;
2289 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i;
2299 * already had a BranchTarget assigned) to point to the end
2305 if (mesa_instructions[j].BranchTarget == -1) {
2306 mesa_instructions[j].BranchTarget = i;
2311 mesa_instructions[i].BranchTarget = loop_stack[loop_stack_pos];
2312 mesa_instructions[loop_stack[loop_stack_pos]].BranchTarget = i;
2318 if (entry->sig_id == mesa_instructions[i].BranchTarget) {
[all...]
H A Dprog_optimize.c1008 loopStack[loopStackDepth].End = inst->BranchTarget;
/external/llvm/lib/Target/AArch64/InstPrinter/
H A DAArch64InstPrinter.cpp383 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); local
385 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) {
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp1125 MachineBasicBlock *BranchTarget = LastI->getOperand(1).getMBB(); local
1127 if (!L->contains(BranchTarget)) {
1131 TII->InsertBranch(*LastMBB, BranchTarget, 0, Cond, LastIDL);
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp293 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr()); local
295 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) {
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_mesa_to_tgsi.c708 get_label( t, inst->BranchTarget ));
/external/mesa3d/src/mesa/state_tracker/
H A Dst_mesa_to_tgsi.c708 get_label( t, inst->BranchTarget ));

Completed in 231 milliseconds