summaryrefslogtreecommitdiff
path: root/utils/TableGen
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2014-04-18 02:09:02 +0000
committerJim Grosbach <grosbach@apple.com>2014-04-18 02:09:02 +0000
commit7b771af259953ed6a9ac9e3b9dbaac639d5a45c2 (patch)
tree93fc2a6c87536c2a8a7c9107975b67e4573f124c /utils/TableGen
parent3db76ccd4e1cbc14440e15edd87fd2480eef0942 (diff)
downloadllvm-7b771af259953ed6a9ac9e3b9dbaac639d5a45c2.tar.gz
llvm-7b771af259953ed6a9ac9e3b9dbaac639d5a45c2.tar.bz2
llvm-7b771af259953ed6a9ac9e3b9dbaac639d5a45c2.tar.xz
iterator_range accessor for CodeGenTarget instruction list.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen')
-rw-r--r--utils/TableGen/CodeGenInstruction.h1
-rw-r--r--utils/TableGen/CodeGenTarget.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenInstruction.h b/utils/TableGen/CodeGenInstruction.h
index 75afab5c69..dc39eb973b 100644
--- a/utils/TableGen/CodeGenInstruction.h
+++ b/utils/TableGen/CodeGenInstruction.h
@@ -156,7 +156,6 @@ namespace llvm {
iterator end() { return OperandList.end(); }
const_iterator end() const { return OperandList.end(); }
-
/// getOperandNamed - Return the index of the operand with the specified
/// non-empty name. If the instruction does not have an operand with the
/// specified name, abort.
diff --git a/utils/TableGen/CodeGenTarget.h b/utils/TableGen/CodeGenTarget.h
index d6458f41cf..54143103dc 100644
--- a/utils/TableGen/CodeGenTarget.h
+++ b/utils/TableGen/CodeGenTarget.h
@@ -171,6 +171,9 @@ public:
typedef std::vector<const CodeGenInstruction*>::const_iterator inst_iterator;
inst_iterator inst_begin() const{return getInstructionsByEnumValue().begin();}
inst_iterator inst_end() const { return getInstructionsByEnumValue().end(); }
+ iterator_range<inst_iterator> instructions() const {
+ return iterator_range<inst_iterator>(inst_begin(), inst_end());
+ }
/// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?