Home
last modified time | relevance | path

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

/external/llvm/lib/Target/X86/
DX86ExpandPseudo.cpp86 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/
DX86ExpandPseudo.cpp188 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/
DARMFrameLowering.cpp411 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/
DPPCFrameLowering.cpp686 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/
DIceTargetLoweringX8664.cpp591 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()
DIceTargetLoweringX8632.cpp291 void TargetX8632::lowerIndirectJump(Variable *JumpTarget) { in lowerIndirectJump() argument
297 _and(JumpTarget, Ctx->getConstantInt32(~(BundleSize - 1))); in lowerIndirectJump()
300 _jmp(JumpTarget); in lowerIndirectJump()
DIceTargetLoweringX8632.h61 void lowerIndirectJump(Variable *JumpTarget);
DIceTargetLoweringX8664.h64 void lowerIndirectJump(Variable *JumpTarget);
DIceTargetLoweringX86Base.h346 void lowerIndirectJump(Variable *JumpTarget) { in lowerIndirectJump() argument
350 std::move(JumpTarget)); in lowerIndirectJump()
/external/llvm/lib/Target/Mips/
DMips16ISelLowering.cpp495 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()
DMipsInstrInfo.td615 let Name = "JumpTarget";
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMips16ISelLowering.cpp495 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()
DMipsInstrInfo.td813 let Name = "JumpTarget";
/external/clang/lib/Analysis/
DCFG.cpp367 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/
DX86FrameLowering.cpp1051 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/
DPPCFrameLowering.cpp1350 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/
DPPCFrameLowering.cpp1565 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/
DARMExpandPseudoInsts.cpp1009 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/
DARMExpandPseudoInsts.cpp1165 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/
DGlobalISelEmitter.cpp507 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/
DMipsGenAsmMatcher.inc3566 // 'JumpTarget' class