| /freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kExpandPseudo.cpp | 217 MachineOperand &JumpTarget = MI.getOperand(0); in INITIALIZE_PASS() local 241 if (JumpTarget.isGlobal()) { in INITIALIZE_PASS() 242 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in INITIALIZE_PASS() 243 JumpTarget.getTargetFlags()); in INITIALIZE_PASS() 245 assert(JumpTarget.isSymbol()); in INITIALIZE_PASS() 246 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in INITIALIZE_PASS() 247 JumpTarget.getTargetFlags()); in INITIALIZE_PASS() 251 .addReg(JumpTarget.getReg(), RegState::Kill); in INITIALIZE_PASS()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ExpandPseudo.cpp | 279 MachineOperand &JumpTarget = MBBI->getOperand(0); in expandMI() local 330 if (JumpTarget.isGlobal()) { in expandMI() 331 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in expandMI() 332 JumpTarget.getTargetFlags()); in expandMI() 334 assert(JumpTarget.isSymbol()); in expandMI() 335 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in expandMI() 336 JumpTarget.getTargetFlags()); in expandMI() 351 JumpTarget.setIsKill(); in expandMI() 354 .add(JumpTarget); in expandMI() 357 JumpTarget.setIsKill(); in expandMI() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | Mips16ISelLowering.cpp | 488 SDValue JumpTarget = Callee; in getOpndList() local 496 JumpTarget = DAG.getExternalSymbol(Mips16HelperFunction, in getOpndList() 498 ExternalSymbolSDNode *S = cast<ExternalSymbolSDNode>(JumpTarget); in getOpndList() 499 JumpTarget = getAddrGlobal(S, CLI.DL, JumpTarget.getValueType(), DAG, in getOpndList() 506 Ops.push_back(JumpTarget); in getOpndList()
|
| H A D | MipsInstrInfo.td | 827 let Name = "JumpTarget";
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCFrameLowering.cpp | 1931 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1932 if (JumpTarget.isGlobal()) in createTailCallBranchInstr() 1934 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in createTailCallBranchInstr() 1935 else if (JumpTarget.isSymbol()) in createTailCallBranchInstr() 1937 addExternalSymbol(JumpTarget.getSymbolName()); in createTailCallBranchInstr() 1946 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1947 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA)).addImm(JumpTarget.getImm()); in createTailCallBranchInstr() 1950 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local 1951 if (JumpTarget.isGlobal()) in createTailCallBranchInstr() 1953 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in createTailCallBranchInstr() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CFG.cpp | 508 using JumpTarget = BlockScopePosPair; typedef in __anonef2f84bd0411::CFGBuilder 520 JumpTarget ContinueJumpTarget; 521 JumpTarget BreakJumpTarget; 522 JumpTarget SEHLeaveJumpTarget; 536 using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>; 1731 JumpTarget JT = LI->second; in buildCFG() 1744 JumpTarget JT = LI->second; in buildCFG() 3491 SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos); in VisitSEHTryStmt() 3507 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt() 3577 JumpTarget JT = I->second; in VisitGotoStmt() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SampleProfileInference.cpp | 904 auto JumpTarget = &Func.Blocks[Jump->Target]; in ignoreJump() local 907 if (DstBlock != nullptr && JumpTarget == DstBlock) in ignoreJump() 911 if (!JumpTarget->HasUnknownWeight && JumpSource == SrcBlock) in ignoreJump() 915 if (!JumpTarget->HasUnknownWeight && JumpTarget->Flow == 0) in ignoreJump()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
| H A D | GlobalISelMatchTable.cpp | 281 MatchTableRecord MatchTable::JumpTarget(unsigned LabelID) { in JumpTarget() function in llvm::gi::MatchTable 519 << MatchTable::JumpTarget(LabelID) << MatchTable::LineBreak; in emit() 669 << MatchTable::Comment("default:") << MatchTable::JumpTarget(Default); in emit() 679 << MatchTable::JumpTarget(LabelIDs[I]); in emit() 959 << MatchTable::JumpTarget(LabelID) in emit()
|
| H A D | GlobalISelMatchTable.h | 200 static MatchTableRecord JumpTarget(unsigned LabelID);
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMExpandPseudoInsts.cpp | 2263 MachineOperand &JumpTarget = MBBI->getOperand(0); in ExpandMI() local 2276 if (JumpTarget.isGlobal()) in ExpandMI() 2277 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in ExpandMI() 2278 JumpTarget.getTargetFlags()); in ExpandMI() 2280 assert(JumpTarget.isSymbol()); in ExpandMI() 2281 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in ExpandMI() 2282 JumpTarget.getTargetFlags()); in ExpandMI() 2295 .addReg(JumpTarget.getReg(), RegState::Kill); in ExpandMI()
|