HomeSort by relevance Sort by last modified time
    Searched defs:PtrInfo (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 83 MachinePointerInfo PtrInfo;
107 /// specified PtrInfo, flags, size, and base alignment.
108 MachineMemOperand(MachinePointerInfo PtrInfo, unsigned flags, uint64_t s,
112 const MachinePointerInfo &getPointerInfo() const { return PtrInfo; }
121 const Value *getValue() const { return PtrInfo.V; }
129 int64_t getOffset() const { return PtrInfo.Offset; }
171 void setValue(const Value *NewSV) { PtrInfo.V = NewSV; }
172 void setOffset(int64_t NewOffset) { PtrInfo.Offset = NewOffset; }
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 123 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
126 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo,
130 Lo = DAG.getLoad(NOutVT, dl, Store, StackPtr, PtrInfo,
140 PtrInfo.getWithOffset(IncrementSize), false,

Completed in 29 milliseconds