HomeSort by relevance Sort by last modified time
    Searched refs:isCall (Results 1 - 25 of 45) sorted by null

1 2

  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 47 virtual bool isCall(const MCInst &Inst) const {
48 return Info->get(Inst.getOpcode()).isCall();
MCInstrDesc.h 209 bool isCall() const {
337 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
  /external/llvm/include/llvm/Support/
CallSite.h 71 /// 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(); }
158 return isCall() \
164 if (isCall()) \
262 if (isCall())
269 if (isCall()) // Skip Callee
InstVisitor.h 223 if (CS.isCall())
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.cpp 49 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){
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/Transforms/IPO/
InlineAlways.cpp 86 if (!ReturnsTwice && CS.isCall() &&
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 191 assert((!candidate->isCall() && !candidate->isReturn()) &&
221 unsigned e = MI->isCall() || MI->isReturn() ? MCID.getNumOperands() :
225 if (MI->isCall())
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 255 bool isCall : 1; // Is a function call.
284 isVRegCycle(false), isCall(false), isCallOp(false), isTwoAddress(false),
298 isVRegCycle(false), isCall(false), isCallOp(false), isTwoAddress(false),
311 isVRegCycle(false), isCall(false), isCallOp(false), isTwoAddress(false),
MachineInstr.h 345 bool isCall(QueryType Type = AnyInBundle) const {
    [all...]
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 152 if (slot->isCall())
307 if (!I->isCall())
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 94 SU->isCall = Old->isCall;
326 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
327 NodeSUnit->isCall = true;
344 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
345 NodeSUnit->isCall = true;
351 if (NodeSUnit->isCall)
ScheduleDAGRRList.cpp 623 if (SU->isCall)
669 if (SU->isCall) {
    [all...]
  /external/llvm/lib/Target/X86/
X86VZeroUpper.cpp 223 bool isControlFlow = MI->isCall() || MI->isReturn();
  /external/llvm/tools/llvm-objdump/
MCFunction.cpp 76 } else if (Ana->isCall(Inst)) {
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 192 (ExitMI->isCall() || ExitMI->isBarrier());
382 if (SU->isCall) {
383 while (!DefList.empty() && DefList.back()->isCall)
494 SU->isCall = MI->isCall();
592 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
    [all...]
CriticalAntiDepBreaker.cpp 197 bool Special = MI->isCall() ||
593 if (MI->isCall() || MI->hasExtraDefRegAllocReq() ||
MachineCopyPropagation.cpp 105 if (I->hasUnmodeledSideEffects() || I->isCall() ||
GCStrategy.cpp 382 if (MI->isCall())
TwoAddressInstructionPass.cpp 818 if (MI->mayStore() || MI->isCall())
    [all...]
AggressiveAntiDepBreaker.cpp 387 if (MI->isCall() || MI->hasExtraDefRegAllocReq() ||
454 bool Special = MI->isCall() ||
    [all...]
BranchFolding.cpp 446 if (I->isCall())
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeDelaySlotFiller.cpp 212 I->isCall() || I->isReturn() || I->isBarrier() ||
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 226 bool isCall;
InstrInfoEmitter.cpp 307 if (Inst.isCall) OS << "|(1<<MCID::Call)";
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 188 assert(MI->isCall() && "This should be a call instruction!");
247 if (MI->isCall())

Completed in 1158 milliseconds

1 2