/external/llvm/lib/Target/X86/ |
D | X86ExpandPseudo.cpp | 86 MachineOperand &JumpTarget = MBBI->getOperand(0); in ExpandMI() local 113 if (JumpTarget.isGlobal()) in ExpandMI() 114 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in ExpandMI() 115 JumpTarget.getTargetFlags()); in ExpandMI() 117 assert(JumpTarget.isSymbol()); in ExpandMI() 118 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in ExpandMI() 119 JumpTarget.getTargetFlags()); in ExpandMI() 131 .addReg(JumpTarget.getReg(), RegState::Kill); in ExpandMI() 134 .addReg(JumpTarget.getReg(), RegState::Kill); in ExpandMI()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86ExpandPseudo.cpp | 188 MachineOperand &JumpTarget = MBBI->getOperand(0); in ExpandMI() local 237 if (JumpTarget.isGlobal()) { in ExpandMI() 238 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in ExpandMI() 239 JumpTarget.getTargetFlags()); in ExpandMI() 241 assert(JumpTarget.isSymbol()); in ExpandMI() 242 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in ExpandMI() 243 JumpTarget.getTargetFlags()); in ExpandMI() 259 .addReg(JumpTarget.getReg(), RegState::Kill); in ExpandMI() 262 .addReg(JumpTarget.getReg(), RegState::Kill); in ExpandMI()
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMFrameLowering.cpp | 411 MachineOperand &JumpTarget = MBBI->getOperand(0); in emitEpilogue() local 419 if (JumpTarget.isGlobal()) in emitEpilogue() 420 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in emitEpilogue() 421 JumpTarget.getTargetFlags()); in emitEpilogue() 423 assert(JumpTarget.isSymbol()); in emitEpilogue() 424 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in emitEpilogue() 425 JumpTarget.getTargetFlags()); in emitEpilogue() 433 addReg(JumpTarget.getReg(), RegState::Kill); in emitEpilogue() 437 addReg(JumpTarget.getReg(), RegState::Kill); in emitEpilogue()
|
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/ |
D | PPCFrameLowering.cpp | 686 MachineOperand &JumpTarget = MBBI->getOperand(0); in emitEpilogue() local 688 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in emitEpilogue() 695 MachineOperand &JumpTarget = MBBI->getOperand(0); in emitEpilogue() local 696 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA)).addImm(JumpTarget.getImm()); in emitEpilogue() 699 MachineOperand &JumpTarget = MBBI->getOperand(0); in emitEpilogue() local 701 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in emitEpilogue() 708 MachineOperand &JumpTarget = MBBI->getOperand(0); in emitEpilogue() local 709 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA8)).addImm(JumpTarget.getImm()); in emitEpilogue()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceTargetLoweringX8664.cpp | 591 void TargetX8664::lowerIndirectJump(Variable *JumpTarget) { in lowerIndirectJump() argument 595 if (JumpTarget->getType() != IceType_i64) { in lowerIndirectJump() 597 _movzx(T, JumpTarget); in lowerIndirectJump() 598 JumpTarget = T; in lowerIndirectJump() 606 _mov(T, JumpTarget); in lowerIndirectJump() 613 JumpTarget = T64; in lowerIndirectJump() 616 _jmp(JumpTarget); in lowerIndirectJump()
|
D | IceTargetLoweringX8632.cpp | 291 void TargetX8632::lowerIndirectJump(Variable *JumpTarget) { in lowerIndirectJump() argument 297 _and(JumpTarget, Ctx->getConstantInt32(~(BundleSize - 1))); in lowerIndirectJump() 300 _jmp(JumpTarget); in lowerIndirectJump()
|
D | IceTargetLoweringX8632.h | 61 void lowerIndirectJump(Variable *JumpTarget);
|
D | IceTargetLoweringX8664.h | 64 void lowerIndirectJump(Variable *JumpTarget);
|
D | IceTargetLoweringX86Base.h | 346 void lowerIndirectJump(Variable *JumpTarget) { in lowerIndirectJump() argument 350 std::move(JumpTarget)); in lowerIndirectJump()
|
/external/llvm/lib/Target/Mips/ |
D | Mips16ISelLowering.cpp | 495 SDValue JumpTarget = Callee; in getOpndList() local 503 JumpTarget = DAG.getExternalSymbol(Mips16HelperFunction, in getOpndList() 505 ExternalSymbolSDNode *S = cast<ExternalSymbolSDNode>(JumpTarget); in getOpndList() 506 JumpTarget = getAddrGlobal(S, CLI.DL, JumpTarget.getValueType(), DAG, in getOpndList() 513 Ops.push_back(JumpTarget); in getOpndList()
|
D | MipsInstrInfo.td | 615 let Name = "JumpTarget";
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | Mips16ISelLowering.cpp | 495 SDValue JumpTarget = Callee; in getOpndList() local 503 JumpTarget = DAG.getExternalSymbol(Mips16HelperFunction, in getOpndList() 505 ExternalSymbolSDNode *S = cast<ExternalSymbolSDNode>(JumpTarget); in getOpndList() 506 JumpTarget = getAddrGlobal(S, CLI.DL, JumpTarget.getValueType(), DAG, in getOpndList() 513 Ops.push_back(JumpTarget); in getOpndList()
|
D | MipsInstrInfo.td | 813 let Name = "JumpTarget";
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 367 typedef BlockScopePosPair JumpTarget; typedef in __anon83acd1880111::CFGBuilder 375 JumpTarget ContinueJumpTarget; 376 JumpTarget BreakJumpTarget; 385 typedef llvm::DenseMap<LabelDecl*, JumpTarget> LabelMapTy; 1069 JumpTarget JT = LI->second; in buildCFG() 2329 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt() 2387 JumpTarget JT = I->second; in VisitGotoStmt() 2426 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); in VisitForStmt() 2427 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); in VisitForStmt() 2437 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); in VisitForStmt() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86FrameLowering.cpp | 1051 MachineOperand &JumpTarget = MBBI->getOperand(0); in emitEpilogue() local 1076 if (JumpTarget.isGlobal()) in emitEpilogue() 1077 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in emitEpilogue() 1078 JumpTarget.getTargetFlags()); in emitEpilogue() 1080 assert(JumpTarget.isSymbol()); in emitEpilogue() 1081 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in emitEpilogue() 1082 JumpTarget.getTargetFlags()); in emitEpilogue() 1092 addReg(JumpTarget.getReg(), RegState::Kill); in emitEpilogue() 1095 addReg(JumpTarget.getReg(), RegState::Kill); in emitEpilogue()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCFrameLowering.cpp | 1350 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1352 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in createTailCallBranchInstr() 1359 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1360 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA)).addImm(JumpTarget.getImm()); in createTailCallBranchInstr() 1363 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1365 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in createTailCallBranchInstr() 1372 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1373 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA8)).addImm(JumpTarget.getImm()); in createTailCallBranchInstr()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCFrameLowering.cpp | 1565 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1567 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in createTailCallBranchInstr() 1574 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1575 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA)).addImm(JumpTarget.getImm()); in createTailCallBranchInstr() 1578 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1580 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in createTailCallBranchInstr() 1587 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1588 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA8)).addImm(JumpTarget.getImm()); in createTailCallBranchInstr()
|
/external/llvm/lib/Target/ARM/ |
D | ARMExpandPseudoInsts.cpp | 1009 MachineOperand &JumpTarget = MBBI->getOperand(0); in ExpandMI() local 1018 if (JumpTarget.isGlobal()) in ExpandMI() 1019 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in ExpandMI() 1020 JumpTarget.getTargetFlags()); in ExpandMI() 1022 assert(JumpTarget.isSymbol()); in ExpandMI() 1023 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in ExpandMI() 1024 JumpTarget.getTargetFlags()); in ExpandMI() 1033 .addReg(JumpTarget.getReg(), RegState::Kill); in ExpandMI()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMExpandPseudoInsts.cpp | 1165 MachineOperand &JumpTarget = MBBI->getOperand(0); in ExpandMI() local 1174 if (JumpTarget.isGlobal()) in ExpandMI() 1175 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in ExpandMI() 1176 JumpTarget.getTargetFlags()); in ExpandMI() 1178 assert(JumpTarget.isSymbol()); in ExpandMI() 1179 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in ExpandMI() 1180 JumpTarget.getTargetFlags()); in ExpandMI() 1192 .addReg(JumpTarget.getReg(), RegState::Kill); in ExpandMI()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | GlobalISelEmitter.cpp | 507 static MatchTableRecord JumpTarget(unsigned LabelID) { in JumpTarget() function in __anon685cc1160111::MatchTable 2785 << MatchTable::JumpTarget(LabelID) in emit() 4713 << MatchTable::JumpTarget(LabelID) << MatchTable::LineBreak; in emit() 4836 << MatchTable::Comment("default:") << MatchTable::JumpTarget(Default); in emit() 4845 Table << MatchTable::LineBreak << V << MatchTable::JumpTarget(LabelIDs[I]); in emit()
|
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/Mips/ |
D | MipsGenAsmMatcher.inc | 3566 // 'JumpTarget' class
|