/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | InstrTypes.h | 1339 unsigned getNumArgOperands() const { return arg_size(); } 1342 assert(i < getNumArgOperands() && "Out of bounds!"); 1347 assert(i < getNumArgOperands() && "Out of bounds!"); 1353 assert(i < getNumArgOperands() && "Out of bounds!"); 1357 assert(i < getNumArgOperands() && "Out of bounds!"); 1508 assert(ArgNo < getNumArgOperands() && "Out of bounds"); 1516 assert(ArgNo < getNumArgOperands() && "Out of bounds"); 1544 assert(ArgNo < getNumArgOperands() && "Out of bounds"); 1552 assert(ArgNo < getNumArgOperands() && "Out of bounds"); 1568 assert(ArgNo < getNumArgOperands() && "Out of bounds"); [all …]
|
H A D | AbstractCallSite.h | 154 unsigned getNumArgOperands() const { in getNumArgOperands() function 156 return CB->getNumArgOperands(); in getNumArgOperands()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPrintfRuntimeBinding.cpp | 156 unsigned NumOps = CI->getNumArgOperands(); in lowerPrintfForGpu() 204 Sizes << CI->getNumArgOperands() - 1; in lowerPrintfForGpu() 206 for (unsigned ArgCount = 1; ArgCount < CI->getNumArgOperands() && in lowerPrintfForGpu() 398 for (unsigned ArgCount = 1; ArgCount < CI->getNumArgOperands() && in lowerPrintfForGpu() 533 if (I + 1 == E && ArgCount + 1 == CI->getNumArgOperands()) in lowerPrintfForGpu()
|
H A D | AMDGPULibCalls.cpp | 569 auto NumArg = CI->getNumArgOperands(); in fold_read_write_pipe() 586 unsigned PtrArgLoc = CI->getNumArgOperands() - 3; in fold_read_write_pipe() 650 if (CI->getNumArgOperands() != FInfo.getNumArgs()) in fold() 1608 int numArgs = (int)aCI->getNumArgOperands(); in evaluateCall()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | AutoUpgrade.cpp | 1270 if (CI.getNumArgOperands() == 4) { // For masked intrinsics. in UpgradeX86BinaryIntrinsics() 1297 if (CI.getNumArgOperands() == 4) { // For masked intrinsics. in upgradeX86Rotate() 1367 unsigned NumArgs = CI.getNumArgOperands(); in upgradeX86ConcatShift() 1429 if (CI.getNumArgOperands() == 3) in upgradeAbs() 1457 if (CI.getNumArgOperands() == 4) in upgradePMULDQ() 1512 Value *Mask = CI.getArgOperand(CI.getNumArgOperands() - 1); in upgradeMaskedCompare() 1783 unsigned NumArgs = CI.getNumArgOperands(); in upgradeAVX512MaskToSelect() 1962 if (CI->getNumArgOperands() == 4 && in UpgradeIntrinsicCall() 2255 else if (CI->getNumArgOperands() == 4 && in UpgradeIntrinsicCall() 2268 if (CI->getNumArgOperands() >= 3) in UpgradeIntrinsicCall() [all …]
|
H A D | AbstractCallSite.cpp | 124 unsigned NumCallOperands = CB->getNumArgOperands(); in AbstractCallSite()
|
H A D | IntrinsicInst.cpp | 191 unsigned NumOperands = getNumArgOperands(); in getRoundingMode() 203 unsigned NumOperands = getNumArgOperands(); in getExceptionBehavior()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyOptimizeReturned.cpp | 59 for (unsigned I = 0, E = CB.getNumArgOperands(); I < E; ++I) in visitCallBase()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | InjectTLIMappings.cpp | 98 TLIName, ScalarName, CI.getNumArgOperands(), VF); in addMappingsFromTLI()
|
H A D | SimplifyLibCalls.cpp | 1348 if (CI->getNumArgOperands() == 1) { in optimizeCAbs() 1354 assert(CI->getNumArgOperands() == 2 && "Unexpected signature for cabs!"); in optimizeCAbs() 2349 if (StreamArg >= (int)CI->getNumArgOperands()) in isReportingError() 2381 if (FormatStr == "%s" && CI->getNumArgOperands() > 1) { in optimizePrintFString() 2412 if (FormatStr == "%c" && CI->getNumArgOperands() > 1 && in optimizePrintFString() 2417 if (FormatStr == "%s\n" && CI->getNumArgOperands() > 1 && in optimizePrintFString() 2468 if (CI->getNumArgOperands() == 2) { in optimizeSPrintFString() 2485 CI->getNumArgOperands() < 3) in optimizeSPrintFString() 2596 if (CI->getNumArgOperands() == 3) { in optimizeSnPrintFString() 2619 CI->getNumArgOperands() == 4) { in optimizeSnPrintFString() [all …]
|
H A D | LibCallsShrinkWrap.cpp | 307 if (CI.getNumArgOperands() == 0) in checkCandidate()
|
H A D | Evaluator.cpp | 285 if (FTy->getNumParams() > CB.getNumArgOperands()) { in getFormalParams()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | WasmEHPrepare.cpp | 267 if (CPI->getNumArgOperands() == 1 && in prepareEHPads()
|
H A D | TypePromotion.cpp | 581 for (unsigned i = 0; i < Call->getNumArgOperands(); ++i) { in TruncateSinks() 684 for (unsigned i = 0; i < Call->getNumArgOperands(); ++i) { in Mutate()
|
H A D | IntrinsicLowering.cpp | 456 if (CI->getNumArgOperands() != 1 || in LowerToByteSwap()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | GVN.cpp | 426 local_cdep->getNumArgOperands() != C->getNumArgOperands()) { in lookupOrAddCall() 431 for (unsigned i = 0, e = C->getNumArgOperands(); i < e; ++i) { in lookupOrAddCall() 481 if (cdep->getNumArgOperands() != C->getNumArgOperands()) { in lookupOrAddCall() 485 for (unsigned i = 0, e = C->getNumArgOperands(); i < e; ++i) { in lookupOrAddCall()
|
H A D | EarlyCSE.cpp | 296 if (II && II->isCommutative() && II->getNumArgOperands() == 2) { in getHashValueImpl() 366 LII->isCommutative() && LII->getNumArgOperands() == 2) { in isEqualImpl()
|
H A D | TailRecursionElimination.cpp | 635 for (unsigned i = 0, e = CI->getNumArgOperands(); i != e; ++i) in eliminateCall()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
H A D | OpenMPOpt.cpp | 852 for (unsigned U = CallbackFirstArgOperand, E = CI->getNumArgOperands(); in mergeParallelRegions() 861 for (unsigned U = CallbackFirstArgOperand, E = CI->getNumArgOperands(); in mergeParallelRegions() 1404 unsigned NumArgs = CB.getNumArgOperands(); in deduplicateRuntimeCalls() 1440 if (CI->getNumArgOperands() > 0 && in deduplicateRuntimeCalls()
|
H A D | FunctionAttrs.cpp | 398 if (UseIndex >= CB->getNumArgOperands()) { in captured() 533 bool IsOperandBundleUse = UseIndex >= CB.getNumArgOperands(); in determinePointerReadAttrs()
|
H A D | Attributor.cpp | 226 for (unsigned u = 0, e = ACS.getNumArgOperands(); u < e; u++) { in getAssociatedArgument() 843 std::min(size_t(ACS.getNumArgOperands()), Fn.arg_size()); in checkForAllCallSites() 2152 for (int I = 0, E = CB.getNumArgOperands(); I < E; ++I) { in identifyDefaultAbstractAttributes()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCalls.cpp | 638 assert(I.getNumArgOperands() >= NumOperands && "Not enough operands"); in haveSameOperands() 639 assert(E.getNumArgOperands() >= NumOperands && "Not enough operands"); in haveSameOperands() 668 if (haveSameOperands(EndI, *I, EndI.getNumArgOperands())) { in removeTriviallyEmptyRange() 692 assert(Call.getNumArgOperands() > 1 && "Need at least 2 args to swap"); in canonicalizeConstantArg0ToArg1() 2138 unsigned NumArgs = Call.getNumArgOperands(); in annotateAnyAllocSite()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/ |
H A D | CoroInstr.h | 641 if (getNumArgOperands() < 3) in getMustTailCallFunction()
|
H A D | Coroutines.cpp | 725 if (FnTy->getNumParams() != (getNumArgOperands() - 3)) in checkWellFormed()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
H A D | X86WinEHState.cpp | 461 if (Call.getNumArgOperands() != 2) in rewriteSetJmpCall()
|