HomeSort by relevance Sort by last modified time
    Searched refs:PtrVal (Results 1 - 16 of 16) sorted by null

  /external/llvm/include/llvm/ADT/
PointerIntPair.h 68 PointerIntPair(PointerTy PtrVal, IntType IntVal) {
69 setPointerAndInt(PtrVal, IntVal);
71 explicit PointerIntPair(PointerTy PtrVal) {
72 initWithPointer(PtrVal);
84 void setPointer(PointerTy PtrVal) {
86 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
102 void initWithPointer(PointerTy PtrVal) {
104 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
110 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) {
112 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
    [all...]
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);
DenseMapInfo.h 46 static unsigned getHashValue(const T *PtrVal) {
47 return (unsigned((uintptr_t)PtrVal) >> 4) ^
48 (unsigned((uintptr_t)PtrVal) >> 9);
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 45 Param() : Val(NULL), PtrVal(NULL), OffsetInDW(0), SizeInDW(0),
49 Value* PtrVal;
239 if (I->PtrVal) {
240 Propagate(I->PtrVal, I->Val->getName(), I->IsIndirect);
345 P.PtrVal = ParamPtr;
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 509 void AliasSetTracker::deleteValue(Value *PtrVal) {
512 if (Instruction *Inst = dyn_cast<Instruction>(PtrVal)) {
524 PointerMapType::iterator I = PointerMap.find_as(PtrVal);
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 46 NumMemRefs(0), PtrVal(nullptr) {}
55 Value *PtrVal;
    [all...]
AliasSetTracker.h 393 void deleteValue(Value *PtrVal);
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 543 Info.PtrVal = Inst->getArgOperand(0);
552 Info.PtrVal = Inst->getArgOperand(Inst->getNumArgOperands() - 1);
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp     [all...]
GVN.cpp     [all...]
EarlyCSE.cpp 465 if (IsTargetMemInst) return Info.PtrVal;
    [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 524 llvm::Constant *getImageRelativeConstant(llvm::Constant *PtrVal) {
526 return PtrVal;
528 if (PtrVal->isNullValue())
534 llvm::ConstantExpr::getPtrToInt(PtrVal, CGM.IntPtrTy);
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 1040 milliseconds