Searched refs:isCall (Results 1 - 25 of 38) sorted by relevance

12

/external/llvm/include/llvm/MC/
H A DMCInstrAnalysis.h47 virtual bool isCall(const MCInst &Inst) const { function in class:llvm::MCInstrAnalysis
48 return Info->get(Inst.getOpcode()).isCall();
H A DMCInstrDesc.h290 bool isCall() const { function in class:llvm::MCInstrDesc
430 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
/external/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp66 assert(MI->getDesc().isCall() && "Isn't a call instruction");
98 if (MI->getDesc().isCall() && !isCallToModuleFn(MI)) {
/external/llvm/include/llvm/Support/
H A DCallSite.h71 /// isCall - true if a CallInst is enclosed.
72 /// Note that !isCall() does not mean it is an InvokeInst enclosed,
74 bool isCall() const { return I.getInt(); } function in class:llvm::CallSiteBase
158 return isCall() \
164 if (isCall()) \
252 if (isCall())
259 if (isCall()) // Skip Callee
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp49 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ argument
54 AtI[0] = BUILD_B(Offset, isCall); // b/bl target
59 AtI[3] = BUILD_BCTR(isCall); // bctr/bctrl
67 AtI[6] = BUILD_BCTR(isCall); // bctr/bctrl
/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp194 assert((!MCID.isCall() && !MCID.isReturn()) &&
224 unsigned e = MCID.isCall() || MCID.isReturn() ? MCID.getNumOperands() :
228 if (MCID.isCall())
/external/llvm/lib/Target/Sparc/
H A DDelaySlotFiller.cpp152 if (slot->getDesc().isCall())
307 if (!I->getDesc().isCall())
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp86 SU->isCall = Old->isCall;
318 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
319 NodeSUnit->isCall = true;
336 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
337 NodeSUnit->isCall = true;
343 if (NodeSUnit->isCall)
H A DScheduleDAGRRList.cpp525 if (isBottomUp && SU->isCall)
571 if (isBottomUp && SU->isCall) {
579 if (!isBottomUp && SU->isCall) {
2318 if (left->isCall && right->isCallOp) {
2322 if (right->isCall && left->isCallOp) {
2334 if (left->isCall || right->isCall) {
2378 if ((left->isCall && RPriority > 0) || (right->isCall && LPriority > 0))
2383 !(left->isCall || righ
[all...]
/external/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h254 bool isCall : 1; // Is a function call.
283 isVRegCycle(false), isCall(false), isCallOp(false), isTwoAddress(false),
297 isVRegCycle(false), isCall(false), isCallOp(false), isTwoAddress(false),
310 isVRegCycle(false), isCall(false), isCallOp(false), isTwoAddress(false),
/external/llvm/tools/llvm-objdump/
H A DMCFunction.cpp76 } else if (Ana->isCall(Inst)) {
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp160 (ExitMI->getDesc().isCall() || ExitMI->getDesc().isBarrier());
246 SU->isCall = MCID.isCall();
401 if (SU->isCall) {
402 while (!DefList.empty() && DefList.back()->isCall)
422 if (MCID.isCall() || MI->hasUnmodeledSideEffects() ||
H A DCriticalAntiDepBreaker.cpp196 bool Special = MI->getDesc().isCall() ||
575 if (MI->getDesc().isCall() || MI->getDesc().hasExtraDefRegAllocReq() ||
H A DGCStrategy.cpp380 if (MI->getDesc().isCall())
H A DBranchFolding.cpp436 if (MCID.isCall())
1011 return MBB2I->getDesc().isCall() && !MBB1I->getDesc().isCall();
H A DAggressiveAntiDepBreaker.cpp387 if (MI->getDesc().isCall() || MI->getDesc().hasExtraDefRegAllocReq() ||
454 bool Special = MI->getDesc().isCall() ||
H A DRegAllocFast.cpp743 !MBB->back().getDesc().isCall()) {
962 if (MCID.isCall()) {
H A DMachineInstr.cpp1162 if (MCID->mayStore() || MCID->isCall()) {
1218 !MCID->isCall() &&
1422 if (MF && getDesc().isCall() &&
H A DMachineCSE.cpp264 if (MCID.mayStore() || MCID.isCall() || MCID.isTerminator() ||
/external/llvm/lib/Target/MBlaze/
H A DMBlazeDelaySlotFiller.cpp216 desc.isCall() || desc.isReturn() || desc.isBarrier() ||
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h226 bool isCall; member in class:llvm::CodeGenInstruction
H A DInstrInfoEmitter.cpp280 if (Inst.isCall) OS << "|(1<<MCID::Call)";
H A DCodeGenInstruction.cpp301 isCall = R->getValueAsBit("isCall");
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfException.cpp187 assert(MI->getDesc().isCall() && "This should be a call instruction!");
246 if (MI->getDesc().isCall())
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITDwarfEmitter.cpp316 MayThrow |= MI->getDesc().isCall();

Completed in 425 milliseconds

12