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

1 2 3

  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 585 !FT->getParamType(0)->isPointerTy() ||
586 !FT->getParamType(1)->isPointerTy())
668 !FT->getParamType(0)->isPointerTy() ||
669 !FT->getParamType(1)->isPointerTy() ||
670 !FT->getReturnType()->isPointerTy())
731 if (FT->getNumParams() != 3 || !FT->getParamType(0)->isPointerTy() ||
732 !FT->getParamType(1)->isPointerTy() ||
783 !FT->getParamType(0)->isPointerTy() ||
784 !FT->getParamType(1)->isPointerTy() ||
805 !FT->getParamType(0)->isPointerTy() ||
    [all...]
GVN.cpp 705 if (StoredValTy->isPointerTy() && LoadedTy->isPointerTy())
709 if (StoredValTy->isPointerTy()) {
715 if (TypeToCastTo->isPointerTy())
722 if (LoadedTy->isPointerTy())
734 if (StoredValTy->isPointerTy()) {
760 if (LoadedTy->isPointerTy())
    [all...]
  /external/llvm/lib/VMCore/
Function.cpp 79 if (!getType()->isPointerTy()) return false;
84 assert(getType()->isPointerTy() && "Only pointers have alignments");
92 if (!getType()->isPointerTy()) return false;
99 if (!getType()->isPointerTy()) return false;
106 if (!getType()->isPointerTy()) return false;
113 if (!getType()->isPointerTy()) return false;
Instructions.cpp 467 assert(Source->getType()->isPointerTy() &&
    [all...]
Value.cpp 312 if (!getType()->isPointerTy())
335 assert(V->getType()->isPointerTy() && "Unexpected operand type!");
Verifier.cpp 826 Assert1(BI.getAddress()->getType()->isPointerTy(),
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 104 if (DestPTy->isIntegerTy() || DestPTy->isPointerTy() ||
121 (SrcPTy->isIntegerTy() || SrcPTy->isPointerTy() ||
125 (SrcPTy->isPointerTy() == LI.getType()->isPointerTy()) &&
266 if (!DestPTy->isIntegerTy() && !DestPTy->isPointerTy())
300 if (!SrcPTy->isIntegerTy() && !SrcPTy->isPointerTy())
320 if (CastDstTy->isPointerTy()) {
324 if (SIOp0->getType()->isPointerTy())
415 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) {
482 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy()));
    [all...]
  /external/llvm/lib/Analysis/
Loads.cpp 58 if (!V->getType()->isPointerTy())
77 assert(V->getType()->isPointerTy() && "Unexpected operand type!");
CaptureTracking.cpp 48 assert(V->getType()->isPointerTy() && "Capture is for pointers only!");
AliasAnalysis.cpp 94 if (!Arg->getType()->isPointerTy())
152 if (!Arg->getType()->isPointerTy())
172 if (!Arg->getType()->isPointerTy())
AliasAnalysisEvaluator.cpp 127 return V->getType()->isPointerTy()
138 if (I->getType()->isPointerTy()) // Add all pointer arguments.
142 if (I->getType()->isPointerTy()) // Add all pointer instructions.
ScalarEvolutionAliasAnalysis.cpp 98 if (Last->getType()->isPointerTy())
BranchProbabilityInfo.cpp 233 if (!LHS->getType()->isPointerTy())
236 assert(CI->getOperand(1)->getType()->isPointerTy());
ScalarEvolution.cpp 312 assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
313 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
320 assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
321 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
328 assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
329 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
466 bool LIsPointer = LV->getType()->isPointerTy(),
467 RIsPointer = RV->getType()->isPointerTy();
    [all...]
ValueTracking.cpp 66 assert((V->getType()->isIntOrIntVectorTy() || V->getType()->isPointerTy())
276 if (SrcTy->isPointerTy())
295 if ((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 281 if (File->getType()->isPointerTy())
309 if (File->getType()->isPointerTy())
335 if (File->getType()->isPointerTy())
371 !FT->getParamType(0)->isPointerTy() ||
372 !FT->getParamType(1)->isPointerTy() ||
394 !FT->getParamType(0)->isPointerTy() ||
395 !FT->getParamType(1)->isPointerTy() ||
412 !FT->getParamType(0)->isPointerTy() ||
AddrModeMatcher.cpp 129 return I->getType()->isPointerTy() || I->getType()->isIntegerTy();
171 if ((AddrInst->getOperand(0)->getType()->isPointerTy() ||
558 if (!Address->getType()->isPointerTy())
PromoteMemoryToRegister.cpp 594 if (AST && PN->getType()->isPointerTy())
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 142 if (Arg->getType()->isPointerTy()) {
247 if (A->getType()->isPointerTy() && !A->hasNoCaptureAttr() &&
352 if (!F->getReturnType()->isPointerTy())
362 if (F->doesNotAlias(0) || !F->getReturnType()->isPointerTy())
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 143 FTy->getParamType(1)->isPointerTy() &&
144 FTy->getParamType(2)->isPointerTy()) {
158 FTy->getParamType(1)->isPointerTy()) {
  /external/llvm/lib/CodeGen/
Analysis.cpp 277 (U->getOperand(0)->getType()->isPointerTy() &&
278 U->getType()->isPointerTy())))
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 408 FTy->getParamType(1)->isPointerTy() &&
409 FTy->getParamType(2)->isPointerTy()) {
423 FTy->getParamType(1)->isPointerTy()) {
  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.cpp 472 if (ArgType->isPointerTy()) {
480 if (ArgType->isPointerTy() && ST.emitPtrAttribute()) {
  /external/llvm/include/llvm/
Type.h 183 /// isPointerTy - True if this is an instance of PointerType.
185 bool isPointerTy() const { return ID == PointerTyID; }
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 230 if (I->getType()->getElementType()->isPointerTy() &&
248 if (!V->getType()->isPointerTy()) return true;

Completed in 319 milliseconds

1 2 3