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

/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h28 /// MachinePointerInfo - This class contains a discriminated union of
32 struct MachinePointerInfo { struct in namespace:llvm
41 explicit MachinePointerInfo(const Value *v = 0, int64_t offset = 0) function in struct:llvm::MachinePointerInfo
44 MachinePointerInfo getWithOffset(int64_t O) const {
45 if (V == 0) return MachinePointerInfo(0, 0);
46 return MachinePointerInfo(V, Offset+O);
53 /// getConstantPool - Return a MachinePointerInfo record that refers to the
55 static MachinePointerInfo getConstantPool();
57 /// getFixedStack - Return a MachinePointerInfo record that refers to the
59 static MachinePointerInfo getFixedStac
[all...]

Completed in 158 milliseconds