blob: f34feef0c28d64df01f2abf77c1625570f29e0c3 [file] [log] [blame]
Chris Lattner2e1f51b2004-08-01 05:59:33 +00001//===- AsmWriterEmitter.cpp - Generate an assembly writer -----------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
Chris Lattner2e1f51b2004-08-01 05:59:33 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner30609102007-12-29 20:37:13 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
Chris Lattner2e1f51b2004-08-01 05:59:33 +00008//===----------------------------------------------------------------------===//
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 Lattner6af022f2006-07-14 22:59:11 +000018#include "llvm/ADT/StringExtras.h"
Chris Lattnerbdff5f92006-07-18 17:18:03 +000019#include "llvm/Support/Debug.h"
20#include "llvm/Support/MathExtras.h"
Jeff Cohen615ed992005-01-22 18:50:10 +000021#include <algorithm>
Daniel Dunbar1a551802009-07-03 00:10:29 +000022#include <iostream>
Chris Lattner2e1f51b2004-08-01 05:59:33 +000023using namespace llvm;
24
Chris Lattner076efa72004-08-01 07:43:02 +000025static bool isIdentChar(char C) {
26 return (C >= 'a' && C <= 'z') ||
27 (C >= 'A' && C <= 'Z') ||
28 (C >= '0' && C <= '9') ||
29 C == '_';
30}
31
Chris Lattnerad8c5312007-07-18 04:51:57 +000032// This should be an anon namespace, this works around a GCC warning.
33namespace llvm {
Chris Lattnerb0b55e72005-01-22 17:32:42 +000034 struct AsmWriterOperand {
35 enum { isLiteralTextOperand, isMachineInstrOperand } OperandType;
36
37 /// Str - For isLiteralTextOperand, this IS the literal text. For
38 /// isMachineInstrOperand, this is the PrinterMethodName for the operand.
39 std::string Str;
40
41 /// MiOpNo - For isMachineInstrOperand, this is the operand number of the
42 /// machine instruction.
43 unsigned MIOpNo;
Chris Lattner04cadb32006-02-06 23:40:48 +000044
45 /// MiModifier - For isMachineInstrOperand, this is the modifier string for
46 /// an operand, specified with syntax like ${opname:modifier}.
47 std::string MiModifier;
Chris Lattnerb0b55e72005-01-22 17:32:42 +000048
Cedric Venet7caa2d02008-10-27 19:21:35 +000049 // To make VS STL happy
50 AsmWriterOperand():OperandType(isLiteralTextOperand) {}
Cedric Venet3bff2df2008-10-26 15:40:44 +000051
Dan Gohman38deef92009-02-18 16:37:45 +000052 explicit AsmWriterOperand(const std::string &LitStr)
Nate Begeman391c5d22005-11-30 18:54:35 +000053 : OperandType(isLiteralTextOperand), Str(LitStr) {}
Chris Lattnerb0b55e72005-01-22 17:32:42 +000054
Chris Lattner04cadb32006-02-06 23:40:48 +000055 AsmWriterOperand(const std::string &Printer, unsigned OpNo,
56 const std::string &Modifier)
57 : OperandType(isMachineInstrOperand), Str(Printer), MIOpNo(OpNo),
58 MiModifier(Modifier) {}
Chris Lattnerb0b55e72005-01-22 17:32:42 +000059
Chris Lattner870c0162005-01-22 18:38:13 +000060 bool operator!=(const AsmWriterOperand &Other) const {
61 if (OperandType != Other.OperandType || Str != Other.Str) return true;
62 if (OperandType == isMachineInstrOperand)
Chris Lattner04cadb32006-02-06 23:40:48 +000063 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier;
Chris Lattner870c0162005-01-22 18:38:13 +000064 return false;
65 }
Chris Lattner38c07512005-01-22 20:31:17 +000066 bool operator==(const AsmWriterOperand &Other) const {
67 return !operator!=(Other);
68 }
Chris Lattnerbdff5f92006-07-18 17:18:03 +000069
70 /// getCode - Return the code that prints this operand.
71 std::string getCode() const;
Chris Lattnerb0b55e72005-01-22 17:32:42 +000072 };
Chris Lattnerbdff5f92006-07-18 17:18:03 +000073}
Chris Lattnerb0b55e72005-01-22 17:32:42 +000074
Chris Lattnerbdff5f92006-07-18 17:18:03 +000075namespace llvm {
Jeff Cohend41b30d2006-11-05 19:31:28 +000076 class AsmWriterInst {
77 public:
Chris Lattnerb0b55e72005-01-22 17:32:42 +000078 std::vector<AsmWriterOperand> Operands;
Chris Lattner5765dba2005-01-22 17:40:38 +000079 const CodeGenInstruction *CGI;
Misha Brukman3da94ae2005-04-22 00:00:37 +000080
Chris Lattner5765dba2005-01-22 17:40:38 +000081 AsmWriterInst(const CodeGenInstruction &CGI, unsigned Variant);
Chris Lattner870c0162005-01-22 18:38:13 +000082
Chris Lattnerf8766682005-01-22 19:22:23 +000083 /// MatchesAllButOneOp - If this instruction is exactly identical to the
84 /// specified instruction except for one differing operand, return the
85 /// differing operand number. Otherwise return ~0.
86 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
Chris Lattner870c0162005-01-22 18:38:13 +000087
Chris Lattnerb0b55e72005-01-22 17:32:42 +000088 private:
89 void AddLiteralString(const std::string &Str) {
90 // If the last operand was already a literal text string, append this to
91 // it, otherwise add a new operand.
92 if (!Operands.empty() &&
93 Operands.back().OperandType == AsmWriterOperand::isLiteralTextOperand)
94 Operands.back().Str.append(Str);
95 else
96 Operands.push_back(AsmWriterOperand(Str));
97 }
98 };
99}
100
101
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000102std::string AsmWriterOperand::getCode() const {
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000103 if (OperandType == isLiteralTextOperand)
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000104 return "O << \"" + Str + "\"; ";
105
Chris Lattner1bf63612006-09-26 23:45:08 +0000106 std::string Result = Str + "(MI";
107 if (MIOpNo != ~0U)
108 Result += ", " + utostr(MIOpNo);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000109 if (!MiModifier.empty())
110 Result += ", \"" + MiModifier + '"';
111 return Result + "); ";
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000112}
113
114
115/// ParseAsmString - Parse the specified Instruction's AsmString into this
116/// AsmWriterInst.
117///
Chris Lattner5765dba2005-01-22 17:40:38 +0000118AsmWriterInst::AsmWriterInst(const CodeGenInstruction &CGI, unsigned Variant) {
119 this->CGI = &CGI;
Chris Lattnerb03b0802006-02-06 22:43:28 +0000120 unsigned CurVariant = ~0U; // ~0 if we are outside a {.|.|.} region, other #.
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000121
Chris Lattner1cf9d962006-02-01 19:12:23 +0000122 // NOTE: Any extensions to this code need to be mirrored in the
123 // AsmPrinter::printInlineAsm code that executes as compile time (assuming
124 // that inline asm strings should also get the new feature)!
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000125 const std::string &AsmString = CGI.AsmString;
126 std::string::size_type LastEmitted = 0;
127 while (LastEmitted != AsmString.size()) {
128 std::string::size_type DollarPos =
Nate Begeman817affc2008-03-17 07:26:14 +0000129 AsmString.find_first_of("${|}\\", LastEmitted);
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000130 if (DollarPos == std::string::npos) DollarPos = AsmString.size();
131
132 // Emit a constant string fragment.
133 if (DollarPos != LastEmitted) {
Chris Lattner7f3b28a2009-03-13 21:33:17 +0000134 if (CurVariant == Variant || CurVariant == ~0U) {
135 for (; LastEmitted != DollarPos; ++LastEmitted)
136 switch (AsmString[LastEmitted]) {
137 case '\n': AddLiteralString("\\n"); break;
138 case '\t': AddLiteralString("\\t"); break;
139 case '"': AddLiteralString("\\\""); break;
140 case '\\': AddLiteralString("\\\\"); break;
141 default:
142 AddLiteralString(std::string(1, AsmString[LastEmitted]));
143 break;
144 }
145 } else {
146 LastEmitted = DollarPos;
147 }
Nate Begeman817affc2008-03-17 07:26:14 +0000148 } else if (AsmString[DollarPos] == '\\') {
149 if (DollarPos+1 != AsmString.size() &&
150 (CurVariant == Variant || CurVariant == ~0U)) {
151 if (AsmString[DollarPos+1] == 'n') {
152 AddLiteralString("\\n");
153 } else if (AsmString[DollarPos+1] == 't') {
154 AddLiteralString("\\t");
155 } else if (std::string("${|}\\").find(AsmString[DollarPos+1])
156 != std::string::npos) {
157 AddLiteralString(std::string(1, AsmString[DollarPos+1]));
158 } else {
159 throw "Non-supported escaped character found in instruction '" +
160 CGI.TheDef->getName() + "'!";
161 }
162 LastEmitted = DollarPos+2;
163 continue;
164 }
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000165 } else if (AsmString[DollarPos] == '{') {
Chris Lattnerb03b0802006-02-06 22:43:28 +0000166 if (CurVariant != ~0U)
Jeff Cohen00b168892005-07-27 06:12:32 +0000167 throw "Nested variants found for instruction '" +
Chris Lattner3e3def92005-07-15 22:43:04 +0000168 CGI.TheDef->getName() + "'!";
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000169 LastEmitted = DollarPos+1;
Chris Lattnerb03b0802006-02-06 22:43:28 +0000170 CurVariant = 0; // We are now inside of the variant!
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000171 } else if (AsmString[DollarPos] == '|') {
Chris Lattnerb03b0802006-02-06 22:43:28 +0000172 if (CurVariant == ~0U)
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000173 throw "'|' character found outside of a variant in instruction '"
Chris Lattner3e3def92005-07-15 22:43:04 +0000174 + CGI.TheDef->getName() + "'!";
Chris Lattnerb03b0802006-02-06 22:43:28 +0000175 ++CurVariant;
176 ++LastEmitted;
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000177 } else if (AsmString[DollarPos] == '}') {
Chris Lattnerb03b0802006-02-06 22:43:28 +0000178 if (CurVariant == ~0U)
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000179 throw "'}' character found outside of a variant in instruction '"
Chris Lattner3e3def92005-07-15 22:43:04 +0000180 + CGI.TheDef->getName() + "'!";
Chris Lattnerb03b0802006-02-06 22:43:28 +0000181 ++LastEmitted;
182 CurVariant = ~0U;
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000183 } else if (DollarPos+1 != AsmString.size() &&
184 AsmString[DollarPos+1] == '$') {
Chris Lattnerb03b0802006-02-06 22:43:28 +0000185 if (CurVariant == Variant || CurVariant == ~0U)
186 AddLiteralString("$"); // "$$" -> $
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000187 LastEmitted = DollarPos+2;
188 } else {
189 // Get the name of the variable.
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000190 std::string::size_type VarEnd = DollarPos+1;
Nate Begemanafc54562005-07-14 22:50:30 +0000191
192 // handle ${foo}bar as $foo by detecting whether the character following
193 // the dollar sign is a curly brace. If so, advance VarEnd and DollarPos
194 // so the variable name does not contain the leading curly brace.
195 bool hasCurlyBraces = false;
196 if (VarEnd < AsmString.size() && '{' == AsmString[VarEnd]) {
197 hasCurlyBraces = true;
198 ++DollarPos;
199 ++VarEnd;
200 }
201
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000202 while (VarEnd < AsmString.size() && isIdentChar(AsmString[VarEnd]))
203 ++VarEnd;
204 std::string VarName(AsmString.begin()+DollarPos+1,
205 AsmString.begin()+VarEnd);
Nate Begemanafc54562005-07-14 22:50:30 +0000206
Chris Lattner04cadb32006-02-06 23:40:48 +0000207 // Modifier - Support ${foo:modifier} syntax, where "modifier" is passed
Chris Lattner1bf63612006-09-26 23:45:08 +0000208 // into printOperand. Also support ${:feature}, which is passed into
Chris Lattner16f046a2006-09-26 23:47:10 +0000209 // PrintSpecial.
Chris Lattner04cadb32006-02-06 23:40:48 +0000210 std::string Modifier;
211
Nate Begemanafc54562005-07-14 22:50:30 +0000212 // In order to avoid starting the next string at the terminating curly
213 // brace, advance the end position past it if we found an opening curly
214 // brace.
215 if (hasCurlyBraces) {
216 if (VarEnd >= AsmString.size())
217 throw "Reached end of string before terminating curly brace in '"
Chris Lattner3e3def92005-07-15 22:43:04 +0000218 + CGI.TheDef->getName() + "'";
Chris Lattner04cadb32006-02-06 23:40:48 +0000219
220 // Look for a modifier string.
221 if (AsmString[VarEnd] == ':') {
222 ++VarEnd;
223 if (VarEnd >= AsmString.size())
224 throw "Reached end of string before terminating curly brace in '"
225 + CGI.TheDef->getName() + "'";
226
227 unsigned ModifierStart = VarEnd;
228 while (VarEnd < AsmString.size() && isIdentChar(AsmString[VarEnd]))
229 ++VarEnd;
230 Modifier = std::string(AsmString.begin()+ModifierStart,
231 AsmString.begin()+VarEnd);
232 if (Modifier.empty())
233 throw "Bad operand modifier name in '"+ CGI.TheDef->getName() + "'";
234 }
235
Nate Begemanafc54562005-07-14 22:50:30 +0000236 if (AsmString[VarEnd] != '}')
Chris Lattnerb03b0802006-02-06 22:43:28 +0000237 throw "Variable name beginning with '{' did not end with '}' in '"
Chris Lattner3e3def92005-07-15 22:43:04 +0000238 + CGI.TheDef->getName() + "'";
Nate Begemanafc54562005-07-14 22:50:30 +0000239 ++VarEnd;
240 }
Chris Lattner1bf63612006-09-26 23:45:08 +0000241 if (VarName.empty() && Modifier.empty())
Jeff Cohen00b168892005-07-27 06:12:32 +0000242 throw "Stray '$' in '" + CGI.TheDef->getName() +
Chris Lattner3e3def92005-07-15 22:43:04 +0000243 "' asm string, maybe you want $$?";
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000244
Chris Lattner1bf63612006-09-26 23:45:08 +0000245 if (VarName.empty()) {
Chris Lattner16f046a2006-09-26 23:47:10 +0000246 // Just a modifier, pass this into PrintSpecial.
247 Operands.push_back(AsmWriterOperand("PrintSpecial", ~0U, Modifier));
Chris Lattner1bf63612006-09-26 23:45:08 +0000248 } else {
249 // Otherwise, normal operand.
250 unsigned OpNo = CGI.getOperandNamed(VarName);
251 CodeGenInstruction::OperandInfo OpInfo = CGI.OperandList[OpNo];
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000252
Chris Lattnerf64f9a42006-11-15 23:23:02 +0000253 if (CurVariant == Variant || CurVariant == ~0U) {
254 unsigned MIOp = OpInfo.MIOperandNo;
Chris Lattner1bf63612006-09-26 23:45:08 +0000255 Operands.push_back(AsmWriterOperand(OpInfo.PrinterMethodName, MIOp,
256 Modifier));
Chris Lattnerf64f9a42006-11-15 23:23:02 +0000257 }
Chris Lattner1bf63612006-09-26 23:45:08 +0000258 }
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000259 LastEmitted = VarEnd;
260 }
261 }
262
263 AddLiteralString("\\n");
264}
265
Chris Lattnerf8766682005-01-22 19:22:23 +0000266/// MatchesAllButOneOp - If this instruction is exactly identical to the
267/// specified instruction except for one differing operand, return the differing
268/// operand number. If more than one operand mismatches, return ~1, otherwise
269/// if the instructions are identical return ~0.
270unsigned AsmWriterInst::MatchesAllButOneOp(const AsmWriterInst &Other)const{
271 if (Operands.size() != Other.Operands.size()) return ~1;
Chris Lattner870c0162005-01-22 18:38:13 +0000272
273 unsigned MismatchOperand = ~0U;
274 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +0000275 if (Operands[i] != Other.Operands[i]) {
Chris Lattnerf8766682005-01-22 19:22:23 +0000276 if (MismatchOperand != ~0U) // Already have one mismatch?
277 return ~1U;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000278 else
Chris Lattner870c0162005-01-22 18:38:13 +0000279 MismatchOperand = i;
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +0000280 }
Chris Lattner870c0162005-01-22 18:38:13 +0000281 }
282 return MismatchOperand;
283}
284
Chris Lattner38c07512005-01-22 20:31:17 +0000285static void PrintCases(std::vector<std::pair<std::string,
Daniel Dunbar1a551802009-07-03 00:10:29 +0000286 AsmWriterOperand> > &OpsToPrint, raw_ostream &O) {
Chris Lattner38c07512005-01-22 20:31:17 +0000287 O << " case " << OpsToPrint.back().first << ": ";
288 AsmWriterOperand TheOp = OpsToPrint.back().second;
289 OpsToPrint.pop_back();
290
291 // Check to see if any other operands are identical in this list, and if so,
292 // emit a case label for them.
293 for (unsigned i = OpsToPrint.size(); i != 0; --i)
294 if (OpsToPrint[i-1].second == TheOp) {
295 O << "\n case " << OpsToPrint[i-1].first << ": ";
296 OpsToPrint.erase(OpsToPrint.begin()+i-1);
297 }
298
299 // Finally, emit the code.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000300 O << TheOp.getCode();
Chris Lattner38c07512005-01-22 20:31:17 +0000301 O << "break;\n";
302}
303
Chris Lattner870c0162005-01-22 18:38:13 +0000304
305/// EmitInstructions - Emit the last instruction in the vector and any other
306/// instructions that are suitably similar to it.
307static void EmitInstructions(std::vector<AsmWriterInst> &Insts,
Daniel Dunbar1a551802009-07-03 00:10:29 +0000308 raw_ostream &O) {
Chris Lattner870c0162005-01-22 18:38:13 +0000309 AsmWriterInst FirstInst = Insts.back();
310 Insts.pop_back();
311
312 std::vector<AsmWriterInst> SimilarInsts;
313 unsigned DifferingOperand = ~0;
314 for (unsigned i = Insts.size(); i != 0; --i) {
Chris Lattnerf8766682005-01-22 19:22:23 +0000315 unsigned DiffOp = Insts[i-1].MatchesAllButOneOp(FirstInst);
316 if (DiffOp != ~1U) {
Chris Lattner870c0162005-01-22 18:38:13 +0000317 if (DifferingOperand == ~0U) // First match!
318 DifferingOperand = DiffOp;
319
320 // If this differs in the same operand as the rest of the instructions in
321 // this class, move it to the SimilarInsts list.
Chris Lattnerf8766682005-01-22 19:22:23 +0000322 if (DifferingOperand == DiffOp || DiffOp == ~0U) {
Chris Lattner870c0162005-01-22 18:38:13 +0000323 SimilarInsts.push_back(Insts[i-1]);
324 Insts.erase(Insts.begin()+i-1);
325 }
326 }
327 }
328
Chris Lattnera1e8a802006-05-01 17:01:17 +0000329 O << " case " << FirstInst.CGI->Namespace << "::"
Chris Lattner870c0162005-01-22 18:38:13 +0000330 << FirstInst.CGI->TheDef->getName() << ":\n";
331 for (unsigned i = 0, e = SimilarInsts.size(); i != e; ++i)
Chris Lattnera1e8a802006-05-01 17:01:17 +0000332 O << " case " << SimilarInsts[i].CGI->Namespace << "::"
Chris Lattner870c0162005-01-22 18:38:13 +0000333 << SimilarInsts[i].CGI->TheDef->getName() << ":\n";
334 for (unsigned i = 0, e = FirstInst.Operands.size(); i != e; ++i) {
335 if (i != DifferingOperand) {
336 // If the operand is the same for all instructions, just print it.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000337 O << " " << FirstInst.Operands[i].getCode();
Chris Lattner870c0162005-01-22 18:38:13 +0000338 } else {
339 // If this is the operand that varies between all of the instructions,
340 // emit a switch for just this operand now.
341 O << " switch (MI->getOpcode()) {\n";
Chris Lattner38c07512005-01-22 20:31:17 +0000342 std::vector<std::pair<std::string, AsmWriterOperand> > OpsToPrint;
Chris Lattnera1e8a802006-05-01 17:01:17 +0000343 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace + "::" +
Chris Lattner38c07512005-01-22 20:31:17 +0000344 FirstInst.CGI->TheDef->getName(),
345 FirstInst.Operands[i]));
Misha Brukman3da94ae2005-04-22 00:00:37 +0000346
Chris Lattner870c0162005-01-22 18:38:13 +0000347 for (unsigned si = 0, e = SimilarInsts.size(); si != e; ++si) {
Chris Lattner38c07512005-01-22 20:31:17 +0000348 AsmWriterInst &AWI = SimilarInsts[si];
Chris Lattnera1e8a802006-05-01 17:01:17 +0000349 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace+"::"+
Chris Lattner38c07512005-01-22 20:31:17 +0000350 AWI.CGI->TheDef->getName(),
351 AWI.Operands[i]));
Chris Lattner870c0162005-01-22 18:38:13 +0000352 }
Chris Lattner38c07512005-01-22 20:31:17 +0000353 std::reverse(OpsToPrint.begin(), OpsToPrint.end());
354 while (!OpsToPrint.empty())
355 PrintCases(OpsToPrint, O);
Chris Lattner870c0162005-01-22 18:38:13 +0000356 O << " }";
357 }
358 O << "\n";
359 }
360
361 O << " break;\n";
362}
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000363
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000364void AsmWriterEmitter::
365FindUniqueOperandCommands(std::vector<std::string> &UniqueOperandCommands,
Chris Lattner96c1ade2006-07-18 18:28:27 +0000366 std::vector<unsigned> &InstIdxs,
367 std::vector<unsigned> &InstOpsUsed) const {
Chris Lattner195bb4a2006-07-18 19:27:30 +0000368 InstIdxs.assign(NumberedInstructions.size(), ~0U);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000369
370 // This vector parallels UniqueOperandCommands, keeping track of which
371 // instructions each case are used for. It is a comma separated string of
372 // enums.
373 std::vector<std::string> InstrsForCase;
374 InstrsForCase.resize(UniqueOperandCommands.size());
Chris Lattner96c1ade2006-07-18 18:28:27 +0000375 InstOpsUsed.assign(UniqueOperandCommands.size(), 0);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000376
377 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
378 const AsmWriterInst *Inst = getAsmWriterInstByID(i);
Dan Gohman44066042008-07-01 00:05:16 +0000379 if (Inst == 0) continue; // PHI, INLINEASM, DBG_LABEL, etc.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000380
381 std::string Command;
Chris Lattnerb8462862006-07-18 17:56:07 +0000382 if (Inst->Operands.empty())
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000383 continue; // Instruction already done.
Chris Lattner191dd1f2006-07-18 17:50:22 +0000384
Chris Lattnerb8462862006-07-18 17:56:07 +0000385 Command = " " + Inst->Operands[0].getCode() + "\n";
Chris Lattner191dd1f2006-07-18 17:50:22 +0000386
387 // If this is the last operand, emit a return.
Chris Lattnerb8462862006-07-18 17:56:07 +0000388 if (Inst->Operands.size() == 1)
Chris Lattner191dd1f2006-07-18 17:50:22 +0000389 Command += " return true;\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000390
391 // Check to see if we already have 'Command' in UniqueOperandCommands.
392 // If not, add it.
393 bool FoundIt = false;
394 for (unsigned idx = 0, e = UniqueOperandCommands.size(); idx != e; ++idx)
395 if (UniqueOperandCommands[idx] == Command) {
396 InstIdxs[i] = idx;
397 InstrsForCase[idx] += ", ";
398 InstrsForCase[idx] += Inst->CGI->TheDef->getName();
399 FoundIt = true;
400 break;
401 }
402 if (!FoundIt) {
403 InstIdxs[i] = UniqueOperandCommands.size();
404 UniqueOperandCommands.push_back(Command);
405 InstrsForCase.push_back(Inst->CGI->TheDef->getName());
Chris Lattner96c1ade2006-07-18 18:28:27 +0000406
407 // This command matches one operand so far.
408 InstOpsUsed.push_back(1);
409 }
410 }
411
412 // For each entry of UniqueOperandCommands, there is a set of instructions
413 // that uses it. If the next command of all instructions in the set are
414 // identical, fold it into the command.
415 for (unsigned CommandIdx = 0, e = UniqueOperandCommands.size();
416 CommandIdx != e; ++CommandIdx) {
417
418 for (unsigned Op = 1; ; ++Op) {
419 // Scan for the first instruction in the set.
420 std::vector<unsigned>::iterator NIT =
421 std::find(InstIdxs.begin(), InstIdxs.end(), CommandIdx);
422 if (NIT == InstIdxs.end()) break; // No commonality.
423
424 // If this instruction has no more operands, we isn't anything to merge
425 // into this command.
426 const AsmWriterInst *FirstInst =
427 getAsmWriterInstByID(NIT-InstIdxs.begin());
428 if (!FirstInst || FirstInst->Operands.size() == Op)
429 break;
430
431 // Otherwise, scan to see if all of the other instructions in this command
432 // set share the operand.
433 bool AllSame = true;
434
Chris Lattner96c1ade2006-07-18 18:28:27 +0000435 for (NIT = std::find(NIT+1, InstIdxs.end(), CommandIdx);
436 NIT != InstIdxs.end();
437 NIT = std::find(NIT+1, InstIdxs.end(), CommandIdx)) {
438 // Okay, found another instruction in this command set. If the operand
439 // matches, we're ok, otherwise bail out.
440 const AsmWriterInst *OtherInst =
441 getAsmWriterInstByID(NIT-InstIdxs.begin());
442 if (!OtherInst || OtherInst->Operands.size() == Op ||
443 OtherInst->Operands[Op] != FirstInst->Operands[Op]) {
444 AllSame = false;
445 break;
446 }
447 }
448 if (!AllSame) break;
449
450 // Okay, everything in this command set has the same next operand. Add it
451 // to UniqueOperandCommands and remember that it was consumed.
452 std::string Command = " " + FirstInst->Operands[Op].getCode() + "\n";
453
454 // If this is the last operand, emit a return after the code.
455 if (FirstInst->Operands.size() == Op+1)
456 Command += " return true;\n";
457
458 UniqueOperandCommands[CommandIdx] += Command;
459 InstOpsUsed[CommandIdx]++;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000460 }
461 }
462
463 // Prepend some of the instructions each case is used for onto the case val.
464 for (unsigned i = 0, e = InstrsForCase.size(); i != e; ++i) {
465 std::string Instrs = InstrsForCase[i];
466 if (Instrs.size() > 70) {
467 Instrs.erase(Instrs.begin()+70, Instrs.end());
468 Instrs += "...";
469 }
470
471 if (!Instrs.empty())
472 UniqueOperandCommands[i] = " // " + Instrs + "\n" +
473 UniqueOperandCommands[i];
474 }
475}
476
477
478
Daniel Dunbar1a551802009-07-03 00:10:29 +0000479void AsmWriterEmitter::run(raw_ostream &O) {
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000480 EmitSourceFileHeader("Assembly Writer Source Fragment", O);
481
482 CodeGenTarget Target;
Chris Lattner175580c2004-08-14 22:50:53 +0000483 Record *AsmWriter = Target.getAsmWriter();
Chris Lattner953c6fe2004-10-03 20:19:02 +0000484 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
485 unsigned Variant = AsmWriter->getValueAsInt("Variant");
Chris Lattner175580c2004-08-14 22:50:53 +0000486
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000487 O <<
488 "/// printInstruction - This method is automatically generated by tablegen\n"
489 "/// from the instruction set description. This method returns true if the\n"
490 "/// machine instruction was sufficiently described to print it, otherwise\n"
491 "/// it returns false.\n"
Chris Lattner953c6fe2004-10-03 20:19:02 +0000492 "bool " << Target.getName() << ClassName
Chris Lattner175580c2004-08-14 22:50:53 +0000493 << "::printInstruction(const MachineInstr *MI) {\n";
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000494
Chris Lattner5765dba2005-01-22 17:40:38 +0000495 std::vector<AsmWriterInst> Instructions;
496
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000497 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
498 E = Target.inst_end(); I != E; ++I)
Chris Lattner5765dba2005-01-22 17:40:38 +0000499 if (!I->second.AsmString.empty())
500 Instructions.push_back(AsmWriterInst(I->second, Variant));
Chris Lattner076efa72004-08-01 07:43:02 +0000501
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000502 // Get the instruction numbering.
Chris Lattner0cfcc1e2006-01-27 02:10:50 +0000503 Target.getInstructionsByEnumValue(NumberedInstructions);
504
Chris Lattner6af022f2006-07-14 22:59:11 +0000505 // Compute the CodeGenInstruction -> AsmWriterInst mapping. Note that not
506 // all machine instructions are necessarily being printed, so there may be
507 // target instructions not in this map.
Chris Lattner6af022f2006-07-14 22:59:11 +0000508 for (unsigned i = 0, e = Instructions.size(); i != e; ++i)
509 CGIAWIMap.insert(std::make_pair(Instructions[i].CGI, &Instructions[i]));
Chris Lattnerf8766682005-01-22 19:22:23 +0000510
Chris Lattner6af022f2006-07-14 22:59:11 +0000511 // Build an aggregate string, and build a table of offsets into it.
512 std::map<std::string, unsigned> StringOffset;
513 std::string AggregateString;
Chris Lattner259bda42006-09-27 16:44:09 +0000514 AggregateString.push_back(0); // "\0"
515 AggregateString.push_back(0); // "\0"
Chris Lattner6af022f2006-07-14 22:59:11 +0000516
Chris Lattner259bda42006-09-27 16:44:09 +0000517 /// OpcodeInfo - This encodes the index of the string to use for the first
Chris Lattner55616402006-07-18 17:32:27 +0000518 /// chunk of the output as well as indices used for operand printing.
519 std::vector<unsigned> OpcodeInfo;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000520
Chris Lattner55616402006-07-18 17:32:27 +0000521 unsigned MaxStringIdx = 0;
Chris Lattner6af022f2006-07-14 22:59:11 +0000522 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
523 AsmWriterInst *AWI = CGIAWIMap[NumberedInstructions[i]];
524 unsigned Idx;
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000525 if (AWI == 0) {
Chris Lattner6af022f2006-07-14 22:59:11 +0000526 // Something not handled by the asmwriter printer.
527 Idx = 0;
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000528 } else if (AWI->Operands[0].OperandType !=
529 AsmWriterOperand::isLiteralTextOperand ||
530 AWI->Operands[0].Str.empty()) {
531 // Something handled by the asmwriter printer, but with no leading string.
532 Idx = 1;
Chris Lattner6af022f2006-07-14 22:59:11 +0000533 } else {
534 unsigned &Entry = StringOffset[AWI->Operands[0].Str];
535 if (Entry == 0) {
536 // Add the string to the aggregate if this is the first time found.
Chris Lattner55616402006-07-18 17:32:27 +0000537 MaxStringIdx = Entry = AggregateString.size();
Chris Lattner6af022f2006-07-14 22:59:11 +0000538 std::string Str = AWI->Operands[0].Str;
539 UnescapeString(Str);
540 AggregateString += Str;
541 AggregateString += '\0';
Chris Lattnerf8766682005-01-22 19:22:23 +0000542 }
Chris Lattner6af022f2006-07-14 22:59:11 +0000543 Idx = Entry;
Chris Lattner6af022f2006-07-14 22:59:11 +0000544
545 // Nuke the string from the operand list. It is now handled!
546 AWI->Operands.erase(AWI->Operands.begin());
Chris Lattnerf8766682005-01-22 19:22:23 +0000547 }
Chris Lattner55616402006-07-18 17:32:27 +0000548 OpcodeInfo.push_back(Idx);
Chris Lattnerf8766682005-01-22 19:22:23 +0000549 }
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000550
Chris Lattner55616402006-07-18 17:32:27 +0000551 // Figure out how many bits we used for the string index.
Nate Begeman59d28132008-04-09 16:24:11 +0000552 unsigned AsmStrBits = Log2_32_Ceil(MaxStringIdx+1);
Chris Lattner55616402006-07-18 17:32:27 +0000553
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000554 // To reduce code size, we compactify common instructions into a few bits
555 // in the opcode-indexed table.
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000556 unsigned BitsLeft = 32-AsmStrBits;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000557
558 std::vector<std::vector<std::string> > TableDrivenOperandPrinters;
559
Chris Lattnerb8462862006-07-18 17:56:07 +0000560 bool isFirst = true;
561 while (1) {
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000562 std::vector<std::string> UniqueOperandCommands;
563
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000564 // For the first operand check, add a default value for instructions with
565 // just opcode strings to use.
Chris Lattnerb8462862006-07-18 17:56:07 +0000566 if (isFirst) {
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000567 UniqueOperandCommands.push_back(" return true;\n");
Chris Lattnerb8462862006-07-18 17:56:07 +0000568 isFirst = false;
569 }
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000570
571 std::vector<unsigned> InstIdxs;
Chris Lattner96c1ade2006-07-18 18:28:27 +0000572 std::vector<unsigned> NumInstOpsHandled;
573 FindUniqueOperandCommands(UniqueOperandCommands, InstIdxs,
574 NumInstOpsHandled);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000575
576 // If we ran out of operands to print, we're done.
577 if (UniqueOperandCommands.empty()) break;
578
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000579 // Compute the number of bits we need to represent these cases, this is
580 // ceil(log2(numentries)).
581 unsigned NumBits = Log2_32_Ceil(UniqueOperandCommands.size());
582
583 // If we don't have enough bits for this operand, don't include it.
584 if (NumBits > BitsLeft) {
Bill Wendlingf5da1332006-12-07 22:21:48 +0000585 DOUT << "Not enough bits to densely encode " << NumBits
586 << " more bits\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000587 break;
588 }
589
590 // Otherwise, we can include this in the initial lookup table. Add it in.
591 BitsLeft -= NumBits;
592 for (unsigned i = 0, e = InstIdxs.size(); i != e; ++i)
Chris Lattner195bb4a2006-07-18 19:27:30 +0000593 if (InstIdxs[i] != ~0U)
594 OpcodeInfo[i] |= InstIdxs[i] << (BitsLeft+AsmStrBits);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000595
Chris Lattnerb8462862006-07-18 17:56:07 +0000596 // Remove the info about this operand.
597 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
598 if (AsmWriterInst *Inst = getAsmWriterInstByID(i))
Chris Lattner96c1ade2006-07-18 18:28:27 +0000599 if (!Inst->Operands.empty()) {
600 unsigned NumOps = NumInstOpsHandled[InstIdxs[i]];
Chris Lattner0a012122006-07-18 19:06:01 +0000601 assert(NumOps <= Inst->Operands.size() &&
602 "Can't remove this many ops!");
Chris Lattner96c1ade2006-07-18 18:28:27 +0000603 Inst->Operands.erase(Inst->Operands.begin(),
604 Inst->Operands.begin()+NumOps);
605 }
Chris Lattnerb8462862006-07-18 17:56:07 +0000606 }
607
608 // Remember the handlers for this set of operands.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000609 TableDrivenOperandPrinters.push_back(UniqueOperandCommands);
610 }
611
612
613
Chris Lattner55616402006-07-18 17:32:27 +0000614 O<<" static const unsigned OpInfo[] = {\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000615 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000616 O << " " << OpcodeInfo[i] << "U,\t// "
Chris Lattner55616402006-07-18 17:32:27 +0000617 << NumberedInstructions[i]->TheDef->getName() << "\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000618 }
619 // Add a dummy entry so the array init doesn't end with a comma.
Chris Lattner55616402006-07-18 17:32:27 +0000620 O << " 0U\n";
Chris Lattner6af022f2006-07-14 22:59:11 +0000621 O << " };\n\n";
622
623 // Emit the string itself.
624 O << " const char *AsmStrs = \n \"";
625 unsigned CharsPrinted = 0;
626 EscapeString(AggregateString);
627 for (unsigned i = 0, e = AggregateString.size(); i != e; ++i) {
628 if (CharsPrinted > 70) {
629 O << "\"\n \"";
630 CharsPrinted = 0;
631 }
632 O << AggregateString[i];
633 ++CharsPrinted;
634
635 // Print escape sequences all together.
636 if (AggregateString[i] == '\\') {
637 assert(i+1 < AggregateString.size() && "Incomplete escape sequence!");
638 if (isdigit(AggregateString[i+1])) {
639 assert(isdigit(AggregateString[i+2]) && isdigit(AggregateString[i+3]) &&
640 "Expected 3 digit octal escape!");
641 O << AggregateString[++i];
642 O << AggregateString[++i];
643 O << AggregateString[++i];
644 CharsPrinted += 3;
645 } else {
646 O << AggregateString[++i];
647 ++CharsPrinted;
648 }
649 }
650 }
651 O << "\";\n\n";
652
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +0000653 O << " processDebugLoc(MI->getDebugLoc());\n\n";
Bill Wendlingcb819f12009-02-18 23:12:06 +0000654
Chris Lattner5b842c32009-06-19 23:57:53 +0000655 O << "\n#ifndef NO_ASM_WRITER_BOILERPLATE\n";
656
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000657 O << " if (MI->getOpcode() == TargetInstrInfo::INLINEASM) {\n"
Evan Cheng4eecdeb2008-02-02 08:39:46 +0000658 << " O << \"\\t\";\n"
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000659 << " printInlineAsm(MI);\n"
660 << " return true;\n"
Dan Gohman44066042008-07-01 00:05:16 +0000661 << " } else if (MI->isLabel()) {\n"
Jim Laskeya683f9b2007-01-26 17:29:20 +0000662 << " printLabel(MI);\n"
663 << " return true;\n"
Evan Chenga844bde2008-02-02 04:07:54 +0000664 << " } else if (MI->getOpcode() == TargetInstrInfo::DECLARE) {\n"
665 << " printDeclare(MI);\n"
666 << " return true;\n"
Evan Chengda47e6e2008-03-15 00:03:38 +0000667 << " } else if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {\n"
668 << " printImplicitDef(MI);\n"
669 << " return true;\n"
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000670 << " }\n\n";
Chris Lattner5b842c32009-06-19 23:57:53 +0000671
672 O << "\n#endif\n";
673
Evan Cheng4eecdeb2008-02-02 08:39:46 +0000674 O << " O << \"\\t\";\n\n";
675
Chris Lattner6af022f2006-07-14 22:59:11 +0000676 O << " // Emit the opcode for the instruction.\n"
Chris Lattner55616402006-07-18 17:32:27 +0000677 << " unsigned Bits = OpInfo[MI->getOpcode()];\n"
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000678 << " if (Bits == 0) return false;\n"
Chris Lattner55616402006-07-18 17:32:27 +0000679 << " O << AsmStrs+(Bits & " << (1 << AsmStrBits)-1 << ");\n\n";
Chris Lattnerf8766682005-01-22 19:22:23 +0000680
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000681 // Output the table driven operand information.
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000682 BitsLeft = 32-AsmStrBits;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000683 for (unsigned i = 0, e = TableDrivenOperandPrinters.size(); i != e; ++i) {
684 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i];
685
686 // Compute the number of bits we need to represent these cases, this is
687 // ceil(log2(numentries)).
688 unsigned NumBits = Log2_32_Ceil(Commands.size());
689 assert(NumBits <= BitsLeft && "consistency error");
690
691 // Emit code to extract this field from Bits.
692 BitsLeft -= NumBits;
693
694 O << "\n // Fragment " << i << " encoded into " << NumBits
Chris Lattnere7a589d2006-07-18 17:43:54 +0000695 << " bits for " << Commands.size() << " unique commands.\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000696
Chris Lattner96c1ade2006-07-18 18:28:27 +0000697 if (Commands.size() == 2) {
Chris Lattnere7a589d2006-07-18 17:43:54 +0000698 // Emit two possibilitys with if/else.
699 O << " if ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
700 << ((1 << NumBits)-1) << ") {\n"
701 << Commands[1]
702 << " } else {\n"
703 << Commands[0]
704 << " }\n\n";
705 } else {
706 O << " switch ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
707 << ((1 << NumBits)-1) << ") {\n"
708 << " default: // unreachable.\n";
709
710 // Print out all the cases.
711 for (unsigned i = 0, e = Commands.size(); i != e; ++i) {
712 O << " case " << i << ":\n";
713 O << Commands[i];
714 O << " break;\n";
715 }
716 O << " }\n\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000717 }
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000718 }
719
Chris Lattnerb8462862006-07-18 17:56:07 +0000720 // Okay, delete instructions with no operand info left.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000721 for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
722 // Entire instruction has been emitted?
723 AsmWriterInst &Inst = Instructions[i];
Chris Lattnerb8462862006-07-18 17:56:07 +0000724 if (Inst.Operands.empty()) {
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000725 Instructions.erase(Instructions.begin()+i);
Chris Lattnerb8462862006-07-18 17:56:07 +0000726 --i; --e;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000727 }
728 }
729
730
731 // Because this is a vector, we want to emit from the end. Reverse all of the
Chris Lattner870c0162005-01-22 18:38:13 +0000732 // elements in the vector.
733 std::reverse(Instructions.begin(), Instructions.end());
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000734
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000735 if (!Instructions.empty()) {
736 // Find the opcode # of inline asm.
737 O << " switch (MI->getOpcode()) {\n";
738 while (!Instructions.empty())
739 EmitInstructions(Instructions, O);
Chris Lattner870c0162005-01-22 18:38:13 +0000740
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000741 O << " }\n";
Chris Lattner0a012122006-07-18 19:06:01 +0000742 O << " return true;\n";
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000743 }
744
Chris Lattner0a012122006-07-18 19:06:01 +0000745 O << "}\n";
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000746}