/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | AlignmentFromAssumptions.cpp | 261 if (PtrToIntInst *PToI = dyn_cast<PtrToIntInst>(AndLHS)) { in extractAlignmentInfo() 270 if (PtrToIntInst *PToI = dyn_cast<PtrToIntInst>(OpUnk->getValue())) { in extractAlignmentInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | PtrUseVisitor.h | 263 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/ |
D | ProvenanceAnalysis.cpp | 103 if (isa<PtrToIntInst>(P)) in IsStoredObjCPointer()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.h | 147 void visitPtrToIntInst(PtrToIntInst &I);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Instruction.def | 170 HANDLE_CAST_INST(45, PtrToInt, PtrToIntInst) // Pointer -> Integer
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | InstVisitor.h | 187 RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst);} in visitPtrToIntInst()
|
D | Instruction.def | 193 HANDLE_CAST_INST(47, PtrToInt, PtrToIntInst) // Pointer -> Integer
|
D | Instructions.h | 5108 class PtrToIntInst : public CastInst { 5114 PtrToIntInst *cloneImpl() const; 5118 PtrToIntInst( 5126 PtrToIntInst(
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instructions.cpp | 2753 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); in Create() 2775 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd); in Create() 3401 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst 3407 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst 4216 PtrToIntInst *PtrToIntInst::cloneImpl() const { in cloneImpl() 4217 return new PtrToIntInst(getOperand(0), getType()); in cloneImpl()
|
D | Verifier.cpp | 449 void visitPtrToIntInst(PtrToIntInst &I); 2749 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | StackProtector.cpp | 179 if (AI == cast<PtrToIntInst>(I)->getOperand(0)) in HasAddressTaken()
|
D | Analysis.cpp | 302 } else if (isa<PtrToIntInst>(I)) { in getNoopInput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceConverter.cpp | 235 return convertPtrToIntInstruction(cast<PtrToIntInst>(Instr)); in convertInstruction() 383 Ice::Inst *convertPtrToIntInstruction(const PtrToIntInst *Instr) { in convertPtrToIntInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CFLGraph.h | 272 void visitPtrToIntInst(PtrToIntInst &Inst) { in visitPtrToIntInst()
|
D | InlineCost.cpp | 316 bool visitPtrToInt(PtrToIntInst &I); 934 bool CallAnalyzer::visitPtrToInt(PtrToIntInst &I) { in visitPtrToInt()
|
D | VectorUtils.cpp | 442 if (isa<BitCastInst>(I) || isa<PtrToIntInst>(I) || isa<IntToPtrInst>(I) || in computeMinimumValueSizes()
|
D | InstructionSimplify.cpp | 3293 if (MaxRecurse && isa<PtrToIntInst>(LI) && in SimplifyICmpInst() 3301 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { in SimplifyICmpInst()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUPrintfRuntimeBinding.cpp | 478 Arg = new PtrToIntInst(Arg, DstType, "PrintArgPtr", Brnch); in lowerPrintfForGpu()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineInternal.h | 419 Instruction *visitPtrToInt(PtrToIntInst &CI);
|
D | InstCombinePHI.cpp | 136 if (auto *PI = dyn_cast<PtrToIntInst>(Arg)) { in FoldIntegerTypedPHI()
|
D | InstCombineCompares.cpp | 547 if (!isa<IntToPtrInst>(V) && !isa<PtrToIntInst>(V) && in canRewriteGEPAsOffset() 553 if (isa<IntToPtrInst>(V) || isa<PtrToIntInst>(V)) { in canRewriteGEPAsOffset() 790 if (auto *CI = dyn_cast<PtrToIntInst>(V)) { in getAsConstantIndexedAddress()
|
D | InstCombineCasts.cpp | 1829 Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) { in visitPtrToInt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
D | Core.h | 1594 macro(PtrToIntInst) \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 716 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV)) { in isValueEqualityComparison()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | Attributor.cpp | 3398 TrackUse = !isa<PtrToIntInst>(I); in getKnownAlignForUse() 3862 if (isa<PtrToIntInst>(UInst)) { in captured()
|