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

123

/external/llvm/include/llvm/MC/
H A DMCInstrAnalysis.h50 virtual bool isCall(const MCInst &Inst) const { function in class:llvm::MCInstrAnalysis
51 return Info->get(Inst.getOpcode()).isCall();
H A DMCInstrDesc.h236 bool isCall() const { function in class:llvm::MCInstrDesc
291 if (isBranch() || isCall() || isReturn() || isIndirectBranch())
432 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
/external/llvm/lib/Target/ARM/
H A DARMOptimizeBarriersPass.cpp46 MI->isCall() ||
/external/llvm/include/llvm/IR/
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
167 return isCall() && cast<CallInst>(getInstruction())->isMustTailCall();
172 return isCall() && cast<CallInst>(getInstruction())->isTailCall();
177 return isCall() \
183 if (isCall()) \
337 if (isCall())
344 if (isCall()) // Skip Callee
H A DInstVisitor.h243 if (CS.isCall())
/external/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp128 if (MI->isCall() && MO.isRegMask() && !clobbersAllYmmRegs(MO))
143 assert(MI->isCall() && "Can only be called on call instructions.");
184 bool isControlFlow = MI->isCall() || MI->isReturn();
207 if (MI->isCall() && !callClobbersAnyYmmReg(MI))
H A DX86PadShortFunction.cpp132 assert(ReturnLoc->isReturn() && !ReturnLoc->isCall() &&
189 if (MI->isReturn() && !MI->isCall()) {
H A DX86CallFrameOptimization.cpp343 if (!I->isCall())
H A DX86FixupLEAs.cpp211 if (CurInst->isCall() || CurInst->isInlineAsm())
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsNaClELFStreamer.cpp65 bool isCall(const MCInst &MI, bool *IsIndirectCall) { function in class:__anon10766::MipsNaClELFStreamer
171 if (isCall(Inst, &IsIndirectCall)) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp94 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)
H A DScheduleDAGRRList.cpp644 if (SU->isCall)
692 if (SU->isCall) {
2421 if (left->isCall && right->isCallOp) {
2425 if (right->isCall && left->isCallOp) {
2435 if (left->isCall || right->isCall) {
2475 if ((left->isCall && RPriority > 0) || (right->isCall && LPriority > 0))
2480 !(left->isCall || right->isCall)) {
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonVLIWPacketizer.cpp380 return (MI->getDesc().isTerminator() || MI->getDesc().isCall());
1030 (IsDirectJump(J) || MCIDJ.isCall() || QII->isDeallocRet(J))) {
1035 (IsDirectJump(I) || MCIDI.isCall() || QII->isDeallocRet(I))) {
1043 (MCIDJ.isBranch() || MCIDJ.isCall() || MCIDJ.isBarrier())) {
1099 if (PacketSU->getInstr()->getDesc().isCall()) {
1171 if ((MCIDI.isCall() || MCIDI.isReturn()) &&
1200 !MCIDJ.isCall() &&
H A DHexagonMachineScheduler.cpp30 if (SUnits[su].getInstr()->isCall())
330 if (!isTop() && SU->isCall) {
/external/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h294 bool isCall : 1; // Is a function call.
329 NumRegDefsLeft(0), Latency(0), isVRegCycle(false), isCall(false),
345 NumRegDefsLeft(0), Latency(0), isVRegCycle(false), isCall(false),
360 NumRegDefsLeft(0), Latency(0), isVRegCycle(false), isCall(false),
/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp304 if (MI.isCall())
316 assert(MI.isCall());
594 DSI->isCall()) {
654 assert((!I->isCall() && !I->isReturn() && !I->isBranch()) &&
710 if (DisableForwardSearch || !Slot->isCall())
855 return (Candidate.isTerminator() || Candidate.isCall() ||
H A DMipsOptimizePICCall.cpp248 if (!MI.isCall())
/external/llvm/lib/Target/Sparc/
H A DDelaySlotFiller.cpp194 if (slot->isCall())
339 if (!I->isCall())
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h232 bool isCall : 1;
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp217 (ExitMI->isCall() || ExitMI->isBarrier());
348 } else if (SU->isCall) {
359 if (!I->SU->isCall)
463 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
709 SU->isCall = MI->isCall();
H A DCriticalAntiDepBreaker.cpp167 bool Special = MI->isCall() ||
589 if (MI->isCall() || MI->hasExtraDefRegAllocReq() || TII->isPredicated(MI))
H A DGCRootLowering.cpp302 if (MI->isCall()) {
H A DMachineCopyPropagation.cpp97 if (I->hasUnmodeledSideEffects() || I->isCall() ||
/external/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp160 assert(MI->isCall() && "This should be a call instruction!");
237 if (MI.isCall())
/external/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp185 if (CS.isCall()) {
888 if (CS.isCall()) {

Completed in 652 milliseconds

123