Home
last modified time | relevance | path

Searched refs:PtrVal (Results 1 – 15 of 15) sorted by relevance

/NextBSD/contrib/llvm/include/llvm/ADT/
HDPointerIntPair.h67 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()
HDDenseMapInfo.h45 static unsigned getHashValue(const T *PtrVal) {
46 return (unsigned((uintptr_t)PtrVal) >> 4) ^
47 (unsigned((uintptr_t)PtrVal) >> 9);
HDImmutableList.h214 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/
HDAliasSetTracker.cpp507 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/
HDAArch64TargetTransformInfo.cpp511 Info.PtrVal = Inst->getArgOperand(0); in getTgtMemIntrinsic()
520 Info.PtrVal = Inst->getArgOperand(Inst->getNumArgOperands() - 1); in getTgtMemIntrinsic()
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDSCCP.cpp1045 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()
HDGVN.cpp1174 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()
HDEarlyCSE.cpp400 Ptr = Info.PtrVal; in ParseMemoryInst()
/NextBSD/contrib/llvm/include/llvm/Analysis/
HDTargetTransformInfo.h46 NumMemRefs(0), PtrVal(nullptr) {} in MemIntrinsicInfo()
53 Value *PtrVal; member
HDAliasSetTracker.h391 void deleteValue(Value *PtrVal);
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDMicrosoftCXXABI.cpp466 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/
HDSelectionDAG.h783 SDValue Ptr, SDValue Val, const Value *PtrVal,
/NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/
HDSelectionDAGBuilder.cpp5178 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()
HDSelectionDAG.cpp4727 const Value* PtrVal, in getAtomic() argument
4748 MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags, in getAtomic()
/NextBSD/contrib/llvm/lib/Transforms/Vectorize/
HDLoopVectorize.cpp2227 VectorParts &PtrVal = getVectorValue(Ptr); in vectorizeMemoryInstruction() local
2228 Ptr = Builder.CreateExtractElement(PtrVal[0], Zero); in vectorizeMemoryInstruction()