Searched refs:isCall (Results 1 - 25 of 63) 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.h232 bool isCall() const { function in class:llvm::MCInstrDesc
287 if (isBranch() || isCall() || isReturn() || isIndirectBranch())
387 /// 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.h70 /// isCall - true if a CallInst is enclosed.
71 /// Note that !isCall() does not mean it is an InvokeInst enclosed,
73 bool isCall() const { return I.getInt(); } function in class:llvm::CallSiteBase
166 return isCall() && cast<CallInst>(getInstruction())->isMustTailCall();
171 return isCall() && cast<CallInst>(getInstruction())->isTailCall();
176 return isCall() \
182 if (isCall()) \
317 if (isCall())
324 if (isCall()) // Skip Callee
H A DInstVisitor.h243 if (CS.isCall())
/external/llvm/lib/CodeGen/
H A DErlangGC.cpp68 if (MI->getDesc().isCall()) {
H A DScheduleDAGInstrs.cpp217 (ExitMI->isCall() || ExitMI->isBarrier());
348 } else if (SU->isCall) {
359 if (!I->SU->isCall)
463 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
697 SU->isCall = MI->isCall();
H A DCriticalAntiDepBreaker.cpp171 bool Special = MI->isCall() ||
612 if (MI->isCall() || MI->hasExtraDefRegAllocReq() || TII->isPredicated(MI))
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp55 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ argument
60 AtI[0] = BUILD_B(Offset, isCall); // b/bl target
65 AtI[3] = BUILD_BCTR(isCall); // bctr/bctrl
73 AtI[6] = BUILD_BCTR(isCall); // bctr/bctrl
/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.cpp135 assert(ReturnLoc->isReturn() && !ReturnLoc->isCall() &&
192 if (MI->isReturn() && !MI->isCall()) {
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsNaClELFStreamer.cpp65 bool isCall(const MCInst &MI, bool *IsIndirectCall) { function in class:__anon26044::MipsNaClELFStreamer
171 if (isCall(Inst, &IsIndirectCall)) {
/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp298 if (MI.isCall())
310 assert(MI.isCall());
545 assert((!I->isCall() && !I->isReturn() && !I->isBranch()) &&
591 if (DisableForwardSearch || !Slot->isCall())
735 return (Candidate.isTerminator() || Candidate.isCall() ||
H A DMipsOptimizePICCall.cpp248 if (!MI.isCall())
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp95 SU->isCall = Old->isCall;
364 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
365 NodeSUnit->isCall = true;
382 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall())
383 NodeSUnit->isCall = true;
389 if (NodeSUnit->isCall)
H A DScheduleDAGRRList.cpp645 if (SU->isCall)
693 if (SU->isCall) {
2414 if (left->isCall && right->isCallOp) {
2418 if (right->isCall && left->isCallOp) {
2428 if (left->isCall || right->isCall) {
2468 if ((left->isCall && RPriority > 0) || (right->isCall && LPriority > 0))
2473 !(left->isCall || right->isCall)) {
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonVLIWPacketizer.cpp383 return (MI->getDesc().isTerminator() || MI->getDesc().isCall());
1039 (IsDirectJump(J) || MCIDJ.isCall() || QII->isDeallocRet(J))) {
1044 (IsDirectJump(I) || MCIDI.isCall() || QII->isDeallocRet(I))) {
1052 (MCIDJ.isBranch() || MCIDJ.isCall() || MCIDJ.isBarrier())) {
1109 if (PacketSU->getInstr()->getDesc().isCall()) {
1182 if ((MCIDI.isCall() || MCIDI.isReturn()) &&
1211 !MCIDJ.isCall() &&
H A DHexagonMachineScheduler.cpp30 if (SUnits[su].getInstr()->isCall())
329 if (!isTop() && SU->isCall) {
/external/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h288 bool isCall : 1; // Is a function call.
323 NumRegDefsLeft(0), Latency(0), isVRegCycle(false), isCall(false),
339 NumRegDefsLeft(0), Latency(0), isVRegCycle(false), isCall(false),
354 NumRegDefsLeft(0), Latency(0), isVRegCycle(false), isCall(false),
/external/llvm/lib/Target/Sparc/
H A DDelaySlotFiller.cpp196 if (slot->isCall())
341 if (!I->isCall())
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h232 bool isCall : 1;
/external/chromium_org/third_party/closure_compiler/runner/src/com/google/javascript/jscomp/
H A DChromePass.java97 if (node.isCall()) {
440 if (parent.isCall()) {
/external/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp159 assert(MI->isCall() && "This should be a call instruction!");
215 if (MI.isCall())
/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectDisassembler.cpp214 if (MIA.isCall(II->Inst))
383 if (MIA.isCall(Inst))
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
H A DFunctionReceiverChecker.java54 Preconditions.checkState(functionCall.isCall());

Completed in 658 milliseconds

123