summaryrefslogtreecommitdiff
path: root/utils/TableGen/FastISelEmitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/TableGen/FastISelEmitter.cpp')
-rw-r--r--utils/TableGen/FastISelEmitter.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/TableGen/FastISelEmitter.cpp b/utils/TableGen/FastISelEmitter.cpp
index 8007b7ed70..ae12201600 100644
--- a/utils/TableGen/FastISelEmitter.cpp
+++ b/utils/TableGen/FastISelEmitter.cpp
@@ -44,6 +44,9 @@ using namespace llvm;
namespace {
+/// OperandsSignature - This class holds a description of a list of operand
+/// types. It has utility methods for emitting text based on the operands.
+///
struct OperandsSignature {
std::vector<std::string> Operands;
@@ -86,6 +89,9 @@ struct OperandsSignature {
}
};
+/// InstructionMemo - This class holds additional information about an
+/// instruction needed to emit code for it.
+///
struct InstructionMemo {
std::string Name;
const CodeGenRegisterClass *RC;