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

/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h82 MachinePointerInfo PtrInfo; member in class:llvm::MachineMemOperand
103 /// specified PtrInfo, flags, size, and base alignment.
104 MachineMemOperand(MachinePointerInfo PtrInfo, unsigned flags, uint64_t s,
107 const MachinePointerInfo &getPointerInfo() const { return PtrInfo; }
116 const Value *getValue() const { return PtrInfo.V; }
124 int64_t getOffset() const { return PtrInfo.Offset; }
153 void setValue(const Value *NewSV) { PtrInfo.V = NewSV; }
154 void setOffset(int64_t NewOffset) { PtrInfo.Offset = NewOffset; }
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp126 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI); local
129 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo,
133 Lo = DAG.getLoad(NOutVT, dl, Store, StackPtr, PtrInfo, false, false, 0);
142 PtrInfo.getWithOffset(IncrementSize), false,
H A DSelectionDAG.cpp3842 SDValue Swp, MachinePointerInfo PtrInfo,
3858 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment);
4038 EVT MemVT, MachinePointerInfo PtrInfo,
4042 MemVT, PtrInfo, Align, Vol,
4049 EVT MemVT, MachinePointerInfo PtrInfo,
4064 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Align);
4140 MachinePointerInfo PtrInfo, EVT MemVT,
4154 // If we don't have a PtrInfo, infer the trivial frame index case to simplify
4156 if (PtrInfo.V == 0)
4157 PtrInfo
3840 getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT, SDValue Chain, SDValue Ptr, SDValue Cmp, SDValue Swp, MachinePointerInfo PtrInfo, unsigned Alignment, AtomicOrdering Ordering, SynchronizationScope SynchScope) argument
4035 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
4047 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
4137 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, unsigned Alignment, const MDNode *TBAAInfo) argument
4212 getLoad(EVT VT, DebugLoc dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, bool isVolatile, bool isNonTemporal, unsigned Alignment, const MDNode *TBAAInfo) argument
4222 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
4246 getStore(SDValue Chain, DebugLoc dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, bool isVolatile, bool isNonTemporal, unsigned Alignment, const MDNode *TBAAInfo) argument
4298 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.cpp198 MachineFunction::getMachineMemOperand(MachinePointerInfo PtrInfo, unsigned f, argument
201 return new (Allocator) MachineMemOperand(PtrInfo, f, s, base_alignment,

Completed in 94 milliseconds