blob: 933f9210f82e4819dc26e228eee8a3c6e0e6f232 [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>
David Greeneab9238e2009-07-17 14:24:46 +000022#include <sstream>
Daniel Dunbar1a551802009-07-03 00:10:29 +000023#include <iostream>
Chris Lattner2e1f51b2004-08-01 05:59:33 +000024using namespace llvm;
25
Chris Lattner076efa72004-08-01 07:43:02 +000026static bool isIdentChar(char C) {
27 return (C >= 'a' && C <= 'z') ||
28 (C >= 'A' && C <= 'Z') ||
29 (C >= '0' && C <= '9') ||
30 C == '_';
31}
32
Chris Lattnerad8c5312007-07-18 04:51:57 +000033// This should be an anon namespace, this works around a GCC warning.
34namespace llvm {
Chris Lattnerb0b55e72005-01-22 17:32:42 +000035 struct AsmWriterOperand {
David Greeneab9238e2009-07-17 14:24:46 +000036 enum OpType {
37 isLiteralTextOperand,
38 isMachineInstrOperand,
39 isLiteralStatementOperand
40 } OperandType;
Chris Lattnerb0b55e72005-01-22 17:32:42 +000041
42 /// Str - For isLiteralTextOperand, this IS the literal text. For
43 /// isMachineInstrOperand, this is the PrinterMethodName for the operand.
44 std::string Str;
45
46 /// MiOpNo - For isMachineInstrOperand, this is the operand number of the
47 /// machine instruction.
48 unsigned MIOpNo;
Chris Lattner04cadb32006-02-06 23:40:48 +000049
50 /// MiModifier - For isMachineInstrOperand, this is the modifier string for
51 /// an operand, specified with syntax like ${opname:modifier}.
52 std::string MiModifier;
Chris Lattnerb0b55e72005-01-22 17:32:42 +000053
Cedric Venet7caa2d02008-10-27 19:21:35 +000054 // To make VS STL happy
David Greeneab9238e2009-07-17 14:24:46 +000055 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {}
Cedric Venet3bff2df2008-10-26 15:40:44 +000056
David Greeneab9238e2009-07-17 14:24:46 +000057 AsmWriterOperand(const std::string &LitStr,
58 OpType op = isLiteralTextOperand)
59 : OperandType(op), Str(LitStr) {}
Chris Lattnerb0b55e72005-01-22 17:32:42 +000060
Chris Lattner04cadb32006-02-06 23:40:48 +000061 AsmWriterOperand(const std::string &Printer, unsigned OpNo,
David Greeneab9238e2009-07-17 14:24:46 +000062 const std::string &Modifier,
63 OpType op = isMachineInstrOperand)
64 : OperandType(op), Str(Printer), MIOpNo(OpNo),
Chris Lattner04cadb32006-02-06 23:40:48 +000065 MiModifier(Modifier) {}
Chris Lattnerb0b55e72005-01-22 17:32:42 +000066
Chris Lattner870c0162005-01-22 18:38:13 +000067 bool operator!=(const AsmWriterOperand &Other) const {
68 if (OperandType != Other.OperandType || Str != Other.Str) return true;
69 if (OperandType == isMachineInstrOperand)
Chris Lattner04cadb32006-02-06 23:40:48 +000070 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier;
Chris Lattner870c0162005-01-22 18:38:13 +000071 return false;
72 }
Chris Lattner38c07512005-01-22 20:31:17 +000073 bool operator==(const AsmWriterOperand &Other) const {
74 return !operator!=(Other);
75 }
Chris Lattnerbdff5f92006-07-18 17:18:03 +000076
77 /// getCode - Return the code that prints this operand.
78 std::string getCode() const;
Chris Lattnerb0b55e72005-01-22 17:32:42 +000079 };
Chris Lattnerbdff5f92006-07-18 17:18:03 +000080}
Chris Lattnerb0b55e72005-01-22 17:32:42 +000081
Chris Lattnerbdff5f92006-07-18 17:18:03 +000082namespace llvm {
Jeff Cohend41b30d2006-11-05 19:31:28 +000083 class AsmWriterInst {
84 public:
Chris Lattnerb0b55e72005-01-22 17:32:42 +000085 std::vector<AsmWriterOperand> Operands;
Chris Lattner5765dba2005-01-22 17:40:38 +000086 const CodeGenInstruction *CGI;
Misha Brukman3da94ae2005-04-22 00:00:37 +000087
David Greeneab9238e2009-07-17 14:24:46 +000088 /// MAX_GROUP_NESTING_LEVEL - The maximum number of group nesting
89 /// levels we ever expect to see in an asm operand.
90 static const int MAX_GROUP_NESTING_LEVEL = 10;
91
92 /// GroupLevel - The level of nesting of the current operand
93 /// group, such as [reg + (reg + offset)]. -1 means we are not in
94 /// a group.
95 int GroupLevel;
96
97 /// GroupDelim - Remember the delimeter for a group operand.
98 char GroupDelim[MAX_GROUP_NESTING_LEVEL];
99
100 /// InGroup - Determine whether we are in the middle of an
101 /// operand group.
102 bool InGroup() const { return GroupLevel != -1; }
103
Chris Lattner5765dba2005-01-22 17:40:38 +0000104 AsmWriterInst(const CodeGenInstruction &CGI, unsigned Variant);
Chris Lattner870c0162005-01-22 18:38:13 +0000105
Chris Lattnerf8766682005-01-22 19:22:23 +0000106 /// MatchesAllButOneOp - If this instruction is exactly identical to the
107 /// specified instruction except for one differing operand, return the
108 /// differing operand number. Otherwise return ~0.
109 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
Chris Lattner870c0162005-01-22 18:38:13 +0000110
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000111 private:
112 void AddLiteralString(const std::string &Str) {
113 // If the last operand was already a literal text string, append this to
114 // it, otherwise add a new operand.
David Greeneab9238e2009-07-17 14:24:46 +0000115
116 std::string::size_type SearchStart = 0;
117 std::string::size_type SpaceStartPos = std::string::npos;
118 do {
119 // Search for whitespace and replace with calls to set the
120 // output column.
121 SpaceStartPos = Str.find_first_of(" \t", SearchStart);
122 // Assume grouped text is one operand.
123 std::string::size_type StartDelimPos = Str.find_first_of("[{(", SearchStart);
124
125 SearchStart = std::string::npos;
126
127 if (StartDelimPos != std::string::npos) {
128 ++GroupLevel;
129 assert(GroupLevel < MAX_GROUP_NESTING_LEVEL
130 && "Exceeded maximum operand group nesting level");
131 GroupDelim[GroupLevel] = Str[StartDelimPos];
132 if (SpaceStartPos != std::string::npos &&
133 SpaceStartPos > StartDelimPos) {
134 // This space doesn't count.
135 SpaceStartPos = std::string::npos;
136 }
137 }
138
139 if (InGroup()) {
140 // Find the end delimiter.
141 char EndDelim = (GroupDelim[GroupLevel] == '{' ? '}' :
142 (GroupDelim[GroupLevel] == '(' ? ')' : ']'));
143 std::string::size_type EndDelimSearchStart =
144 StartDelimPos == std::string::npos ? 0 : StartDelimPos+1;
145 std::string::size_type EndDelimPos = Str.find(EndDelim,
146 EndDelimSearchStart);
147 SearchStart = EndDelimPos;
148 if (EndDelimPos != std::string::npos) {
149 // Iterate.
150 SearchStart = EndDelimPos + 1;
151 --GroupLevel;
152 assert(GroupLevel > -2 && "Too many end delimeters!");
153 }
154 if (InGroup())
155 SpaceStartPos = std::string::npos;
156 }
157 } while (SearchStart != std::string::npos);
158
159
160 if (SpaceStartPos != std::string::npos) {
161 std::string::size_type SpaceEndPos =
162 Str.find_first_not_of(" \t", SpaceStartPos+1);
163 if (SpaceStartPos != 0) {
164 // Emit the first part of the string.
165 AddLiteralString(Str.substr(0, SpaceStartPos));
166 }
167 Operands.push_back(
168 AsmWriterOperand(
169 "O.PadToColumn(TAI->getOperandColumn(OperandColumn++), 1);\n",
170 AsmWriterOperand::isLiteralStatementOperand));
171 if (SpaceEndPos != std::string::npos) {
172 // Emit the last part of the string.
173 AddLiteralString(Str.substr(SpaceEndPos));
174 }
175 // We've emitted the whole string.
176 return;
177 }
178
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000179 if (!Operands.empty() &&
180 Operands.back().OperandType == AsmWriterOperand::isLiteralTextOperand)
181 Operands.back().Str.append(Str);
182 else
183 Operands.push_back(AsmWriterOperand(Str));
184 }
185 };
186}
187
188
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000189std::string AsmWriterOperand::getCode() const {
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000190 if (OperandType == isLiteralTextOperand)
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000191 return "O << \"" + Str + "\"; ";
192
David Greeneab9238e2009-07-17 14:24:46 +0000193 if (OperandType == isLiteralStatementOperand) {
194 return Str;
195 }
196
197 if (OperandType == isLiteralStatementOperand) {
198 return Str;
199 }
200
201 if (OperandType == isLiteralStatementOperand) {
202 return Str;
203 }
204
Chris Lattner1bf63612006-09-26 23:45:08 +0000205 std::string Result = Str + "(MI";
206 if (MIOpNo != ~0U)
207 Result += ", " + utostr(MIOpNo);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000208 if (!MiModifier.empty())
209 Result += ", \"" + MiModifier + '"';
210 return Result + "); ";
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000211}
212
213
214/// ParseAsmString - Parse the specified Instruction's AsmString into this
215/// AsmWriterInst.
216///
David Greeneab9238e2009-07-17 14:24:46 +0000217AsmWriterInst::AsmWriterInst(const CodeGenInstruction &CGI, unsigned Variant)
218 : GroupLevel(-1) {
Chris Lattner5765dba2005-01-22 17:40:38 +0000219 this->CGI = &CGI;
Chris Lattnerb03b0802006-02-06 22:43:28 +0000220 unsigned CurVariant = ~0U; // ~0 if we are outside a {.|.|.} region, other #.
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000221
Chris Lattner1cf9d962006-02-01 19:12:23 +0000222 // NOTE: Any extensions to this code need to be mirrored in the
223 // AsmPrinter::printInlineAsm code that executes as compile time (assuming
224 // that inline asm strings should also get the new feature)!
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000225 const std::string &AsmString = CGI.AsmString;
226 std::string::size_type LastEmitted = 0;
227 while (LastEmitted != AsmString.size()) {
228 std::string::size_type DollarPos =
Nate Begeman817affc2008-03-17 07:26:14 +0000229 AsmString.find_first_of("${|}\\", LastEmitted);
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000230 if (DollarPos == std::string::npos) DollarPos = AsmString.size();
231
232 // Emit a constant string fragment.
233 if (DollarPos != LastEmitted) {
Chris Lattner7f3b28a2009-03-13 21:33:17 +0000234 if (CurVariant == Variant || CurVariant == ~0U) {
235 for (; LastEmitted != DollarPos; ++LastEmitted)
236 switch (AsmString[LastEmitted]) {
237 case '\n': AddLiteralString("\\n"); break;
238 case '\t': AddLiteralString("\\t"); break;
239 case '"': AddLiteralString("\\\""); break;
240 case '\\': AddLiteralString("\\\\"); break;
241 default:
242 AddLiteralString(std::string(1, AsmString[LastEmitted]));
243 break;
244 }
245 } else {
246 LastEmitted = DollarPos;
247 }
Nate Begeman817affc2008-03-17 07:26:14 +0000248 } else if (AsmString[DollarPos] == '\\') {
249 if (DollarPos+1 != AsmString.size() &&
250 (CurVariant == Variant || CurVariant == ~0U)) {
251 if (AsmString[DollarPos+1] == 'n') {
252 AddLiteralString("\\n");
253 } else if (AsmString[DollarPos+1] == 't') {
254 AddLiteralString("\\t");
255 } else if (std::string("${|}\\").find(AsmString[DollarPos+1])
256 != std::string::npos) {
257 AddLiteralString(std::string(1, AsmString[DollarPos+1]));
258 } else {
259 throw "Non-supported escaped character found in instruction '" +
260 CGI.TheDef->getName() + "'!";
261 }
262 LastEmitted = DollarPos+2;
263 continue;
264 }
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000265 } else if (AsmString[DollarPos] == '{') {
Chris Lattnerb03b0802006-02-06 22:43:28 +0000266 if (CurVariant != ~0U)
Jeff Cohen00b168892005-07-27 06:12:32 +0000267 throw "Nested variants found for instruction '" +
Chris Lattner3e3def92005-07-15 22:43:04 +0000268 CGI.TheDef->getName() + "'!";
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000269 LastEmitted = DollarPos+1;
Chris Lattnerb03b0802006-02-06 22:43:28 +0000270 CurVariant = 0; // We are now inside of the variant!
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000271 } else if (AsmString[DollarPos] == '|') {
Chris Lattnerb03b0802006-02-06 22:43:28 +0000272 if (CurVariant == ~0U)
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000273 throw "'|' character found outside of a variant in instruction '"
Chris Lattner3e3def92005-07-15 22:43:04 +0000274 + CGI.TheDef->getName() + "'!";
Chris Lattnerb03b0802006-02-06 22:43:28 +0000275 ++CurVariant;
276 ++LastEmitted;
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000277 } else if (AsmString[DollarPos] == '}') {
Chris Lattnerb03b0802006-02-06 22:43:28 +0000278 if (CurVariant == ~0U)
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000279 throw "'}' character found outside of a variant in instruction '"
Chris Lattner3e3def92005-07-15 22:43:04 +0000280 + CGI.TheDef->getName() + "'!";
Chris Lattnerb03b0802006-02-06 22:43:28 +0000281 ++LastEmitted;
282 CurVariant = ~0U;
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000283 } else if (DollarPos+1 != AsmString.size() &&
284 AsmString[DollarPos+1] == '$') {
Chris Lattnerb03b0802006-02-06 22:43:28 +0000285 if (CurVariant == Variant || CurVariant == ~0U)
286 AddLiteralString("$"); // "$$" -> $
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000287 LastEmitted = DollarPos+2;
288 } else {
289 // Get the name of the variable.
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000290 std::string::size_type VarEnd = DollarPos+1;
Nate Begemanafc54562005-07-14 22:50:30 +0000291
292 // handle ${foo}bar as $foo by detecting whether the character following
293 // the dollar sign is a curly brace. If so, advance VarEnd and DollarPos
294 // so the variable name does not contain the leading curly brace.
295 bool hasCurlyBraces = false;
296 if (VarEnd < AsmString.size() && '{' == AsmString[VarEnd]) {
297 hasCurlyBraces = true;
298 ++DollarPos;
299 ++VarEnd;
300 }
301
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000302 while (VarEnd < AsmString.size() && isIdentChar(AsmString[VarEnd]))
303 ++VarEnd;
304 std::string VarName(AsmString.begin()+DollarPos+1,
305 AsmString.begin()+VarEnd);
Nate Begemanafc54562005-07-14 22:50:30 +0000306
Chris Lattner04cadb32006-02-06 23:40:48 +0000307 // Modifier - Support ${foo:modifier} syntax, where "modifier" is passed
Chris Lattner1bf63612006-09-26 23:45:08 +0000308 // into printOperand. Also support ${:feature}, which is passed into
Chris Lattner16f046a2006-09-26 23:47:10 +0000309 // PrintSpecial.
Chris Lattner04cadb32006-02-06 23:40:48 +0000310 std::string Modifier;
311
Nate Begemanafc54562005-07-14 22:50:30 +0000312 // In order to avoid starting the next string at the terminating curly
313 // brace, advance the end position past it if we found an opening curly
314 // brace.
315 if (hasCurlyBraces) {
316 if (VarEnd >= AsmString.size())
317 throw "Reached end of string before terminating curly brace in '"
Chris Lattner3e3def92005-07-15 22:43:04 +0000318 + CGI.TheDef->getName() + "'";
Chris Lattner04cadb32006-02-06 23:40:48 +0000319
320 // Look for a modifier string.
321 if (AsmString[VarEnd] == ':') {
322 ++VarEnd;
323 if (VarEnd >= AsmString.size())
324 throw "Reached end of string before terminating curly brace in '"
325 + CGI.TheDef->getName() + "'";
326
327 unsigned ModifierStart = VarEnd;
328 while (VarEnd < AsmString.size() && isIdentChar(AsmString[VarEnd]))
329 ++VarEnd;
330 Modifier = std::string(AsmString.begin()+ModifierStart,
331 AsmString.begin()+VarEnd);
332 if (Modifier.empty())
333 throw "Bad operand modifier name in '"+ CGI.TheDef->getName() + "'";
334 }
335
Nate Begemanafc54562005-07-14 22:50:30 +0000336 if (AsmString[VarEnd] != '}')
Chris Lattnerb03b0802006-02-06 22:43:28 +0000337 throw "Variable name beginning with '{' did not end with '}' in '"
Chris Lattner3e3def92005-07-15 22:43:04 +0000338 + CGI.TheDef->getName() + "'";
Nate Begemanafc54562005-07-14 22:50:30 +0000339 ++VarEnd;
340 }
Chris Lattner1bf63612006-09-26 23:45:08 +0000341 if (VarName.empty() && Modifier.empty())
Jeff Cohen00b168892005-07-27 06:12:32 +0000342 throw "Stray '$' in '" + CGI.TheDef->getName() +
Chris Lattner3e3def92005-07-15 22:43:04 +0000343 "' asm string, maybe you want $$?";
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000344
Chris Lattner1bf63612006-09-26 23:45:08 +0000345 if (VarName.empty()) {
Chris Lattner16f046a2006-09-26 23:47:10 +0000346 // Just a modifier, pass this into PrintSpecial.
347 Operands.push_back(AsmWriterOperand("PrintSpecial", ~0U, Modifier));
Chris Lattner1bf63612006-09-26 23:45:08 +0000348 } else {
349 // Otherwise, normal operand.
350 unsigned OpNo = CGI.getOperandNamed(VarName);
351 CodeGenInstruction::OperandInfo OpInfo = CGI.OperandList[OpNo];
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000352
Chris Lattnerf64f9a42006-11-15 23:23:02 +0000353 if (CurVariant == Variant || CurVariant == ~0U) {
354 unsigned MIOp = OpInfo.MIOperandNo;
Chris Lattner1bf63612006-09-26 23:45:08 +0000355 Operands.push_back(AsmWriterOperand(OpInfo.PrinterMethodName, MIOp,
356 Modifier));
Chris Lattnerf64f9a42006-11-15 23:23:02 +0000357 }
Chris Lattner1bf63612006-09-26 23:45:08 +0000358 }
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000359 LastEmitted = VarEnd;
360 }
361 }
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000362}
363
Chris Lattnerf8766682005-01-22 19:22:23 +0000364/// MatchesAllButOneOp - If this instruction is exactly identical to the
365/// specified instruction except for one differing operand, return the differing
366/// operand number. If more than one operand mismatches, return ~1, otherwise
367/// if the instructions are identical return ~0.
368unsigned AsmWriterInst::MatchesAllButOneOp(const AsmWriterInst &Other)const{
369 if (Operands.size() != Other.Operands.size()) return ~1;
Chris Lattner870c0162005-01-22 18:38:13 +0000370
371 unsigned MismatchOperand = ~0U;
372 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +0000373 if (Operands[i] != Other.Operands[i]) {
Chris Lattnerf8766682005-01-22 19:22:23 +0000374 if (MismatchOperand != ~0U) // Already have one mismatch?
375 return ~1U;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000376 else
Chris Lattner870c0162005-01-22 18:38:13 +0000377 MismatchOperand = i;
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +0000378 }
Chris Lattner870c0162005-01-22 18:38:13 +0000379 }
380 return MismatchOperand;
381}
382
Chris Lattner38c07512005-01-22 20:31:17 +0000383static void PrintCases(std::vector<std::pair<std::string,
Daniel Dunbar1a551802009-07-03 00:10:29 +0000384 AsmWriterOperand> > &OpsToPrint, raw_ostream &O) {
Chris Lattner38c07512005-01-22 20:31:17 +0000385 O << " case " << OpsToPrint.back().first << ": ";
386 AsmWriterOperand TheOp = OpsToPrint.back().second;
387 OpsToPrint.pop_back();
388
389 // Check to see if any other operands are identical in this list, and if so,
390 // emit a case label for them.
391 for (unsigned i = OpsToPrint.size(); i != 0; --i)
392 if (OpsToPrint[i-1].second == TheOp) {
393 O << "\n case " << OpsToPrint[i-1].first << ": ";
394 OpsToPrint.erase(OpsToPrint.begin()+i-1);
395 }
396
397 // Finally, emit the code.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000398 O << TheOp.getCode();
Chris Lattner38c07512005-01-22 20:31:17 +0000399 O << "break;\n";
400}
401
Chris Lattner870c0162005-01-22 18:38:13 +0000402
403/// EmitInstructions - Emit the last instruction in the vector and any other
404/// instructions that are suitably similar to it.
405static void EmitInstructions(std::vector<AsmWriterInst> &Insts,
Daniel Dunbar1a551802009-07-03 00:10:29 +0000406 raw_ostream &O) {
Chris Lattner870c0162005-01-22 18:38:13 +0000407 AsmWriterInst FirstInst = Insts.back();
408 Insts.pop_back();
409
410 std::vector<AsmWriterInst> SimilarInsts;
411 unsigned DifferingOperand = ~0;
412 for (unsigned i = Insts.size(); i != 0; --i) {
Chris Lattnerf8766682005-01-22 19:22:23 +0000413 unsigned DiffOp = Insts[i-1].MatchesAllButOneOp(FirstInst);
414 if (DiffOp != ~1U) {
Chris Lattner870c0162005-01-22 18:38:13 +0000415 if (DifferingOperand == ~0U) // First match!
416 DifferingOperand = DiffOp;
417
418 // If this differs in the same operand as the rest of the instructions in
419 // this class, move it to the SimilarInsts list.
Chris Lattnerf8766682005-01-22 19:22:23 +0000420 if (DifferingOperand == DiffOp || DiffOp == ~0U) {
Chris Lattner870c0162005-01-22 18:38:13 +0000421 SimilarInsts.push_back(Insts[i-1]);
422 Insts.erase(Insts.begin()+i-1);
423 }
424 }
425 }
426
Chris Lattnera1e8a802006-05-01 17:01:17 +0000427 O << " case " << FirstInst.CGI->Namespace << "::"
Chris Lattner870c0162005-01-22 18:38:13 +0000428 << FirstInst.CGI->TheDef->getName() << ":\n";
429 for (unsigned i = 0, e = SimilarInsts.size(); i != e; ++i)
Chris Lattnera1e8a802006-05-01 17:01:17 +0000430 O << " case " << SimilarInsts[i].CGI->Namespace << "::"
Chris Lattner870c0162005-01-22 18:38:13 +0000431 << SimilarInsts[i].CGI->TheDef->getName() << ":\n";
432 for (unsigned i = 0, e = FirstInst.Operands.size(); i != e; ++i) {
433 if (i != DifferingOperand) {
434 // If the operand is the same for all instructions, just print it.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000435 O << " " << FirstInst.Operands[i].getCode();
Chris Lattner870c0162005-01-22 18:38:13 +0000436 } else {
437 // If this is the operand that varies between all of the instructions,
438 // emit a switch for just this operand now.
439 O << " switch (MI->getOpcode()) {\n";
Chris Lattner38c07512005-01-22 20:31:17 +0000440 std::vector<std::pair<std::string, AsmWriterOperand> > OpsToPrint;
Chris Lattnera1e8a802006-05-01 17:01:17 +0000441 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace + "::" +
Chris Lattner38c07512005-01-22 20:31:17 +0000442 FirstInst.CGI->TheDef->getName(),
443 FirstInst.Operands[i]));
Misha Brukman3da94ae2005-04-22 00:00:37 +0000444
Chris Lattner870c0162005-01-22 18:38:13 +0000445 for (unsigned si = 0, e = SimilarInsts.size(); si != e; ++si) {
Chris Lattner38c07512005-01-22 20:31:17 +0000446 AsmWriterInst &AWI = SimilarInsts[si];
Chris Lattnera1e8a802006-05-01 17:01:17 +0000447 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace+"::"+
Chris Lattner38c07512005-01-22 20:31:17 +0000448 AWI.CGI->TheDef->getName(),
449 AWI.Operands[i]));
Chris Lattner870c0162005-01-22 18:38:13 +0000450 }
Chris Lattner38c07512005-01-22 20:31:17 +0000451 std::reverse(OpsToPrint.begin(), OpsToPrint.end());
452 while (!OpsToPrint.empty())
453 PrintCases(OpsToPrint, O);
Chris Lattner870c0162005-01-22 18:38:13 +0000454 O << " }";
455 }
456 O << "\n";
457 }
David Greeneab9238e2009-07-17 14:24:46 +0000458 O << " EmitComments(*MI);\n";
459 // Print the final newline
460 O << " O << \"\\n\";\n";
Chris Lattner870c0162005-01-22 18:38:13 +0000461 O << " break;\n";
462}
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000463
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000464void AsmWriterEmitter::
465FindUniqueOperandCommands(std::vector<std::string> &UniqueOperandCommands,
Chris Lattner96c1ade2006-07-18 18:28:27 +0000466 std::vector<unsigned> &InstIdxs,
467 std::vector<unsigned> &InstOpsUsed) const {
Chris Lattner195bb4a2006-07-18 19:27:30 +0000468 InstIdxs.assign(NumberedInstructions.size(), ~0U);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000469
470 // This vector parallels UniqueOperandCommands, keeping track of which
471 // instructions each case are used for. It is a comma separated string of
472 // enums.
473 std::vector<std::string> InstrsForCase;
474 InstrsForCase.resize(UniqueOperandCommands.size());
Chris Lattner96c1ade2006-07-18 18:28:27 +0000475 InstOpsUsed.assign(UniqueOperandCommands.size(), 0);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000476
477 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
478 const AsmWriterInst *Inst = getAsmWriterInstByID(i);
Dan Gohman44066042008-07-01 00:05:16 +0000479 if (Inst == 0) continue; // PHI, INLINEASM, DBG_LABEL, etc.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000480
481 std::string Command;
Chris Lattnerb8462862006-07-18 17:56:07 +0000482 if (Inst->Operands.empty())
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000483 continue; // Instruction already done.
Chris Lattner191dd1f2006-07-18 17:50:22 +0000484
Chris Lattnerb8462862006-07-18 17:56:07 +0000485 Command = " " + Inst->Operands[0].getCode() + "\n";
Chris Lattner191dd1f2006-07-18 17:50:22 +0000486
487 // If this is the last operand, emit a return.
David Greene014700c2009-07-13 20:25:48 +0000488 if (Inst->Operands.size() == 1) {
David Greenefe7b16f2009-07-15 18:24:03 +0000489 Command += " EmitComments(*MI);\n";
David Greene014700c2009-07-13 20:25:48 +0000490 // Print the final newline
491 Command += " O << \"\\n\";\n";
Chris Lattner191dd1f2006-07-18 17:50:22 +0000492 Command += " return true;\n";
David Greene014700c2009-07-13 20:25:48 +0000493 }
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000494
495 // Check to see if we already have 'Command' in UniqueOperandCommands.
496 // If not, add it.
497 bool FoundIt = false;
498 for (unsigned idx = 0, e = UniqueOperandCommands.size(); idx != e; ++idx)
499 if (UniqueOperandCommands[idx] == Command) {
500 InstIdxs[i] = idx;
501 InstrsForCase[idx] += ", ";
502 InstrsForCase[idx] += Inst->CGI->TheDef->getName();
503 FoundIt = true;
504 break;
505 }
506 if (!FoundIt) {
507 InstIdxs[i] = UniqueOperandCommands.size();
508 UniqueOperandCommands.push_back(Command);
509 InstrsForCase.push_back(Inst->CGI->TheDef->getName());
Chris Lattner96c1ade2006-07-18 18:28:27 +0000510
511 // This command matches one operand so far.
512 InstOpsUsed.push_back(1);
513 }
514 }
515
516 // For each entry of UniqueOperandCommands, there is a set of instructions
517 // that uses it. If the next command of all instructions in the set are
518 // identical, fold it into the command.
519 for (unsigned CommandIdx = 0, e = UniqueOperandCommands.size();
520 CommandIdx != e; ++CommandIdx) {
521
522 for (unsigned Op = 1; ; ++Op) {
523 // Scan for the first instruction in the set.
524 std::vector<unsigned>::iterator NIT =
525 std::find(InstIdxs.begin(), InstIdxs.end(), CommandIdx);
526 if (NIT == InstIdxs.end()) break; // No commonality.
527
528 // If this instruction has no more operands, we isn't anything to merge
529 // into this command.
530 const AsmWriterInst *FirstInst =
531 getAsmWriterInstByID(NIT-InstIdxs.begin());
532 if (!FirstInst || FirstInst->Operands.size() == Op)
533 break;
534
535 // Otherwise, scan to see if all of the other instructions in this command
536 // set share the operand.
537 bool AllSame = true;
538
Chris Lattner96c1ade2006-07-18 18:28:27 +0000539 for (NIT = std::find(NIT+1, InstIdxs.end(), CommandIdx);
540 NIT != InstIdxs.end();
541 NIT = std::find(NIT+1, InstIdxs.end(), CommandIdx)) {
542 // Okay, found another instruction in this command set. If the operand
543 // matches, we're ok, otherwise bail out.
544 const AsmWriterInst *OtherInst =
545 getAsmWriterInstByID(NIT-InstIdxs.begin());
546 if (!OtherInst || OtherInst->Operands.size() == Op ||
547 OtherInst->Operands[Op] != FirstInst->Operands[Op]) {
548 AllSame = false;
549 break;
550 }
551 }
552 if (!AllSame) break;
553
554 // Okay, everything in this command set has the same next operand. Add it
555 // to UniqueOperandCommands and remember that it was consumed.
556 std::string Command = " " + FirstInst->Operands[Op].getCode() + "\n";
557
558 // If this is the last operand, emit a return after the code.
David Greene014700c2009-07-13 20:25:48 +0000559 if (FirstInst->Operands.size() == Op+1) {
David Greenefe7b16f2009-07-15 18:24:03 +0000560 Command += " EmitComments(*MI);\n";
David Greene014700c2009-07-13 20:25:48 +0000561 // Print the final newline
562 Command += " O << \"\\n\";\n";
Chris Lattner96c1ade2006-07-18 18:28:27 +0000563 Command += " return true;\n";
David Greene014700c2009-07-13 20:25:48 +0000564 }
Chris Lattner96c1ade2006-07-18 18:28:27 +0000565
566 UniqueOperandCommands[CommandIdx] += Command;
567 InstOpsUsed[CommandIdx]++;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000568 }
569 }
570
571 // Prepend some of the instructions each case is used for onto the case val.
572 for (unsigned i = 0, e = InstrsForCase.size(); i != e; ++i) {
573 std::string Instrs = InstrsForCase[i];
574 if (Instrs.size() > 70) {
575 Instrs.erase(Instrs.begin()+70, Instrs.end());
576 Instrs += "...";
577 }
578
579 if (!Instrs.empty())
580 UniqueOperandCommands[i] = " // " + Instrs + "\n" +
581 UniqueOperandCommands[i];
582 }
583}
584
585
586
Daniel Dunbar1a551802009-07-03 00:10:29 +0000587void AsmWriterEmitter::run(raw_ostream &O) {
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000588 EmitSourceFileHeader("Assembly Writer Source Fragment", O);
589
590 CodeGenTarget Target;
Chris Lattner175580c2004-08-14 22:50:53 +0000591 Record *AsmWriter = Target.getAsmWriter();
Chris Lattner953c6fe2004-10-03 20:19:02 +0000592 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
593 unsigned Variant = AsmWriter->getValueAsInt("Variant");
Chris Lattner175580c2004-08-14 22:50:53 +0000594
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000595 O <<
596 "/// printInstruction - This method is automatically generated by tablegen\n"
597 "/// from the instruction set description. This method returns true if the\n"
598 "/// machine instruction was sufficiently described to print it, otherwise\n"
599 "/// it returns false.\n"
Chris Lattner953c6fe2004-10-03 20:19:02 +0000600 "bool " << Target.getName() << ClassName
Chris Lattner175580c2004-08-14 22:50:53 +0000601 << "::printInstruction(const MachineInstr *MI) {\n";
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000602
Chris Lattner5765dba2005-01-22 17:40:38 +0000603 std::vector<AsmWriterInst> Instructions;
604
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000605 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
606 E = Target.inst_end(); I != E; ++I)
Chris Lattner5765dba2005-01-22 17:40:38 +0000607 if (!I->second.AsmString.empty())
608 Instructions.push_back(AsmWriterInst(I->second, Variant));
Chris Lattner076efa72004-08-01 07:43:02 +0000609
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000610 // Get the instruction numbering.
Chris Lattner0cfcc1e2006-01-27 02:10:50 +0000611 Target.getInstructionsByEnumValue(NumberedInstructions);
612
Chris Lattner6af022f2006-07-14 22:59:11 +0000613 // Compute the CodeGenInstruction -> AsmWriterInst mapping. Note that not
614 // all machine instructions are necessarily being printed, so there may be
615 // target instructions not in this map.
Chris Lattner6af022f2006-07-14 22:59:11 +0000616 for (unsigned i = 0, e = Instructions.size(); i != e; ++i)
617 CGIAWIMap.insert(std::make_pair(Instructions[i].CGI, &Instructions[i]));
Chris Lattnerf8766682005-01-22 19:22:23 +0000618
Chris Lattner6af022f2006-07-14 22:59:11 +0000619 // Build an aggregate string, and build a table of offsets into it.
620 std::map<std::string, unsigned> StringOffset;
621 std::string AggregateString;
Chris Lattner259bda42006-09-27 16:44:09 +0000622 AggregateString.push_back(0); // "\0"
623 AggregateString.push_back(0); // "\0"
Chris Lattner6af022f2006-07-14 22:59:11 +0000624
Chris Lattner259bda42006-09-27 16:44:09 +0000625 /// OpcodeInfo - This encodes the index of the string to use for the first
Chris Lattner55616402006-07-18 17:32:27 +0000626 /// chunk of the output as well as indices used for operand printing.
627 std::vector<unsigned> OpcodeInfo;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000628
Chris Lattner55616402006-07-18 17:32:27 +0000629 unsigned MaxStringIdx = 0;
Chris Lattner6af022f2006-07-14 22:59:11 +0000630 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
631 AsmWriterInst *AWI = CGIAWIMap[NumberedInstructions[i]];
632 unsigned Idx;
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000633 if (AWI == 0) {
Chris Lattner6af022f2006-07-14 22:59:11 +0000634 // Something not handled by the asmwriter printer.
635 Idx = 0;
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000636 } else if (AWI->Operands[0].OperandType !=
637 AsmWriterOperand::isLiteralTextOperand ||
638 AWI->Operands[0].Str.empty()) {
639 // Something handled by the asmwriter printer, but with no leading string.
640 Idx = 1;
Chris Lattner6af022f2006-07-14 22:59:11 +0000641 } else {
642 unsigned &Entry = StringOffset[AWI->Operands[0].Str];
643 if (Entry == 0) {
644 // Add the string to the aggregate if this is the first time found.
Chris Lattner55616402006-07-18 17:32:27 +0000645 MaxStringIdx = Entry = AggregateString.size();
Chris Lattner6af022f2006-07-14 22:59:11 +0000646 std::string Str = AWI->Operands[0].Str;
647 UnescapeString(Str);
648 AggregateString += Str;
649 AggregateString += '\0';
Chris Lattnerf8766682005-01-22 19:22:23 +0000650 }
Chris Lattner6af022f2006-07-14 22:59:11 +0000651 Idx = Entry;
Chris Lattner6af022f2006-07-14 22:59:11 +0000652
653 // Nuke the string from the operand list. It is now handled!
654 AWI->Operands.erase(AWI->Operands.begin());
Chris Lattnerf8766682005-01-22 19:22:23 +0000655 }
Chris Lattner55616402006-07-18 17:32:27 +0000656 OpcodeInfo.push_back(Idx);
Chris Lattnerf8766682005-01-22 19:22:23 +0000657 }
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000658
Chris Lattner55616402006-07-18 17:32:27 +0000659 // Figure out how many bits we used for the string index.
Nate Begeman59d28132008-04-09 16:24:11 +0000660 unsigned AsmStrBits = Log2_32_Ceil(MaxStringIdx+1);
Chris Lattner55616402006-07-18 17:32:27 +0000661
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000662 // To reduce code size, we compactify common instructions into a few bits
663 // in the opcode-indexed table.
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000664 unsigned BitsLeft = 32-AsmStrBits;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000665
666 std::vector<std::vector<std::string> > TableDrivenOperandPrinters;
667
Chris Lattnerb8462862006-07-18 17:56:07 +0000668 bool isFirst = true;
669 while (1) {
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000670 std::vector<std::string> UniqueOperandCommands;
671
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000672 // For the first operand check, add a default value for instructions with
673 // just opcode strings to use.
Chris Lattnerb8462862006-07-18 17:56:07 +0000674 if (isFirst) {
David Greene014700c2009-07-13 20:25:48 +0000675 // Do the post instruction processing and print the final newline
David Greenefe7b16f2009-07-15 18:24:03 +0000676 UniqueOperandCommands.push_back(" EmitComments(*MI);\n O << \"\\n\";\n return true;\n");
Chris Lattnerb8462862006-07-18 17:56:07 +0000677 isFirst = false;
678 }
David Greene014700c2009-07-13 20:25:48 +0000679
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000680 std::vector<unsigned> InstIdxs;
Chris Lattner96c1ade2006-07-18 18:28:27 +0000681 std::vector<unsigned> NumInstOpsHandled;
682 FindUniqueOperandCommands(UniqueOperandCommands, InstIdxs,
683 NumInstOpsHandled);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000684
685 // If we ran out of operands to print, we're done.
686 if (UniqueOperandCommands.empty()) break;
687
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000688 // Compute the number of bits we need to represent these cases, this is
689 // ceil(log2(numentries)).
690 unsigned NumBits = Log2_32_Ceil(UniqueOperandCommands.size());
691
692 // If we don't have enough bits for this operand, don't include it.
693 if (NumBits > BitsLeft) {
Bill Wendlingf5da1332006-12-07 22:21:48 +0000694 DOUT << "Not enough bits to densely encode " << NumBits
695 << " more bits\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000696 break;
697 }
698
699 // Otherwise, we can include this in the initial lookup table. Add it in.
700 BitsLeft -= NumBits;
701 for (unsigned i = 0, e = InstIdxs.size(); i != e; ++i)
Chris Lattner195bb4a2006-07-18 19:27:30 +0000702 if (InstIdxs[i] != ~0U)
703 OpcodeInfo[i] |= InstIdxs[i] << (BitsLeft+AsmStrBits);
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000704
Chris Lattnerb8462862006-07-18 17:56:07 +0000705 // Remove the info about this operand.
706 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
707 if (AsmWriterInst *Inst = getAsmWriterInstByID(i))
Chris Lattner96c1ade2006-07-18 18:28:27 +0000708 if (!Inst->Operands.empty()) {
709 unsigned NumOps = NumInstOpsHandled[InstIdxs[i]];
Chris Lattner0a012122006-07-18 19:06:01 +0000710 assert(NumOps <= Inst->Operands.size() &&
711 "Can't remove this many ops!");
Chris Lattner96c1ade2006-07-18 18:28:27 +0000712 Inst->Operands.erase(Inst->Operands.begin(),
713 Inst->Operands.begin()+NumOps);
714 }
Chris Lattnerb8462862006-07-18 17:56:07 +0000715 }
716
717 // Remember the handlers for this set of operands.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000718 TableDrivenOperandPrinters.push_back(UniqueOperandCommands);
719 }
720
721
722
Chris Lattner55616402006-07-18 17:32:27 +0000723 O<<" static const unsigned OpInfo[] = {\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000724 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000725 O << " " << OpcodeInfo[i] << "U,\t// "
Chris Lattner55616402006-07-18 17:32:27 +0000726 << NumberedInstructions[i]->TheDef->getName() << "\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000727 }
728 // Add a dummy entry so the array init doesn't end with a comma.
Chris Lattner55616402006-07-18 17:32:27 +0000729 O << " 0U\n";
Chris Lattner6af022f2006-07-14 22:59:11 +0000730 O << " };\n\n";
731
732 // Emit the string itself.
733 O << " const char *AsmStrs = \n \"";
734 unsigned CharsPrinted = 0;
735 EscapeString(AggregateString);
736 for (unsigned i = 0, e = AggregateString.size(); i != e; ++i) {
737 if (CharsPrinted > 70) {
738 O << "\"\n \"";
739 CharsPrinted = 0;
740 }
741 O << AggregateString[i];
742 ++CharsPrinted;
743
744 // Print escape sequences all together.
745 if (AggregateString[i] == '\\') {
746 assert(i+1 < AggregateString.size() && "Incomplete escape sequence!");
747 if (isdigit(AggregateString[i+1])) {
748 assert(isdigit(AggregateString[i+2]) && isdigit(AggregateString[i+3]) &&
749 "Expected 3 digit octal escape!");
750 O << AggregateString[++i];
751 O << AggregateString[++i];
752 O << AggregateString[++i];
753 CharsPrinted += 3;
754 } else {
755 O << AggregateString[++i];
756 ++CharsPrinted;
757 }
758 }
759 }
760 O << "\";\n\n";
761
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +0000762 O << " processDebugLoc(MI->getDebugLoc());\n\n";
Bill Wendlingcb819f12009-02-18 23:12:06 +0000763
Chris Lattner5b842c32009-06-19 23:57:53 +0000764 O << "\n#ifndef NO_ASM_WRITER_BOILERPLATE\n";
765
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000766 O << " if (MI->getOpcode() == TargetInstrInfo::INLINEASM) {\n"
Evan Cheng4eecdeb2008-02-02 08:39:46 +0000767 << " O << \"\\t\";\n"
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000768 << " printInlineAsm(MI);\n"
769 << " return true;\n"
Dan Gohman44066042008-07-01 00:05:16 +0000770 << " } else if (MI->isLabel()) {\n"
Jim Laskeya683f9b2007-01-26 17:29:20 +0000771 << " printLabel(MI);\n"
772 << " return true;\n"
Evan Chenga844bde2008-02-02 04:07:54 +0000773 << " } else if (MI->getOpcode() == TargetInstrInfo::DECLARE) {\n"
774 << " printDeclare(MI);\n"
775 << " return true;\n"
Evan Chengda47e6e2008-03-15 00:03:38 +0000776 << " } else if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {\n"
777 << " printImplicitDef(MI);\n"
778 << " return true;\n"
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000779 << " }\n\n";
Chris Lattner5b842c32009-06-19 23:57:53 +0000780
781 O << "\n#endif\n";
782
Evan Cheng4eecdeb2008-02-02 08:39:46 +0000783 O << " O << \"\\t\";\n\n";
784
Chris Lattner6af022f2006-07-14 22:59:11 +0000785 O << " // Emit the opcode for the instruction.\n"
Chris Lattner55616402006-07-18 17:32:27 +0000786 << " unsigned Bits = OpInfo[MI->getOpcode()];\n"
David Greeneab9238e2009-07-17 14:24:46 +0000787 << " if (Bits == 0) return false;\n\n";
788
789 O << " std::string OpStr(AsmStrs+(Bits & " << (1 << AsmStrBits)-1 << "));\n"
790 << " unsigned OperandColumn = 1;\n"
791 << " O << OpStr;\n\n";
792
793 O << " if (OpStr.find_last_of(\" \\t\") == OpStr.size()-1) {\n"
794 << " O.PadToColumn(TAI->getOperandColumn(1));\n"
795 << " OperandColumn = 2;\n"
796 << " }\n\n";
Chris Lattnerf8766682005-01-22 19:22:23 +0000797
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000798 // Output the table driven operand information.
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000799 BitsLeft = 32-AsmStrBits;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000800 for (unsigned i = 0, e = TableDrivenOperandPrinters.size(); i != e; ++i) {
801 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i];
802
803 // Compute the number of bits we need to represent these cases, this is
804 // ceil(log2(numentries)).
805 unsigned NumBits = Log2_32_Ceil(Commands.size());
806 assert(NumBits <= BitsLeft && "consistency error");
807
808 // Emit code to extract this field from Bits.
809 BitsLeft -= NumBits;
810
811 O << "\n // Fragment " << i << " encoded into " << NumBits
Chris Lattnere7a589d2006-07-18 17:43:54 +0000812 << " bits for " << Commands.size() << " unique commands.\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000813
Chris Lattner96c1ade2006-07-18 18:28:27 +0000814 if (Commands.size() == 2) {
Chris Lattnere7a589d2006-07-18 17:43:54 +0000815 // Emit two possibilitys with if/else.
816 O << " if ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
817 << ((1 << NumBits)-1) << ") {\n"
818 << Commands[1]
819 << " } else {\n"
820 << Commands[0]
821 << " }\n\n";
822 } else {
823 O << " switch ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
824 << ((1 << NumBits)-1) << ") {\n"
825 << " default: // unreachable.\n";
826
827 // Print out all the cases.
828 for (unsigned i = 0, e = Commands.size(); i != e; ++i) {
829 O << " case " << i << ":\n";
830 O << Commands[i];
831 O << " break;\n";
832 }
833 O << " }\n\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000834 }
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000835 }
836
Chris Lattnerb8462862006-07-18 17:56:07 +0000837 // Okay, delete instructions with no operand info left.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000838 for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
839 // Entire instruction has been emitted?
840 AsmWriterInst &Inst = Instructions[i];
Chris Lattnerb8462862006-07-18 17:56:07 +0000841 if (Inst.Operands.empty()) {
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000842 Instructions.erase(Instructions.begin()+i);
Chris Lattnerb8462862006-07-18 17:56:07 +0000843 --i; --e;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000844 }
845 }
846
847
848 // Because this is a vector, we want to emit from the end. Reverse all of the
Chris Lattner870c0162005-01-22 18:38:13 +0000849 // elements in the vector.
850 std::reverse(Instructions.begin(), Instructions.end());
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000851
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000852 if (!Instructions.empty()) {
853 // Find the opcode # of inline asm.
854 O << " switch (MI->getOpcode()) {\n";
855 while (!Instructions.empty())
856 EmitInstructions(Instructions, O);
Chris Lattner870c0162005-01-22 18:38:13 +0000857
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000858 O << " }\n";
David Greenefe7b16f2009-07-15 18:24:03 +0000859 O << " EmitComments(*MI);\n";
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000860 }
David Greeneab9238e2009-07-17 14:24:46 +0000861 // Print the final newline
862 O << " O << \"\\n\";\n";
863 O << " return true;\n";
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000864
Chris Lattner0a012122006-07-18 19:06:01 +0000865 O << "}\n";
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000866}