blob: 7b3a5046c3c1d9349d9e6061ce00072f97a726c1 [file] [log] [blame]
Chris Lattner2e1f51b2004-08-01 05:59:33 +00001//===- AsmWriterEmitter.cpp - Generate an assembly writer -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This tablegen backend is emits an assembly printer for the current target.
11// Note that this is currently fairly skeletal, but will grow over time.
12//
13//===----------------------------------------------------------------------===//
14
15#include "AsmWriterEmitter.h"
16#include "CodeGenTarget.h"
Chris Lattner175580c2004-08-14 22:50:53 +000017#include "Record.h"
Chris Lattner2e1f51b2004-08-01 05:59:33 +000018#include <ostream>
19using namespace llvm;
20
Chris Lattner076efa72004-08-01 07:43:02 +000021static bool isIdentChar(char C) {
22 return (C >= 'a' && C <= 'z') ||
23 (C >= 'A' && C <= 'Z') ||
24 (C >= '0' && C <= '9') ||
25 C == '_';
26}
27
Chris Lattner2e1f51b2004-08-01 05:59:33 +000028void AsmWriterEmitter::run(std::ostream &O) {
29 EmitSourceFileHeader("Assembly Writer Source Fragment", O);
30
31 CodeGenTarget Target;
Chris Lattner175580c2004-08-14 22:50:53 +000032
33 Record *AsmWriter = Target.getAsmWriter();
34
35 std::string AsmWriterClassName =
36 AsmWriter->getValueAsString("AsmWriterClassName");
37
Chris Lattner2e1f51b2004-08-01 05:59:33 +000038 O <<
39 "/// printInstruction - This method is automatically generated by tablegen\n"
40 "/// from the instruction set description. This method returns true if the\n"
41 "/// machine instruction was sufficiently described to print it, otherwise\n"
42 "/// it returns false.\n"
Chris Lattner175580c2004-08-14 22:50:53 +000043 "bool " << Target.getName() << AsmWriterClassName
44 << "::printInstruction(const MachineInstr *MI) {\n";
Chris Lattner2e1f51b2004-08-01 05:59:33 +000045 O << " switch (MI->getOpcode()) {\n"
46 " default: return false;\n";
47
48 std::string Namespace = Target.inst_begin()->second.Namespace;
49
50 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
51 E = Target.inst_end(); I != E; ++I)
52 if (!I->second.AsmString.empty()) {
53 const std::string &AsmString = I->second.AsmString;
Chris Lattner076efa72004-08-01 07:43:02 +000054 O << " case " << Namespace << "::" << I->first << ": O ";
55
56 std::string::size_type LastEmitted = 0;
57 while (LastEmitted != AsmString.size()) {
58 std::string::size_type DollarPos = AsmString.find('$', LastEmitted);
59 if (DollarPos == std::string::npos) DollarPos = AsmString.size();
60
61 // Emit a constant string fragment.
62 if (DollarPos != LastEmitted) {
63 // TODO: this should eventually handle escaping.
64 O << " << \"" << std::string(AsmString.begin()+LastEmitted,
65 AsmString.begin()+DollarPos) << "\"";
66 LastEmitted = DollarPos;
67 } else if (DollarPos+1 != AsmString.size() &&
68 AsmString[DollarPos+1] == '$') {
69 O << " << '$'"; // "$$" -> $
70 } else {
71 // Get the name of the variable.
72 // TODO: should eventually handle ${foo}bar as $foo
73 std::string::size_type VarEnd = DollarPos+1;
74 while (VarEnd < AsmString.size() && isIdentChar(AsmString[VarEnd]))
75 ++VarEnd;
76 std::string VarName(AsmString.begin()+DollarPos+1,
77 AsmString.begin()+VarEnd);
78 if (VarName.empty())
79 throw "Stray '$' in '" + I->first +
80 "' asm string, maybe you want $$?";
81 unsigned OpNo = I->second.getOperandNamed(VarName);
82
83 // If this is a two-address instruction and we are not accessing the
84 // 0th operand, remove an operand.
Chris Lattner9302ba42004-08-11 04:08:36 +000085 unsigned MIOp = I->second.OperandList[OpNo].MIOperandNo;
86 if (I->second.isTwoAddress && MIOp != 0) {
87 if (MIOp == 1)
Chris Lattnerc3d5f3e2004-08-01 08:55:34 +000088 throw "Should refer to operand #0 instead of #1 for two-address"
89 " instruction '" + I->first + "'!";
Chris Lattner9302ba42004-08-11 04:08:36 +000090 --MIOp;
Chris Lattnerc3d5f3e2004-08-01 08:55:34 +000091 }
Chris Lattner076efa72004-08-01 07:43:02 +000092
Chris Lattner1caef2c2004-08-11 02:23:23 +000093 O << "; " << I->second.OperandList[OpNo].PrinterMethodName
Chris Lattner9302ba42004-08-11 04:08:36 +000094 << "(MI, " << MIOp << ", MVT::"
Chris Lattner076efa72004-08-01 07:43:02 +000095 << getName(I->second.OperandList[OpNo].Ty) << "); O ";
96 LastEmitted = VarEnd;
97 }
98 }
99
100 O << " << '\\n'; break;\n";
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000101 }
102
103 O << " }\n"
104 " return true;\n"
105 "}\n";
106 EmitSourceFileTail(O);
107}