Home
last modified time | relevance | path

Searched refs:JumpTarget (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/M68k/
H A DM68kExpandPseudo.cpp200 MachineOperand &JumpTarget = MI.getOperand(0); in ExpandMI() local
224 if (JumpTarget.isGlobal()) { in ExpandMI()
225 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in ExpandMI()
226 JumpTarget.getTargetFlags()); in ExpandMI()
228 assert(JumpTarget.isSymbol()); in ExpandMI()
229 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in ExpandMI()
230 JumpTarget.getTargetFlags()); in ExpandMI()
234 .addReg(JumpTarget.getReg(), RegState::Kill); in ExpandMI()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ExpandPseudo.cpp279 MachineOperand &JumpTarget = MBBI->getOperand(0); in ExpandMI() local
329 if (JumpTarget.isGlobal()) { in ExpandMI()
330 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in ExpandMI()
331 JumpTarget.getTargetFlags()); in ExpandMI()
333 assert(JumpTarget.isSymbol()); in ExpandMI()
334 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in ExpandMI()
335 JumpTarget.getTargetFlags()); in ExpandMI()
349 JumpTarget.setIsKill(); in ExpandMI()
352 .add(JumpTarget); in ExpandMI()
354 JumpTarget.setIsKill(); in ExpandMI()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/Mips/
H A DMips16ISelLowering.cpp482 SDValue JumpTarget = Callee; in getOpndList() local
490 JumpTarget = DAG.getExternalSymbol(Mips16HelperFunction, in getOpndList()
492 ExternalSymbolSDNode *S = cast<ExternalSymbolSDNode>(JumpTarget); in getOpndList()
493 JumpTarget = getAddrGlobal(S, CLI.DL, JumpTarget.getValueType(), DAG, in getOpndList()
500 Ops.push_back(JumpTarget); in getOpndList()
H A DMipsInstrInfo.td826 let Name = "JumpTarget";
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.cpp1930 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local
1931 if (JumpTarget.isGlobal()) in createTailCallBranchInstr()
1933 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in createTailCallBranchInstr()
1934 else if (JumpTarget.isSymbol()) in createTailCallBranchInstr()
1936 addExternalSymbol(JumpTarget.getSymbolName()); in createTailCallBranchInstr()
1945 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local
1946 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA)).addImm(JumpTarget.getImm()); in createTailCallBranchInstr()
1949 MachineOperand &JumpTarget = MBBI->getOperand(0); in createTailCallBranchInstr() local
1950 if (JumpTarget.isGlobal()) in createTailCallBranchInstr()
1952 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset()); in createTailCallBranchInstr()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DCFG.cpp470 using JumpTarget = BlockScopePosPair; typedef in __anon76ebc3340411::CFGBuilder
482 JumpTarget ContinueJumpTarget;
483 JumpTarget BreakJumpTarget;
484 JumpTarget SEHLeaveJumpTarget;
498 using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>;
1624 JumpTarget JT = LI->second; in buildCFG()
1642 JumpTarget JT = LI->second; in buildCFG()
3375 SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos); in VisitSEHTryStmt()
3392 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
3462 JumpTarget JT = I->second; in VisitGotoStmt()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSampleProfileInference.cpp903 auto JumpTarget = &Func.Blocks[Jump->Target]; in ignoreJump() local
906 if (DstBlock != nullptr && JumpTarget == DstBlock) in ignoreJump()
910 if (!JumpTarget->HasUnknownWeight && JumpSource == SrcBlock) in ignoreJump()
914 if (!JumpTarget->HasUnknownWeight && JumpTarget->Flow == 0) in ignoreJump()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMExpandPseudoInsts.cpp2132 MachineOperand &JumpTarget = MBBI->getOperand(0); in ExpandMI() local
2145 if (JumpTarget.isGlobal()) in ExpandMI()
2146 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), in ExpandMI()
2147 JumpTarget.getTargetFlags()); in ExpandMI()
2149 assert(JumpTarget.isSymbol()); in ExpandMI()
2150 MIB.addExternalSymbol(JumpTarget.getSymbolName(), in ExpandMI()
2151 JumpTarget.getTargetFlags()); in ExpandMI()
2163 .addReg(JumpTarget.getReg(), RegState::Kill); in ExpandMI()
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp562 static MatchTableRecord JumpTarget(unsigned LabelID) { in JumpTarget() function in __anon8aabd5ea0111::MatchTable
3388 << MatchTable::JumpTarget(LabelID) in emit()
6161 << MatchTable::JumpTarget(LabelID) << MatchTable::LineBreak; in emit()
6283 << MatchTable::Comment("default:") << MatchTable::JumpTarget(Default); in emit()
6292 Table << MatchTable::LineBreak << V << MatchTable::JumpTarget(LabelIDs[I]); in emit()