diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-09-21 04:46:39 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-09-21 04:46:39 +0000 |
| commit | 60d6def76a7bf3b4ed56adb81f6ce228e41730e5 (patch) | |
| tree | d87e0e086e8459314307f38ae6f58c104962d83e /include/llvm/CodeGen/MachineMemOperand.h | |
| parent | b1605b16eee965667b57e2799065399b8a45dad4 (diff) | |
| download | external_llvm-60d6def76a7bf3b4ed56adb81f6ce228e41730e5.zip external_llvm-60d6def76a7bf3b4ed56adb81f6ce228e41730e5.tar.gz external_llvm-60d6def76a7bf3b4ed56adb81f6ce228e41730e5.tar.bz2 | |
force clients of MachineFunction::getMachineMemOperand to provide a
MachinePointerInfo, propagating the type out a level of API. Remove
the old MachineFunction::getMachineMemOperand impl.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114393 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineMemOperand.h')
| -rw-r--r-- | include/llvm/CodeGen/MachineMemOperand.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineMemOperand.h b/include/llvm/CodeGen/MachineMemOperand.h index 0386c19..0804f46 100644 --- a/include/llvm/CodeGen/MachineMemOperand.h +++ b/include/llvm/CodeGen/MachineMemOperand.h @@ -37,7 +37,8 @@ struct MachinePointerInfo { /// Offset - This is an offset from the base Value*. int64_t Offset; - MachinePointerInfo(const Value *v, int64_t offset) : V(v), Offset(offset) {} + explicit MachinePointerInfo(const Value *v, int64_t offset = 0) + : V(v), Offset(offset) {} }; @@ -74,6 +75,8 @@ public: MachineMemOperand(MachinePointerInfo PtrInfo, unsigned flags, uint64_t s, unsigned base_alignment); + const MachinePointerInfo &getPointerInfo() const { return PtrInfo; } + /// getValue - Return the base address of the memory access. This may either /// be a normal LLVM IR Value, or one of the special values used in CodeGen. /// Special values are those obtained via |
