| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | 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()
|
| HD | DenseMapInfo.h | 45 static unsigned getHashValue(const T *PtrVal) { 46 return (unsigned((uintptr_t)PtrVal) >> 4) ^ 47 (unsigned((uintptr_t)PtrVal) >> 9);
|
| HD | 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);
|
| /NextBSD/contrib/llvm/lib/Analysis/ |
| HD | AliasSetTracker.cpp | 507 void AliasSetTracker::deleteValue(Value *PtrVal) { in deleteValue() argument 509 AA.deleteValue(PtrVal); in deleteValue() 513 if (Instruction *Inst = dyn_cast<Instruction>(PtrVal)) { in deleteValue() 525 PointerMapType::iterator I = PointerMap.find_as(PtrVal); in deleteValue()
|
| /NextBSD/contrib/llvm/lib/Target/AArch64/ |
| HD | AArch64TargetTransformInfo.cpp | 511 Info.PtrVal = Inst->getArgOperand(0); in getTgtMemIntrinsic() 520 Info.PtrVal = Inst->getArgOperand(Inst->getNumArgOperands() - 1); in getTgtMemIntrinsic()
|
| /NextBSD/contrib/llvm/lib/Transforms/Scalar/ |
| HD | SCCP.cpp | 1045 LatticeVal PtrVal = getValueState(I.getOperand(0)); in visitLoadInst() local 1046 if (PtrVal.isUndefined()) return; // The pointer is not resolved yet! in visitLoadInst() 1051 if (!PtrVal.isConstant() || I.isVolatile()) in visitLoadInst() 1054 Constant *Ptr = PtrVal.getConstant(); in visitLoadInst()
|
| HD | GVN.cpp | 1174 Value *PtrVal = SrcVal->getPointerOperand(); in GetLoadValueForLoad() local 1183 PtrVal->getType()->getPointerAddressSpace()); in GetLoadValueForLoad() 1185 PtrVal = Builder.CreateBitCast(PtrVal, DestPTy); in GetLoadValueForLoad() 1186 LoadInst *NewLoad = Builder.CreateLoad(PtrVal); in GetLoadValueForLoad()
|
| HD | EarlyCSE.cpp | 400 Ptr = Info.PtrVal; in ParseMemoryInst()
|
| /NextBSD/contrib/llvm/include/llvm/Analysis/ |
| HD | TargetTransformInfo.h | 46 NumMemRefs(0), PtrVal(nullptr) {} in MemIntrinsicInfo() 53 Value *PtrVal; member
|
| HD | AliasSetTracker.h | 391 void deleteValue(Value *PtrVal);
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | MicrosoftCXXABI.cpp | 466 llvm::Constant *getImageRelativeConstant(llvm::Constant *PtrVal) { in getImageRelativeConstant() argument 468 return PtrVal; in getImageRelativeConstant() 470 if (PtrVal->isNullValue()) in getImageRelativeConstant() 476 llvm::ConstantExpr::getPtrToInt(PtrVal, CGM.IntPtrTy); in getImageRelativeConstant()
|
| /NextBSD/contrib/llvm/include/llvm/CodeGen/ |
| HD | SelectionDAG.h | 783 SDValue Ptr, SDValue Val, const Value *PtrVal,
|
| /NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| HD | SelectionDAGBuilder.cpp | 5178 static SDValue getMemCmpLoad(const Value *PtrVal, MVT LoadVT, in getMemCmpLoad() argument 5184 if (const Constant *LoadInput = dyn_cast<Constant>(PtrVal)) { in getMemCmpLoad() 5200 if (Builder.AA->pointsToConstantMemory(PtrVal)) { in getMemCmpLoad() 5208 SDValue Ptr = Builder.getValue(PtrVal); in getMemCmpLoad() 5210 Ptr, MachinePointerInfo(PtrVal), in getMemCmpLoad()
|
| HD | SelectionDAG.cpp | 4727 const Value* PtrVal, in getAtomic() argument 4748 MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags, in getAtomic()
|
| /NextBSD/contrib/llvm/lib/Transforms/Vectorize/ |
| HD | LoopVectorize.cpp | 2227 VectorParts &PtrVal = getVectorValue(Ptr); in vectorizeMemoryInstruction() local 2228 Ptr = Builder.CreateExtractElement(PtrVal[0], Zero); in vectorizeMemoryInstruction()
|