mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
add operand iterator apis to MachineInstr, patch by ether zhhb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118862 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -168,6 +168,16 @@ public:
|
||||
///
|
||||
unsigned getNumExplicitOperands() const;
|
||||
|
||||
/// iterator/begin/end - Iterate over all operands of a machine instruction.
|
||||
typedef std::vector<MachineOperand>::iterator mop_iterator;
|
||||
typedef std::vector<MachineOperand>::const_iterator const_mop_iterator;
|
||||
|
||||
mop_iterator operands_begin() { return Operands.begin(); }
|
||||
mop_iterator operands_end() { return Operands.end(); }
|
||||
|
||||
const_mop_iterator operands_begin() const { return Operands.begin(); }
|
||||
const_mop_iterator operands_end() const { return Operands.end(); }
|
||||
|
||||
/// Access to memory operands of the instruction
|
||||
mmo_iterator memoperands_begin() const { return MemRefs; }
|
||||
mmo_iterator memoperands_end() const { return MemRefsEnd; }
|
||||
|
Reference in New Issue
Block a user