/external/llvm/lib/Transforms/Scalar/ |
D | AlignmentFromAssumptions.cpp | 274 if (PtrToIntInst *PToI = dyn_cast<PtrToIntInst>(AndLHS)) { in extractAlignmentInfo() 283 if (PtrToIntInst *PToI = dyn_cast<PtrToIntInst>(OpUnk->getValue())) { in extractAlignmentInfo()
|
/external/llvm/lib/CodeGen/ |
D | StackProtector.cpp | 160 } else if (const PtrToIntInst *SI = dyn_cast<PtrToIntInst>(U)) { in HasAddressTaken()
|
D | Analysis.cpp | 264 } else if (isa<PtrToIntInst>(I)) { in getNoopInput()
|
/external/llvm/include/llvm/Analysis/ |
D | PtrUseVisitor.h | 242 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/external/llvm/lib/Transforms/ObjCARC/ |
D | ProvenanceAnalysis.cpp | 95 if (isa<PtrToIntInst>(P)) in IsStoredObjCPointer()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.h | 166 void visitPtrToIntInst(PtrToIntInst &I);
|
D | Execution.cpp | 1700 void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/external/llvm/include/llvm/IR/ |
D | InstVisitor.h | 194 RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst);} in visitPtrToIntInst()
|
D | Instruction.def | 170 HANDLE_CAST_INST(45, PtrToInt, PtrToIntInst) // Pointer -> Integer
|
D | Instructions.h | 4682 class PtrToIntInst : public CastInst { 4687 PtrToIntInst *cloneImpl() const; 4691 PtrToIntInst( 4699 PtrToIntInst(
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 2585 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); in Create() 2607 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd); in Create() 3231 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst 3237 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst 3887 PtrToIntInst *PtrToIntInst::cloneImpl() const { in cloneImpl() 3888 return new PtrToIntInst(getOperand(0), getType()); in cloneImpl()
|
D | Verifier.cpp | 366 void visitPtrToIntInst(PtrToIntInst &I); 2204 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/external/llvm/lib/Analysis/ |
D | InlineCost.cpp | 142 bool visitPtrToInt(PtrToIntInst &I); 412 bool CallAnalyzer::visitPtrToInt(PtrToIntInst &I) { in visitPtrToInt()
|
D | VectorUtils.cpp | 515 if (isa<BitCastInst>(I) || isa<PtrToIntInst>(I) || isa<IntToPtrInst>(I) || in computeMinimumValueSizes()
|
D | CFLAliasAnalysis.cpp | 168 void visitPtrToIntInst(PtrToIntInst &Inst) { in visitPtrToIntInst()
|
D | InstructionSimplify.cpp | 2432 if (MaxRecurse && isa<PtrToIntInst>(LI) && in SimplifyICmpInst() 2440 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { in SimplifyICmpInst()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineInternal.h | 298 Instruction *visitPtrToInt(PtrToIntInst &CI);
|
D | InstCombineCasts.cpp | 1536 Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) { in visitPtrToInt()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 65 class PtrToIntInst; variable
|
/external/llvm/include/llvm-c/ |
D | Core.h | 1139 macro(PtrToIntInst) \
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 921 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V); in isPointerOperand()
|
D | MemorySanitizer.cpp | 1378 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 566 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV)) { in isValueEqualityComparison()
|