diff options
author | Chris Lattner <sabre@nondot.org> | 2006-09-26 23:59:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-09-26 23:59:50 +0000 |
commit | a32814b033cbdd48c60f7efe9e49b58c4cf6e018 (patch) | |
tree | 850b7f1d3f436b7420c4e267b1d9f07af254e0b5 /llvm | |
parent | 8d21485660a1a3690ee40f74548e2d848d707d30 (diff) | |
download | bcm5719-llvm-a32814b033cbdd48c60f7efe9e49b58c4cf6e018.tar.gz bcm5719-llvm-a32814b033cbdd48c60f7efe9e49b58c4cf6e018.zip |
Add support for ${:comment}, which expands to the current target's comment
character, and ${:uid} which expands to a unique ID for the MachineInstr.
More can be added if/when they are needed.
llvm-svn: 30619
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/CodeGen/AsmPrinter.h | 8 | ||||
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter.cpp | 24 |
2 files changed, 32 insertions, 0 deletions
diff --git a/llvm/include/llvm/CodeGen/AsmPrinter.h b/llvm/include/llvm/CodeGen/AsmPrinter.h index 386a8d53fd6..4c34dcd21dd 100644 --- a/llvm/include/llvm/CodeGen/AsmPrinter.h +++ b/llvm/include/llvm/CodeGen/AsmPrinter.h @@ -108,6 +108,14 @@ namespace llvm { /// doFinalization - Shut down the asmprinter. If you override this in your /// pass, you must make sure to call it explicitly. bool doFinalization(Module &M); + + /// PrintSpecial - Print information related to the specified machine instr + /// that is independent of the operand, and may be independent of the instr + /// itself. This can be useful for portably encoding the comment character + /// or other bits of target-specific knowledge into the asmstrings. The + /// syntax used is ${:comment}. Targets can override this to add support + /// for their own strange codes. + virtual void PrintSpecial(const MachineInstr *MI, const char *Code); /// PrintAsmOperand - Print the specified operand of MI, an INLINEASM /// instruction, using the specified assembler variant. Targets should diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp index bfc0519806c..518aec3348f 100644 --- a/llvm/lib/CodeGen/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter.cpp @@ -619,6 +619,30 @@ AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) { abort(); } +/// PrintSpecial - Print information related to the specified machine instr +/// that is independent of the operand, and may be independent of the instr +/// itself. This can be useful for portably encoding the comment character +/// or other bits of target-specific knowledge into the asmstrings. The +/// syntax used is ${:comment}. Targets can override this to add support +/// for their own strange codes. +void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) { + if (!strcmp(Code, "comment")) { + O << TAI->getCommentString(); + } else if (!strcmp(Code, "uid")) { + // Assign a unique ID to this machine instruction. + static const MachineInstr *LastMI = 0; + static unsigned Counter = 0U-1; + // If this is a new machine instruction, bump the counter. + if (LastMI != MI) { ++Counter; LastMI = MI; } + O << Counter; + } else { + std::cerr << "Unknown special formatter '" << Code + << "' for machine instr: " << *MI; + exit(1); + } +} + + /// printInlineAsm - This method formats and prints the specified machine /// instruction that is an inline asm. void AsmPrinter::printInlineAsm(const MachineInstr *MI) const { |