Searched defs:PtrInfo (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h83 MachinePointerInfo PtrInfo; member in class:llvm::MachineMemOperand
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/
H A DLegalizeTypesGeneric.cpp123 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI); local
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,
H A DSelectionDAG.cpp3936 SDValue Swp, MachinePointerInfo PtrInfo,
3956 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment);
4140 EVT MemVT, MachinePointerInfo PtrInfo,
4144 MemVT, PtrInfo, Align, Vol,
4151 EVT MemVT, MachinePointerInfo PtrInfo,
4166 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Align);
4245 MachinePointerInfo PtrInfo, EVT MemVT,
4262 // If we don't have a PtrInfo, infer the trivial frame index case to simplify
4264 if (PtrInfo.V == 0)
4265 PtrInfo
3934 getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT, SDValue Chain, SDValue Ptr, SDValue Cmp, SDValue Swp, MachinePointerInfo PtrInfo, unsigned Alignment, AtomicOrdering Ordering, SynchronizationScope SynchScope) argument
4137 getMemIntrinsicNode(unsigned Opcode, DebugLoc dl, const EVT *VTs, unsigned NumVTs, const SDValue *Ops, unsigned NumOps, EVT MemVT, MachinePointerInfo PtrInfo, unsigned Align, bool Vol, bool ReadMem, bool WriteMem) argument
4149 getMemIntrinsicNode(unsigned Opcode, DebugLoc dl, SDVTList VTList, const SDValue *Ops, unsigned NumOps, EVT MemVT, MachinePointerInfo PtrInfo, unsigned Align, bool Vol, bool ReadMem, bool WriteMem) argument
4242 getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, DebugLoc dl, SDValue Chain, SDValue Ptr, SDValue Offset, MachinePointerInfo PtrInfo, EVT MemVT, bool isVolatile, bool isNonTemporal, bool isInvariant, unsigned Alignment, const MDNode *TBAAInfo, const MDNode *Ranges) argument
4322 getLoad(EVT VT, DebugLoc dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, bool isVolatile, bool isNonTemporal, bool isInvariant, unsigned Alignment, const MDNode *TBAAInfo, const MDNode *Ranges) argument
4335 getExtLoad(ISD::LoadExtType ExtType, DebugLoc dl, EVT VT, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, EVT MemVT, bool isVolatile, bool isNonTemporal, unsigned Alignment, const MDNode *TBAAInfo) argument
4359 getStore(SDValue Chain, DebugLoc dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, bool isVolatile, bool isNonTemporal, unsigned Alignment, const MDNode *TBAAInfo) argument
4412 getTruncStore(SDValue Chain, DebugLoc dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, EVT SVT,bool isVolatile, bool isNonTemporal, unsigned Alignment, const MDNode *TBAAInfo) argument
[all...]
/external/llvm/lib/CodeGen/
H A DMachineFunction.cpp200 MachineFunction::getMachineMemOperand(MachinePointerInfo PtrInfo, unsigned f, argument
204 return new (Allocator) MachineMemOperand(PtrInfo, f, s, base_alignment,

Completed in 357 milliseconds