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

1 2 3

  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 47 virtual bool isCall(const MCInst &Inst) const {
48 return Info->get(Inst.getOpcode()).isCall();
MCInstrDesc.h 210 bool isCall() const {
344 /// 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()) \
267 if (isCall())
274 if (isCall()) // Skip Callee
InstVisitor.h 239 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 210 assert((!candidate->isCall() && !candidate->isReturn()) &&
240 unsigned e = MI->isCall() || MI->isReturn() ? MCID.getNumOperands() :
244 if (MI->isCall())
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 275 bool isCall : 1; // Is a function call.
307 isVRegCycle(false), isCall(false), isCallOp(false), isTwoAddress(false),
321 isVRegCycle(false), isCall(false), isCallOp(false), isTwoAddress(false),
334 isVRegCycle(false), isCall(false), isCallOp(false), isTwoAddress(false),
MachineInstr.h 346 bool isCall(QueryType Type = AnyInBundle) const {
    [all...]
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 152 if (slot->isCall())
304 if (!I->isCall())
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 94 SU->isCall = Old->isCall;
358 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
359 NodeSUnit->isCall = true;
376 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
377 NodeSUnit->isCall = true;
383 if (NodeSUnit->isCall)
    [all...]
ScheduleDAGRRList.cpp 624 if (SU->isCall)
672 if (SU->isCall) {
    [all...]
  /external/llvm/lib/Target/X86/
X86VZeroUpper.cpp 221 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 201 (ExitMI->isCall() || ExitMI->isBarrier());
403 if (SU->isCall) {
404 while (!DefList.empty() && DefList.back().SU->isCall)
504 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
731 SU->isCall = MI->isCall();
    [all...]
MachineCopyPropagation.cpp 93 if (I->hasUnmodeledSideEffects() || I->isCall() ||
CriticalAntiDepBreaker.cpp 179 bool Special = MI->isCall() ||
570 if (MI->isCall() || MI->hasExtraDefRegAllocReq() ||
GCStrategy.cpp 382 if (MI->isCall())
PeepholeOptimizer.cpp 514 if (MI->mayStore() || MI->isCall())
AggressiveAntiDepBreaker.cpp 384 if (MI->isCall() || MI->hasExtraDefRegAllocReq() ||
450 bool Special = MI->isCall() ||
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeDelaySlotFiller.cpp 212 I->isCall() || I->isReturn() || I->isBarrier() ||
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 227 bool isCall;
InstrInfoEmitter.cpp 325 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())
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp 349 return (MI->getDesc().isTerminator() || MI->getDesc().isCall());
    [all...]

Completed in 1117 milliseconds

1 2 3