aboutsummaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenTarget.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-22 18:58:51 +0000
committerChris Lattner <sabre@nondot.org>2005-01-22 18:58:51 +0000
commitd6488671736d0a5aaee1218748b94d8c68f33716 (patch)
treeb218490b3ed80a627edef94927a70f1eea52b855 /utils/TableGen/CodeGenTarget.cpp
parent615ed993e115f8bc97ff0678aa861629fec93880 (diff)
Refactor code for numbering instructions into CodeGenTarget.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19758 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.cpp')
-rw-r--r--utils/TableGen/CodeGenTarget.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp
index b9c8bdbb9f..cb241aaf95 100644
--- a/utils/TableGen/CodeGenTarget.cpp
+++ b/utils/TableGen/CodeGenTarget.cpp
@@ -198,6 +198,22 @@ const CodeGenInstruction &CodeGenTarget::getPHIInstruction() const {
return I->second;
}
+/// getInstructionsByEnumValue - Return all of the instructions defined by the
+/// target, ordered by their enum value.
+void CodeGenTarget::
+getInstructionsByEnumValue(std::vector<const CodeGenInstruction*>
+ &NumberedInstructions) {
+
+ // Print out the rest of the instructions now.
+ unsigned i = 0;
+ const CodeGenInstruction *PHI = &getPHIInstruction();
+ NumberedInstructions.push_back(PHI);
+ for (inst_iterator II = inst_begin(), E = inst_end(); II != E; ++II)
+ if (&II->second != PHI)
+ NumberedInstructions.push_back(&II->second);
+}
+
+
/// isLittleEndianEncoding - Return whether this target encodes its instruction
/// in little-endian format, i.e. bits laid out in the order [0..n]
///