/external/llvm/include/llvm/ADT/ |
D | PointerIntPair.h | 67 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair() argument 68 setPointerAndInt(PtrVal, IntVal); in PointerIntPair() 70 explicit PointerIntPair(PointerTy PtrVal) { in PointerIntPair() argument 71 initWithPointer(PtrVal); in PointerIntPair() 83 void setPointer(PointerTy PtrVal) { in setPointer() argument 85 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal)); in setPointer() 101 void initWithPointer(PointerTy PtrVal) { in initWithPointer() argument 103 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal)); in initWithPointer() 109 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) { in setPointerAndInt() argument 111 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal)); in setPointerAndInt()
|
D | DenseMapInfo.h | 43 static unsigned getHashValue(const T *PtrVal) { 44 return (unsigned((uintptr_t)PtrVal) >> 4) ^ 45 (unsigned((uintptr_t)PtrVal) >> 9);
|
D | ImmutableList.h | 214 uintptr_t PtrVal = reinterpret_cast<uintptr_t>(X.getInternalPointer()); 215 return (unsigned((uintptr_t)PtrVal) >> 4) ^ 216 (unsigned((uintptr_t)PtrVal) >> 9);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
D | R600KernelParameters.cpp | 45 Param() : Val(NULL), PtrVal(NULL), OffsetInDW(0), SizeInDW(0), in Param() 49 Value* PtrVal; member 239 if (I->PtrVal) { in Propagate() 240 Propagate(I->PtrVal, I->Val->getName(), I->IsIndirect); in Propagate() 345 P.PtrVal = ParamPtr; in ConstantRead()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | R600KernelParameters.cpp | 45 Param() : Val(NULL), PtrVal(NULL), OffsetInDW(0), SizeInDW(0), in Param() 49 Value* PtrVal; member 239 if (I->PtrVal) { in Propagate() 240 Propagate(I->PtrVal, I->Val->getName(), I->IsIndirect); in Propagate() 345 P.PtrVal = ParamPtr; in ConstantRead()
|
/external/llvm/lib/Analysis/ |
D | AliasSetTracker.cpp | 483 void AliasSetTracker::deleteValue(Value *PtrVal) { in deleteValue() argument 485 AA.deleteValue(PtrVal); in deleteValue() 489 if (Instruction *Inst = dyn_cast<Instruction>(PtrVal)) { in deleteValue() 501 PointerMapType::iterator I = PointerMap.find_as(PtrVal); in deleteValue()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 1043 LatticeVal PtrVal = getValueState(I.getOperand(0)); in visitLoadInst() local 1044 if (PtrVal.isUndefined()) return; // The pointer is not resolved yet! in visitLoadInst() 1049 if (!PtrVal.isConstant() || I.isVolatile()) in visitLoadInst() 1052 Constant *Ptr = PtrVal.getConstant(); in visitLoadInst()
|
D | GVN.cpp | 1167 Value *PtrVal = SrcVal->getPointerOperand(); in GetLoadValueForLoad() local 1176 PtrVal->getType()->getPointerAddressSpace()); in GetLoadValueForLoad() 1178 PtrVal = Builder.CreateBitCast(PtrVal, DestPTy); in GetLoadValueForLoad() 1179 LoadInst *NewLoad = Builder.CreateLoad(PtrVal); in GetLoadValueForLoad()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasSetTracker.h | 381 void deleteValue(Value *PtrVal);
|
/external/clang/lib/CodeGen/ |
D | MicrosoftCXXABI.cpp | 390 llvm::Constant *getImageRelativeConstant(llvm::Constant *PtrVal) { in getImageRelativeConstant() argument 392 return PtrVal; in getImageRelativeConstant() 397 llvm::ConstantExpr::getPtrToInt(PtrVal, CGM.IntPtrTy); in getImageRelativeConstant()
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 741 SDValue Ptr, SDValue Val, const Value *PtrVal,
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 5546 static SDValue getMemCmpLoad(const Value *PtrVal, MVT LoadVT, in getMemCmpLoad() argument 5552 if (const Constant *LoadInput = dyn_cast<Constant>(PtrVal)) { in getMemCmpLoad() 5569 if (Builder.AA->pointsToConstantMemory(PtrVal)) { in getMemCmpLoad() 5577 SDValue Ptr = Builder.getValue(PtrVal); in getMemCmpLoad() 5579 Ptr, MachinePointerInfo(PtrVal), in getMemCmpLoad()
|
D | SelectionDAG.cpp | 4458 const Value* PtrVal, in getAtomic() argument 4479 MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags, in getAtomic()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 1693 VectorParts &PtrVal = getVectorValue(Ptr); in vectorizeMemoryInstruction() local 1694 Ptr = Builder.CreateExtractElement(PtrVal[0], Zero); in vectorizeMemoryInstruction()
|