/external/llvm/include/llvm/IR/ |
D | CallSite.h | 78 bool isCall() const { return I.getInt(); } in isCall() function 224 return (*this)->op_end() - (isCall() ? 1 : 3); in data_operands_end() 247 return isCall() && cast<CallInst>(getInstruction())->isMustTailCall(); in isMustTailCall() 252 return isCall() && cast<CallInst>(getInstruction())->isTailCall(); in isTailCall() 257 return isCall() \ 263 if (isCall()) \ 281 if (isCall()) in isInlineAsm() 527 if (isCall()) in getOperandBundlesAsDefs() 594 if (isCall()) // Skip Callee in getCallee()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | CallSite.h | 87 bool isCall() const { return I.getInt(); } in isCall() function 251 return (*this)->op_end() - (isCall() ? 1 : 3); in data_operands_end() 272 return isCall() && cast<CallInst>(getInstruction())->isMustTailCall(); in isMustTailCall() 277 return isCall() && cast<CallInst>(getInstruction())->isTailCall(); in isTailCall() 282 return isCall() \ 288 if (isCall()) \ 306 if (isCall()) in isInlineAsm() 586 if (isCall()) in getOperandBundlesAsDefs() 659 if (isCall()) // Skip Callee in getCallee()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | CallSite.h | 74 bool isCall() const { return I.getInt(); } in isCall() function 158 return isCall() \ 164 if (isCall()) \ 252 if (isCall()) in getArgumentEndOffset() 259 if (isCall()) // Skip Callee in getCallee()
|
/external/llvm/lib/Target/X86/ |
D | X86VZeroUpper.cpp | 132 if (MI.isCall() && MO.isRegMask() && !clobbersAllYmmRegs(MO)) in hasYmmReg() 146 assert(MI.isCall() && "Can only be called on call instructions."); in callClobbersAnyYmmReg() 188 bool IsControlFlow = MI.isCall() || MI.isReturn(); in processBasicBlock() 217 if (MI.isCall() && !callClobbersAnyYmmReg(MI)) in processBasicBlock()
|
D | X86PadShortFunction.cpp | 139 assert(ReturnLoc->isReturn() && !ReturnLoc->isCall() && in runOnMachineFunction() 194 if (MI.isReturn() && !MI.isCall()) { in cyclesUntilReturn()
|
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/ |
D | PPCJITInfo.cpp | 49 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ in EmitBranchToAt() argument 54 AtI[0] = BUILD_B(Offset, isCall); // b/bl target in EmitBranchToAt() 59 AtI[3] = BUILD_BCTR(isCall); // bctr/bctrl in EmitBranchToAt() 67 AtI[6] = BUILD_BCTR(isCall); // bctr/bctrl in EmitBranchToAt()
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCInstrAnalysis.h | 47 virtual bool isCall(const MCInst &Inst) const { in isCall() function 48 return Info->get(Inst.getOpcode()).isCall(); in isCall()
|
/external/llvm/include/llvm/MC/ |
D | MCInstrAnalysis.h | 50 virtual bool isCall(const MCInst &Inst) const { in isCall() function 51 return Info->get(Inst.getOpcode()).isCall(); in isCall()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/ |
D | MCInstrAnalysis.h | 53 virtual bool isCall(const MCInst &Inst) const { in isCall() function 54 return Info->get(Inst.getOpcode()).isCall(); in isCall()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyUtilities.cpp | 192 if (!MI.isCall()) in mayThrow() 217 if (SeenCatch && MI.isCall()) { in isCatchTerminatePad() 234 if (SeenCatchAll && MI.isCall()) { in isCatchAllTerminatePad()
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86VZeroUpper.cpp | 66 assert(MI->getDesc().isCall() && "Isn't a call instruction"); in isCallToModuleFn() 98 if (MI->getDesc().isCall() && !isCallToModuleFn(MI)) { in processBasicBlock()
|
/external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
D | MipsDelaySlotFiller.cpp | 194 assert((!MCID.isCall() && !MCID.isReturn()) && in delayHasHazard() 224 unsigned e = MCID.isCall() || MCID.isReturn() ? MCID.getNumOperands() : in insertDefsUses() 228 if (MCID.isCall()) in insertDefsUses()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86VZeroUpper.cpp | 156 if (MI.isCall() && MO.isRegMask() && !clobbersAllYmmAndZmmRegs(MO)) in hasYmmOrZmmReg() 170 assert(MI.isCall() && "Can only be called on call instructions."); in callHasRegMask() 204 bool IsCall = MI.isCall(); in processBasicBlock()
|
D | X86PadShortFunction.cpp | 134 assert(ReturnLoc->isReturn() && !ReturnLoc->isCall() && in runOnMachineFunction() 189 if (MI.isReturn() && !MI.isCall()) { in cyclesUntilReturn()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/ |
D | LanaiDelaySlotFiller.cpp | 201 assert((!MI->isCall() && !MI->isReturn()) && in delayHasHazard() 231 unsigned E = MI->isCall() || MI->isReturn() ? MCID.getNumOperands() in insertDefsUses() 251 if (MI->isCall() || MI->isReturn()) in insertDefsUses()
|
/external/llvm/lib/Target/Lanai/ |
D | LanaiDelaySlotFiller.cpp | 202 assert((!MI->isCall() && !MI->isReturn()) && in delayHasHazard() 232 unsigned E = MI->isCall() || MI->isReturn() ? MCID.getNumOperands() in insertDefsUses() 252 if (MI->isCall() || MI->isReturn()) in insertDefsUses()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonPseudo.td | 162 let isCall = 1, hasSideEffects = 1, isPredicable = 0, 178 let isCodeGenOnly = 1, isCall = 1, hasSideEffects = 1, Defs = [R16], 182 let isCodeGenOnly = 1, isCall = 1, hasSideEffects = 1, 187 let isCall = 1, hasSideEffects = 1, cofMax1 = 1, isCodeGenOnly = 1 in 199 let isCall = 1, hasSideEffects = 1, 238 let isPseudo = 1, isCall = 1, isReturn = 1, isBarrier = 1, isPredicable = 0, 244 let isPseudo = 1, isCall = 1, isReturn = 1, isBarrier = 1, isPredicable = 0, 352 let isCall = 1, isBarrier = 1, isReturn = 1, isTerminator = 1, 368 let isCall = 1, Defs = [R29, R30, R31, PC], isAsmParserOnly = 1 in { 383 let isCall = 1, Uses = [R29, R31], isAsmParserOnly = 1 in {
|
D | HexagonVLIWPacketizer.cpp | 335 return MI.getDesc().isTerminator() || MI.getDesc().isCall(); in isControlFlow() 1111 MJ.isCall() || MJ.isTerminator(); in cannotCoexistAsymm() 1198 if (I.isCall() || J.isCall()) in hasDeadDependence() 1238 if (MI.isCall() || HII->isDeallocRet(MI) || HII->isNewValueJump(MI)) in hasControlDependence() 1253 (J.isBranch() || J.isCall() || J.isBarrier()); in hasControlDependence() 1272 assert((J.isCall() || HII->isTailCall(J)) && "Regmask on a non-call"); in hasRegMaskDependence() 1362 if (PI->isCall()) { in isLegalToPacketizeTogether() 1426 if (I.isCall() || HII->isJumpR(I) || I.isReturn() || HII->isTailCall(I)) { in isLegalToPacketizeTogether() 1486 if (isDirectJump(I) && !J.isBranch() && !J.isCall() && in isLegalToPacketizeTogether() 1584 if ((DepType == SDep::Anti || DepType == SDep::Output) && J.isCall()) { in isLegalToPacketizeTogether()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonVLIWPacketizer.cpp | 311 return (MI->getDesc().isTerminator() || MI->getDesc().isCall()); in isControlFlow() 991 MJ->isCall() || MJ->isTerminator(); in cannotCoexistAsymm() 1052 if (I->isCall() || J->isCall()) in hasDeadDependence() 1092 if (MI->isCall() || HII->isDeallocRet(MI) || HII->isNewValueJump(MI)) in hasControlDependence() 1107 (J->isBranch() || J->isCall() || J->isBarrier()); in hasControlDependence() 1181 if (PI->isCall()) { in isLegalToPacketizeTogether() 1251 if (I->isCall() || I->isReturn() || HII->isTailCall(I)) { in isLegalToPacketizeTogether() 1309 if (isDirectJump(I) && !J->isBranch() && !J->isCall() && in isLegalToPacketizeTogether() 1415 if (DepType == SDep::Anti && J->isCall()) { in isLegalToPacketizeTogether()
|
D | HexagonInstrInfoV3.td | 24 let isCall = 1, hasSideEffects = 1, isPredicable = 1, 40 let isCall = 1, hasSideEffects = 1, isPredicated = 1, 69 let isCodeGenOnly = 1, isCall = 1, hasSideEffects = 1, Defs = VolatileV3.Regs in 72 let isCodeGenOnly = 1, isCall = 1, hasSideEffects = 1, Defs = [PC, R31, R6, R7, P0] in
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 86 SU->isCall = Old->isCall; in Clone() 318 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall()) in BuildSchedUnits() 319 NodeSUnit->isCall = true; in BuildSchedUnits() 336 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall()) in BuildSchedUnits() 337 NodeSUnit->isCall = true; in BuildSchedUnits() 343 if (NodeSUnit->isCall) in BuildSchedUnits()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ScheduleDAGInstrs.cpp | 160 (ExitMI->getDesc().isCall() || ExitMI->getDesc().isBarrier()); in AddSchedBarrierDeps() 246 SU->isCall = MCID.isCall(); in BuildSchedGraph() 401 if (SU->isCall) { in BuildSchedGraph() 402 while (!DefList.empty() && DefList.back()->isCall) in BuildSchedGraph() 422 if (MCID.isCall() || MI->hasUnmodeledSideEffects() || in BuildSchedGraph()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 95 SU->isCall = Old->isCall; in Clone() 357 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall()) in BuildSchedUnits() 358 NodeSUnit->isCall = true; in BuildSchedUnits() 375 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall()) in BuildSchedUnits() 376 NodeSUnit->isCall = true; in BuildSchedUnits() 382 if (NodeSUnit->isCall) in BuildSchedUnits()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 94 SU->isCall = Old->isCall; in Clone() 356 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall()) in BuildSchedUnits() 357 NodeSUnit->isCall = true; in BuildSchedUnits() 374 if (N->isMachineOpcode() && TII->get(N->getMachineOpcode()).isCall()) in BuildSchedUnits() 375 NodeSUnit->isCall = true; in BuildSchedUnits() 381 if (NodeSUnit->isCall) in BuildSchedUnits()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | LazyCallGraph.cpp | 325 if (!E.isCall()) in verify() 519 assert(!(*SourceN)[TargetN].isCall() && "Must start with a ref edge!"); in switchInternalEdgeToCall() 592 if (!E.isCall()) in switchInternalEdgeToCall() 667 assert((*SourceN)[TargetN].isCall() && "Must start with a call edge!"); in switchTrivialInternalEdgeToRef() 689 assert((*SourceN)[TargetN].isCall() && "Must start with a call edge!"); in switchInternalEdgeToRef() 876 assert(!(*SourceN)[TargetN].isCall() && "Must start with a ref edge!"); in switchOutgoingEdgeToCall() 898 assert((*SourceN)[TargetN].isCall() && "Must start with a call edge!"); in switchOutgoingEdgeToRef() 1135 assert(!(*SourceN)[*TargetN].isCall() && in removeInternalRefEdge() 1391 if (E.isCall()) in insertTrivialCallEdge() 1735 OS << " " << (E.isCall() ? "call" : "ref ") << " -> " in printNode() [all …]
|