[llvm-commits] [llvm] r54997 - /llvm/trunk/utils/TableGen/FastISelEmitter.cpp
Dan Gohman
gohman at apple.com
Tue Aug 19 11:06:12 PDT 2008
Author: djg
Date: Tue Aug 19 13:06:12 2008
New Revision: 54997
URL: http://llvm.org/viewvc/llvm-project?rev=54997&view=rev
Log:
Add a few doxygen comments.
Modified:
llvm/trunk/utils/TableGen/FastISelEmitter.cpp
Modified: llvm/trunk/utils/TableGen/FastISelEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/FastISelEmitter.cpp?rev=54997&r1=54996&r2=54997&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/FastISelEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/FastISelEmitter.cpp Tue Aug 19 13:06:12 2008
@@ -44,6 +44,9 @@
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 @@
}
};
+/// InstructionMemo - This class holds additional information about an
+/// instruction needed to emit code for it.
+///
struct InstructionMemo {
std::string Name;
const CodeGenRegisterClass *RC;
More information about the llvm-commits
mailing list