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

1 2

  /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()) \
252 if (isCall())
259 if (isCall()) // Skip Callee
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 65 MCid.isCall() || MCid.isBranch() || MCid.isReturn())) {
  /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/include/llvm/CodeGen/
ScheduleDAG.h 254 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/lib/Target/Sparc/
DelaySlotFiller.cpp 152 if (slot->getDesc().isCall())
307 if (!I->getDesc().isCall())
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 86 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)
ScheduleDAGRRList.cpp 525 if (isBottomUp && SU->isCall)
571 if (isBottomUp && SU->isCall) {
579 if (!isBottomUp && SU->isCall) {
    [all...]
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 281 bool isCall() const {
409 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 159 (ExitMI->getDesc().isCall() || ExitMI->getDesc().isBarrier());
245 SU->isCall = MCID.isCall();
400 if (SU->isCall) {
401 while (!DefList.empty() && DefList.back()->isCall)
421 if (MCID.isCall() || MI->hasUnmodeledSideEffects() ||
CriticalAntiDepBreaker.cpp 196 bool Special = MI->getDesc().isCall() ||
575 if (MI->getDesc().isCall() || MI->getDesc().hasExtraDefRegAllocReq() ||
GCStrategy.cpp 380 if (MI->getDesc().isCall())
BranchFolding.cpp 436 if (MCID.isCall())
    [all...]
AggressiveAntiDepBreaker.cpp 387 if (MI->getDesc().isCall() || MI->getDesc().hasExtraDefRegAllocReq() ||
454 bool Special = MI->getDesc().isCall() ||
    [all...]
RegAllocFast.cpp 743 !MBB->back().getDesc().isCall()) {
    [all...]
MachineInstr.cpp     [all...]
MachineCSE.cpp 264 if (MCID.mayStore() || MCID.isCall() || MCID.isTerminator() ||
LiveVariables.cpp 594 && !MBB->back().getDesc().isCall()) {
TailDuplication.cpp 578 if (PreRegAlloc && I->getDesc().isCall())
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeDelaySlotFiller.cpp 216 desc.isCall() || desc.isReturn() || desc.isBarrier() ||
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 226 bool isCall;
InstrInfoEmitter.cpp 279 if (Inst.isCall) OS << "|(1<<MCID::Call)";
CodeGenInstruction.cpp 300 isCall = R->getValueAsBit("isCall");
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 187 assert(MI->getDesc().isCall() && "This should be a call instruction!");
246 if (MI->getDesc().isCall())
  /external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 316 MayThrow |= MI->getDesc().isCall();
  /external/llvm/lib/Analysis/
Lint.cpp 253 if (CS.isCall() && cast<CallInst>(CS.getInstruction())->isTailCall())

Completed in 777 milliseconds

1 2