blob: 0ef5a93d569fd469f4462573dfceddce57d526fb [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"
Sean Callanand32c02f2010-02-09 21:50:41 +000016#include "AsmWriterInst.h"
Chris Lattner2e1f51b2004-08-01 05:59:33 +000017#include "CodeGenTarget.h"
Chris Lattner44da5fb2009-09-14 01:19:16 +000018#include "StringToOffsetTable.h"
Owen Andersonbea6f612011-06-27 21:06:21 +000019#include "llvm/ADT/Twine.h"
Chris Lattnerbdff5f92006-07-18 17:18:03 +000020#include "llvm/Support/Debug.h"
21#include "llvm/Support/MathExtras.h"
Peter Collingbourne7c788882011-10-01 16:41:13 +000022#include "llvm/TableGen/Error.h"
23#include "llvm/TableGen/Record.h"
Jeff Cohen615ed992005-01-22 18:50:10 +000024#include <algorithm>
Chris Lattner2e1f51b2004-08-01 05:59:33 +000025using namespace llvm;
26
Chris Lattner38c07512005-01-22 20:31:17 +000027static void PrintCases(std::vector<std::pair<std::string,
Daniel Dunbar1a551802009-07-03 00:10:29 +000028 AsmWriterOperand> > &OpsToPrint, raw_ostream &O) {
Chris Lattner38c07512005-01-22 20:31:17 +000029 O << " case " << OpsToPrint.back().first << ": ";
30 AsmWriterOperand TheOp = OpsToPrint.back().second;
31 OpsToPrint.pop_back();
32
33 // Check to see if any other operands are identical in this list, and if so,
34 // emit a case label for them.
35 for (unsigned i = OpsToPrint.size(); i != 0; --i)
36 if (OpsToPrint[i-1].second == TheOp) {
37 O << "\n case " << OpsToPrint[i-1].first << ": ";
38 OpsToPrint.erase(OpsToPrint.begin()+i-1);
39 }
40
41 // Finally, emit the code.
Chris Lattnerbdff5f92006-07-18 17:18:03 +000042 O << TheOp.getCode();
Chris Lattner38c07512005-01-22 20:31:17 +000043 O << "break;\n";
44}
45
Chris Lattner870c0162005-01-22 18:38:13 +000046
47/// EmitInstructions - Emit the last instruction in the vector and any other
48/// instructions that are suitably similar to it.
49static void EmitInstructions(std::vector<AsmWriterInst> &Insts,
Daniel Dunbar1a551802009-07-03 00:10:29 +000050 raw_ostream &O) {
Chris Lattner870c0162005-01-22 18:38:13 +000051 AsmWriterInst FirstInst = Insts.back();
52 Insts.pop_back();
53
54 std::vector<AsmWriterInst> SimilarInsts;
55 unsigned DifferingOperand = ~0;
56 for (unsigned i = Insts.size(); i != 0; --i) {
Chris Lattnerf8766682005-01-22 19:22:23 +000057 unsigned DiffOp = Insts[i-1].MatchesAllButOneOp(FirstInst);
58 if (DiffOp != ~1U) {
Chris Lattner870c0162005-01-22 18:38:13 +000059 if (DifferingOperand == ~0U) // First match!
60 DifferingOperand = DiffOp;
61
62 // If this differs in the same operand as the rest of the instructions in
63 // this class, move it to the SimilarInsts list.
Chris Lattnerf8766682005-01-22 19:22:23 +000064 if (DifferingOperand == DiffOp || DiffOp == ~0U) {
Chris Lattner870c0162005-01-22 18:38:13 +000065 SimilarInsts.push_back(Insts[i-1]);
66 Insts.erase(Insts.begin()+i-1);
67 }
68 }
69 }
70
Chris Lattnera1e8a802006-05-01 17:01:17 +000071 O << " case " << FirstInst.CGI->Namespace << "::"
Chris Lattner870c0162005-01-22 18:38:13 +000072 << FirstInst.CGI->TheDef->getName() << ":\n";
73 for (unsigned i = 0, e = SimilarInsts.size(); i != e; ++i)
Chris Lattnera1e8a802006-05-01 17:01:17 +000074 O << " case " << SimilarInsts[i].CGI->Namespace << "::"
Chris Lattner870c0162005-01-22 18:38:13 +000075 << SimilarInsts[i].CGI->TheDef->getName() << ":\n";
76 for (unsigned i = 0, e = FirstInst.Operands.size(); i != e; ++i) {
77 if (i != DifferingOperand) {
78 // If the operand is the same for all instructions, just print it.
Chris Lattnerbdff5f92006-07-18 17:18:03 +000079 O << " " << FirstInst.Operands[i].getCode();
Chris Lattner870c0162005-01-22 18:38:13 +000080 } else {
81 // If this is the operand that varies between all of the instructions,
82 // emit a switch for just this operand now.
83 O << " switch (MI->getOpcode()) {\n";
Chris Lattner38c07512005-01-22 20:31:17 +000084 std::vector<std::pair<std::string, AsmWriterOperand> > OpsToPrint;
Chris Lattnera1e8a802006-05-01 17:01:17 +000085 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace + "::" +
Chris Lattner38c07512005-01-22 20:31:17 +000086 FirstInst.CGI->TheDef->getName(),
87 FirstInst.Operands[i]));
Misha Brukman3da94ae2005-04-22 00:00:37 +000088
Chris Lattner870c0162005-01-22 18:38:13 +000089 for (unsigned si = 0, e = SimilarInsts.size(); si != e; ++si) {
Chris Lattner38c07512005-01-22 20:31:17 +000090 AsmWriterInst &AWI = SimilarInsts[si];
Chris Lattnera1e8a802006-05-01 17:01:17 +000091 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace+"::"+
Chris Lattner38c07512005-01-22 20:31:17 +000092 AWI.CGI->TheDef->getName(),
93 AWI.Operands[i]));
Chris Lattner870c0162005-01-22 18:38:13 +000094 }
Chris Lattner38c07512005-01-22 20:31:17 +000095 std::reverse(OpsToPrint.begin(), OpsToPrint.end());
96 while (!OpsToPrint.empty())
97 PrintCases(OpsToPrint, O);
Chris Lattner870c0162005-01-22 18:38:13 +000098 O << " }";
99 }
100 O << "\n";
101 }
Chris Lattner870c0162005-01-22 18:38:13 +0000102 O << " break;\n";
103}
Chris Lattnerb0b55e72005-01-22 17:32:42 +0000104
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000105void AsmWriterEmitter::
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000106FindUniqueOperandCommands(std::vector<std::string> &UniqueOperandCommands,
Chris Lattner96c1ade2006-07-18 18:28:27 +0000107 std::vector<unsigned> &InstIdxs,
108 std::vector<unsigned> &InstOpsUsed) const {
Chris Lattner195bb4a2006-07-18 19:27:30 +0000109 InstIdxs.assign(NumberedInstructions.size(), ~0U);
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000110
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000111 // This vector parallels UniqueOperandCommands, keeping track of which
112 // instructions each case are used for. It is a comma separated string of
113 // enums.
114 std::vector<std::string> InstrsForCase;
115 InstrsForCase.resize(UniqueOperandCommands.size());
Chris Lattner96c1ade2006-07-18 18:28:27 +0000116 InstOpsUsed.assign(UniqueOperandCommands.size(), 0);
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000117
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000118 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
119 const AsmWriterInst *Inst = getAsmWriterInstByID(i);
Bill Wendlingb9449d62010-07-16 23:10:00 +0000120 if (Inst == 0) continue; // PHI, INLINEASM, PROLOG_LABEL, etc.
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000121
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000122 std::string Command;
Chris Lattnerb8462862006-07-18 17:56:07 +0000123 if (Inst->Operands.empty())
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000124 continue; // Instruction already done.
Chris Lattner191dd1f2006-07-18 17:50:22 +0000125
Chris Lattnerb8462862006-07-18 17:56:07 +0000126 Command = " " + Inst->Operands[0].getCode() + "\n";
Chris Lattner191dd1f2006-07-18 17:50:22 +0000127
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000128 // Check to see if we already have 'Command' in UniqueOperandCommands.
129 // If not, add it.
130 bool FoundIt = false;
131 for (unsigned idx = 0, e = UniqueOperandCommands.size(); idx != e; ++idx)
132 if (UniqueOperandCommands[idx] == Command) {
133 InstIdxs[i] = idx;
134 InstrsForCase[idx] += ", ";
135 InstrsForCase[idx] += Inst->CGI->TheDef->getName();
136 FoundIt = true;
137 break;
138 }
139 if (!FoundIt) {
140 InstIdxs[i] = UniqueOperandCommands.size();
141 UniqueOperandCommands.push_back(Command);
142 InstrsForCase.push_back(Inst->CGI->TheDef->getName());
Chris Lattner96c1ade2006-07-18 18:28:27 +0000143
144 // This command matches one operand so far.
145 InstOpsUsed.push_back(1);
146 }
147 }
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000148
Chris Lattner96c1ade2006-07-18 18:28:27 +0000149 // For each entry of UniqueOperandCommands, there is a set of instructions
150 // that uses it. If the next command of all instructions in the set are
151 // identical, fold it into the command.
152 for (unsigned CommandIdx = 0, e = UniqueOperandCommands.size();
153 CommandIdx != e; ++CommandIdx) {
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000154
Chris Lattner96c1ade2006-07-18 18:28:27 +0000155 for (unsigned Op = 1; ; ++Op) {
156 // Scan for the first instruction in the set.
157 std::vector<unsigned>::iterator NIT =
158 std::find(InstIdxs.begin(), InstIdxs.end(), CommandIdx);
159 if (NIT == InstIdxs.end()) break; // No commonality.
160
161 // If this instruction has no more operands, we isn't anything to merge
162 // into this command.
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000163 const AsmWriterInst *FirstInst =
Chris Lattner96c1ade2006-07-18 18:28:27 +0000164 getAsmWriterInstByID(NIT-InstIdxs.begin());
165 if (!FirstInst || FirstInst->Operands.size() == Op)
166 break;
167
168 // Otherwise, scan to see if all of the other instructions in this command
169 // set share the operand.
170 bool AllSame = true;
David Greenec8d06052009-07-29 20:10:24 +0000171 // Keep track of the maximum, number of operands or any
172 // instruction we see in the group.
173 size_t MaxSize = FirstInst->Operands.size();
174
Chris Lattner96c1ade2006-07-18 18:28:27 +0000175 for (NIT = std::find(NIT+1, InstIdxs.end(), CommandIdx);
176 NIT != InstIdxs.end();
177 NIT = std::find(NIT+1, InstIdxs.end(), CommandIdx)) {
178 // Okay, found another instruction in this command set. If the operand
179 // matches, we're ok, otherwise bail out.
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000180 const AsmWriterInst *OtherInst =
Chris Lattner96c1ade2006-07-18 18:28:27 +0000181 getAsmWriterInstByID(NIT-InstIdxs.begin());
David Greenec8d06052009-07-29 20:10:24 +0000182
183 if (OtherInst &&
184 OtherInst->Operands.size() > FirstInst->Operands.size())
185 MaxSize = std::max(MaxSize, OtherInst->Operands.size());
186
Chris Lattner96c1ade2006-07-18 18:28:27 +0000187 if (!OtherInst || OtherInst->Operands.size() == Op ||
188 OtherInst->Operands[Op] != FirstInst->Operands[Op]) {
189 AllSame = false;
190 break;
191 }
192 }
193 if (!AllSame) break;
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000194
Chris Lattner96c1ade2006-07-18 18:28:27 +0000195 // Okay, everything in this command set has the same next operand. Add it
196 // to UniqueOperandCommands and remember that it was consumed.
197 std::string Command = " " + FirstInst->Operands[Op].getCode() + "\n";
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000198
Chris Lattner96c1ade2006-07-18 18:28:27 +0000199 UniqueOperandCommands[CommandIdx] += Command;
200 InstOpsUsed[CommandIdx]++;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000201 }
202 }
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000203
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000204 // Prepend some of the instructions each case is used for onto the case val.
205 for (unsigned i = 0, e = InstrsForCase.size(); i != e; ++i) {
206 std::string Instrs = InstrsForCase[i];
207 if (Instrs.size() > 70) {
208 Instrs.erase(Instrs.begin()+70, Instrs.end());
209 Instrs += "...";
210 }
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000211
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000212 if (!Instrs.empty())
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000213 UniqueOperandCommands[i] = " // " + Instrs + "\n" +
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000214 UniqueOperandCommands[i];
215 }
216}
217
218
Daniel Dunbar9bd34602009-10-17 20:43:42 +0000219static void UnescapeString(std::string &Str) {
220 for (unsigned i = 0; i != Str.size(); ++i) {
221 if (Str[i] == '\\' && i != Str.size()-1) {
222 switch (Str[i+1]) {
223 default: continue; // Don't execute the code after the switch.
224 case 'a': Str[i] = '\a'; break;
225 case 'b': Str[i] = '\b'; break;
226 case 'e': Str[i] = 27; break;
227 case 'f': Str[i] = '\f'; break;
228 case 'n': Str[i] = '\n'; break;
229 case 'r': Str[i] = '\r'; break;
230 case 't': Str[i] = '\t'; break;
231 case 'v': Str[i] = '\v'; break;
232 case '"': Str[i] = '\"'; break;
233 case '\'': Str[i] = '\''; break;
234 case '\\': Str[i] = '\\'; break;
235 }
236 // Nuke the second character.
237 Str.erase(Str.begin()+i+1);
238 }
239 }
240}
241
Chris Lattner05af2612009-09-13 20:08:00 +0000242/// EmitPrintInstruction - Generate the code for the "printInstruction" method
243/// implementation.
244void AsmWriterEmitter::EmitPrintInstruction(raw_ostream &O) {
Chris Lattner67db8832010-12-13 00:23:57 +0000245 CodeGenTarget Target(Records);
Chris Lattner175580c2004-08-14 22:50:53 +0000246 Record *AsmWriter = Target.getAsmWriter();
Chris Lattner953c6fe2004-10-03 20:19:02 +0000247 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
Jim Grosbachca96a862010-09-30 01:29:54 +0000248 bool isMC = AsmWriter->getValueAsBit("isMCAsmWriter");
249 const char *MachineInstrClassName = isMC ? "MCInst" : "MachineInstr";
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000250
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000251 O <<
252 "/// printInstruction - This method is automatically generated by tablegen\n"
Chris Lattner05af2612009-09-13 20:08:00 +0000253 "/// from the instruction set description.\n"
Chris Lattner41aefdc2009-08-08 01:32:19 +0000254 "void " << Target.getName() << ClassName
Jim Grosbachca96a862010-09-30 01:29:54 +0000255 << "::printInstruction(const " << MachineInstrClassName
256 << " *MI, raw_ostream &O) {\n";
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000257
Chris Lattner5765dba2005-01-22 17:40:38 +0000258 std::vector<AsmWriterInst> Instructions;
259
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000260 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
261 E = Target.inst_end(); I != E; ++I)
Chris Lattner6a91b182010-03-19 01:00:55 +0000262 if (!(*I)->AsmString.empty() &&
263 (*I)->TheDef->getName() != "PHI")
Sean Callanand0bc7f02010-02-09 23:06:35 +0000264 Instructions.push_back(
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000265 AsmWriterInst(**I,
Sean Callanand0bc7f02010-02-09 23:06:35 +0000266 AsmWriter->getValueAsInt("Variant"),
267 AsmWriter->getValueAsInt("FirstOperandColumn"),
268 AsmWriter->getValueAsInt("OperandSpacing")));
Chris Lattner076efa72004-08-01 07:43:02 +0000269
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000270 // Get the instruction numbering.
Chris Lattnerf6502782010-03-19 00:34:35 +0000271 NumberedInstructions = Target.getInstructionsByEnumValue();
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000272
Chris Lattner6af022f2006-07-14 22:59:11 +0000273 // Compute the CodeGenInstruction -> AsmWriterInst mapping. Note that not
274 // all machine instructions are necessarily being printed, so there may be
275 // target instructions not in this map.
Chris Lattner6af022f2006-07-14 22:59:11 +0000276 for (unsigned i = 0, e = Instructions.size(); i != e; ++i)
277 CGIAWIMap.insert(std::make_pair(Instructions[i].CGI, &Instructions[i]));
Chris Lattnerf8766682005-01-22 19:22:23 +0000278
Chris Lattner6af022f2006-07-14 22:59:11 +0000279 // Build an aggregate string, and build a table of offsets into it.
Chris Lattner3200fc92009-09-14 01:16:36 +0000280 StringToOffsetTable StringTable;
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000281
Chris Lattner259bda42006-09-27 16:44:09 +0000282 /// OpcodeInfo - This encodes the index of the string to use for the first
Chris Lattner55616402006-07-18 17:32:27 +0000283 /// chunk of the output as well as indices used for operand printing.
284 std::vector<unsigned> OpcodeInfo;
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000285
Chris Lattner55616402006-07-18 17:32:27 +0000286 unsigned MaxStringIdx = 0;
Chris Lattner6af022f2006-07-14 22:59:11 +0000287 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
288 AsmWriterInst *AWI = CGIAWIMap[NumberedInstructions[i]];
289 unsigned Idx;
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000290 if (AWI == 0) {
Chris Lattner6af022f2006-07-14 22:59:11 +0000291 // Something not handled by the asmwriter printer.
Chris Lattner3200fc92009-09-14 01:16:36 +0000292 Idx = ~0U;
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000293 } else if (AWI->Operands[0].OperandType !=
Chris Lattnera6dc9fb2006-07-19 01:39:06 +0000294 AsmWriterOperand::isLiteralTextOperand ||
295 AWI->Operands[0].Str.empty()) {
296 // Something handled by the asmwriter printer, but with no leading string.
Chris Lattner3200fc92009-09-14 01:16:36 +0000297 Idx = StringTable.GetOrAddStringOffset("");
Chris Lattner6af022f2006-07-14 22:59:11 +0000298 } else {
Chris Lattner3200fc92009-09-14 01:16:36 +0000299 std::string Str = AWI->Operands[0].Str;
300 UnescapeString(Str);
301 Idx = StringTable.GetOrAddStringOffset(Str);
302 MaxStringIdx = std::max(MaxStringIdx, Idx);
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000303
Chris Lattner6af022f2006-07-14 22:59:11 +0000304 // Nuke the string from the operand list. It is now handled!
305 AWI->Operands.erase(AWI->Operands.begin());
Chris Lattnerf8766682005-01-22 19:22:23 +0000306 }
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000307
Chris Lattner3200fc92009-09-14 01:16:36 +0000308 // Bias offset by one since we want 0 as a sentinel.
Craig Topper88d2fa42012-03-08 06:55:27 +0000309 assert((Idx+1) <= 0xffff && "String offset too large to fit in table");
Chris Lattner3200fc92009-09-14 01:16:36 +0000310 OpcodeInfo.push_back(Idx+1);
Chris Lattnerf8766682005-01-22 19:22:23 +0000311 }
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000312
Chris Lattner55616402006-07-18 17:32:27 +0000313 // Figure out how many bits we used for the string index.
Chris Lattner3200fc92009-09-14 01:16:36 +0000314 unsigned AsmStrBits = Log2_32_Ceil(MaxStringIdx+2);
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000315
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000316 // To reduce code size, we compactify common instructions into a few bits
317 // in the opcode-indexed table.
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000318 unsigned BitsLeft = 32-AsmStrBits;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000319
320 std::vector<std::vector<std::string> > TableDrivenOperandPrinters;
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000321
Chris Lattnerb8462862006-07-18 17:56:07 +0000322 while (1) {
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000323 std::vector<std::string> UniqueOperandCommands;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000324 std::vector<unsigned> InstIdxs;
Chris Lattner96c1ade2006-07-18 18:28:27 +0000325 std::vector<unsigned> NumInstOpsHandled;
326 FindUniqueOperandCommands(UniqueOperandCommands, InstIdxs,
327 NumInstOpsHandled);
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000328
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000329 // If we ran out of operands to print, we're done.
330 if (UniqueOperandCommands.empty()) break;
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000331
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000332 // Compute the number of bits we need to represent these cases, this is
333 // ceil(log2(numentries)).
334 unsigned NumBits = Log2_32_Ceil(UniqueOperandCommands.size());
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000335
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000336 // If we don't have enough bits for this operand, don't include it.
337 if (NumBits > BitsLeft) {
Chris Lattner569f1212009-08-23 04:44:11 +0000338 DEBUG(errs() << "Not enough bits to densely encode " << NumBits
339 << " more bits\n");
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000340 break;
341 }
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000342
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000343 // Otherwise, we can include this in the initial lookup table. Add it in.
344 BitsLeft -= NumBits;
345 for (unsigned i = 0, e = InstIdxs.size(); i != e; ++i)
Chris Lattner195bb4a2006-07-18 19:27:30 +0000346 if (InstIdxs[i] != ~0U)
347 OpcodeInfo[i] |= InstIdxs[i] << (BitsLeft+AsmStrBits);
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000348
Chris Lattnerb8462862006-07-18 17:56:07 +0000349 // Remove the info about this operand.
350 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
351 if (AsmWriterInst *Inst = getAsmWriterInstByID(i))
Chris Lattner96c1ade2006-07-18 18:28:27 +0000352 if (!Inst->Operands.empty()) {
353 unsigned NumOps = NumInstOpsHandled[InstIdxs[i]];
Chris Lattner0a012122006-07-18 19:06:01 +0000354 assert(NumOps <= Inst->Operands.size() &&
355 "Can't remove this many ops!");
Chris Lattner96c1ade2006-07-18 18:28:27 +0000356 Inst->Operands.erase(Inst->Operands.begin(),
357 Inst->Operands.begin()+NumOps);
358 }
Chris Lattnerb8462862006-07-18 17:56:07 +0000359 }
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000360
Chris Lattnerb8462862006-07-18 17:56:07 +0000361 // Remember the handlers for this set of operands.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000362 TableDrivenOperandPrinters.push_back(UniqueOperandCommands);
363 }
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000364
365
366
Chris Lattner55616402006-07-18 17:32:27 +0000367 O<<" static const unsigned OpInfo[] = {\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000368 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000369 O << " " << OpcodeInfo[i] << "U,\t// "
Chris Lattner55616402006-07-18 17:32:27 +0000370 << NumberedInstructions[i]->TheDef->getName() << "\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000371 }
372 // Add a dummy entry so the array init doesn't end with a comma.
Chris Lattner55616402006-07-18 17:32:27 +0000373 O << " 0U\n";
Chris Lattner6af022f2006-07-14 22:59:11 +0000374 O << " };\n\n";
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000375
Chris Lattner6af022f2006-07-14 22:59:11 +0000376 // Emit the string itself.
Craig Topper88d2fa42012-03-08 06:55:27 +0000377 O << " const char *const AsmStrs = \n";
Chris Lattner3200fc92009-09-14 01:16:36 +0000378 StringTable.EmitString(O);
379 O << ";\n\n";
Chris Lattner6af022f2006-07-14 22:59:11 +0000380
Evan Cheng4eecdeb2008-02-02 08:39:46 +0000381 O << " O << \"\\t\";\n\n";
382
Chris Lattner6af022f2006-07-14 22:59:11 +0000383 O << " // Emit the opcode for the instruction.\n"
Chris Lattner55616402006-07-18 17:32:27 +0000384 << " unsigned Bits = OpInfo[MI->getOpcode()];\n"
Chris Lattner41aefdc2009-08-08 01:32:19 +0000385 << " assert(Bits != 0 && \"Cannot print this instruction.\");\n"
Chris Lattner3200fc92009-09-14 01:16:36 +0000386 << " O << AsmStrs+(Bits & " << (1 << AsmStrBits)-1 << ")-1;\n\n";
David Greenea5bb59f2009-08-05 21:00:52 +0000387
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000388 // Output the table driven operand information.
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000389 BitsLeft = 32-AsmStrBits;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000390 for (unsigned i = 0, e = TableDrivenOperandPrinters.size(); i != e; ++i) {
391 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i];
392
393 // Compute the number of bits we need to represent these cases, this is
394 // ceil(log2(numentries)).
395 unsigned NumBits = Log2_32_Ceil(Commands.size());
396 assert(NumBits <= BitsLeft && "consistency error");
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000397
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000398 // Emit code to extract this field from Bits.
399 BitsLeft -= NumBits;
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000400
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000401 O << "\n // Fragment " << i << " encoded into " << NumBits
Chris Lattnere7a589d2006-07-18 17:43:54 +0000402 << " bits for " << Commands.size() << " unique commands.\n";
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000403
Chris Lattner96c1ade2006-07-18 18:28:27 +0000404 if (Commands.size() == 2) {
Chris Lattnere7a589d2006-07-18 17:43:54 +0000405 // Emit two possibilitys with if/else.
406 O << " if ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
407 << ((1 << NumBits)-1) << ") {\n"
408 << Commands[1]
409 << " } else {\n"
410 << Commands[0]
411 << " }\n\n";
Eric Christopher16870502010-09-18 18:50:27 +0000412 } else if (Commands.size() == 1) {
413 // Emit a single possibility.
414 O << Commands[0] << "\n\n";
Chris Lattnere7a589d2006-07-18 17:43:54 +0000415 } else {
416 O << " switch ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
417 << ((1 << NumBits)-1) << ") {\n"
418 << " default: // unreachable.\n";
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000419
Chris Lattnere7a589d2006-07-18 17:43:54 +0000420 // Print out all the cases.
421 for (unsigned i = 0, e = Commands.size(); i != e; ++i) {
422 O << " case " << i << ":\n";
423 O << Commands[i];
424 O << " break;\n";
425 }
426 O << " }\n\n";
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000427 }
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000428 }
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000429
Chris Lattnerb8462862006-07-18 17:56:07 +0000430 // Okay, delete instructions with no operand info left.
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000431 for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
432 // Entire instruction has been emitted?
433 AsmWriterInst &Inst = Instructions[i];
Chris Lattnerb8462862006-07-18 17:56:07 +0000434 if (Inst.Operands.empty()) {
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000435 Instructions.erase(Instructions.begin()+i);
Chris Lattnerb8462862006-07-18 17:56:07 +0000436 --i; --e;
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000437 }
438 }
439
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000440
Chris Lattnerbdff5f92006-07-18 17:18:03 +0000441 // Because this is a vector, we want to emit from the end. Reverse all of the
Chris Lattner870c0162005-01-22 18:38:13 +0000442 // elements in the vector.
443 std::reverse(Instructions.begin(), Instructions.end());
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000444
445
Chris Lattner70067602009-09-18 18:10:19 +0000446 // Now that we've emitted all of the operand info that fit into 32 bits, emit
447 // information for those instructions that are left. This is a less dense
448 // encoding, but we expect the main 32-bit table to handle the majority of
449 // instructions.
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000450 if (!Instructions.empty()) {
451 // Find the opcode # of inline asm.
452 O << " switch (MI->getOpcode()) {\n";
453 while (!Instructions.empty())
454 EmitInstructions(Instructions, O);
Chris Lattner870c0162005-01-22 18:38:13 +0000455
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000456 O << " }\n";
Chris Lattner41aefdc2009-08-08 01:32:19 +0000457 O << " return;\n";
Chris Lattnerb51ecd42006-07-18 17:38:46 +0000458 }
David Greenec8d06052009-07-29 20:10:24 +0000459
Chris Lattner0a012122006-07-18 19:06:01 +0000460 O << "}\n";
Chris Lattner2e1f51b2004-08-01 05:59:33 +0000461}
Chris Lattner05af2612009-09-13 20:08:00 +0000462
Owen Andersonbea6f612011-06-27 21:06:21 +0000463static void
464emitRegisterNameString(raw_ostream &O, StringRef AltName,
465 const std::vector<CodeGenRegister*> &Registers) {
466 StringToOffsetTable StringTable;
Jakob Stoklund Olesend66b9a22012-03-15 18:05:54 +0000467 O << " static const unsigned RegAsmOffset" << AltName << "[] = {\n ";
Owen Andersonbea6f612011-06-27 21:06:21 +0000468 for (unsigned i = 0, e = Registers.size(); i != e; ++i) {
469 const CodeGenRegister &Reg = *Registers[i];
470
Francois Pichet2e10b082011-06-29 11:25:34 +0000471 std::string AsmName;
Owen Andersonbea6f612011-06-27 21:06:21 +0000472 // "NoRegAltName" is special. We don't need to do a lookup for that,
473 // as it's just a reference to the default register name.
474 if (AltName == "" || AltName == "NoRegAltName") {
475 AsmName = Reg.TheDef->getValueAsString("AsmName");
476 if (AsmName.empty())
477 AsmName = Reg.getName();
478 } else {
479 // Make sure the register has an alternate name for this index.
480 std::vector<Record*> AltNameList =
481 Reg.TheDef->getValueAsListOfDefs("RegAltNameIndices");
482 unsigned Idx = 0, e;
483 for (e = AltNameList.size();
484 Idx < e && (AltNameList[Idx]->getName() != AltName);
485 ++Idx)
486 ;
487 // If the register has an alternate name for this index, use it.
488 // Otherwise, leave it empty as an error flag.
489 if (Idx < e) {
490 std::vector<std::string> AltNames =
491 Reg.TheDef->getValueAsListOfStrings("AltNames");
492 if (AltNames.size() <= Idx)
493 throw TGError(Reg.TheDef->getLoc(),
494 (Twine("Register definition missing alt name for '") +
495 AltName + "'.").str());
496 AsmName = AltNames[Idx];
497 }
498 }
499
Craig Topper88d2fa42012-03-08 06:55:27 +0000500 unsigned Idx = StringTable.GetOrAddStringOffset(AsmName);
501 assert(Idx <= 0xffff && "String offset too large to fit in table");
502 O << Idx;
Owen Andersonbea6f612011-06-27 21:06:21 +0000503 if (((i + 1) % 14) == 0)
504 O << ",\n ";
505 else
506 O << ", ";
507
508 }
509 O << "0\n"
510 << " };\n"
511 << "\n";
512
Jakob Stoklund Olesend66b9a22012-03-15 18:05:54 +0000513 O << " const char *AsmStrs" << AltName << " =\n";
Owen Andersonbea6f612011-06-27 21:06:21 +0000514 StringTable.EmitString(O);
515 O << ";\n";
516}
Chris Lattner05af2612009-09-13 20:08:00 +0000517
518void AsmWriterEmitter::EmitGetRegisterName(raw_ostream &O) {
Chris Lattner67db8832010-12-13 00:23:57 +0000519 CodeGenTarget Target(Records);
Chris Lattner05af2612009-09-13 20:08:00 +0000520 Record *AsmWriter = Target.getAsmWriter();
521 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +0000522 const std::vector<CodeGenRegister*> &Registers =
523 Target.getRegBank().getRegisters();
Owen Andersonbea6f612011-06-27 21:06:21 +0000524 std::vector<Record*> AltNameIndices = Target.getRegAltNameIndices();
525 bool hasAltNames = AltNameIndices.size() > 1;
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000526
Chris Lattner05af2612009-09-13 20:08:00 +0000527 O <<
528 "\n\n/// getRegisterName - This method is automatically generated by tblgen\n"
529 "/// from the register set description. This returns the assembler name\n"
530 "/// for the specified register.\n"
Owen Andersonbea6f612011-06-27 21:06:21 +0000531 "const char *" << Target.getName() << ClassName << "::";
532 if (hasAltNames)
533 O << "\ngetRegisterName(unsigned RegNo, unsigned AltIdx) {\n";
534 else
535 O << "getRegisterName(unsigned RegNo) {\n";
536 O << " assert(RegNo && RegNo < " << (Registers.size()+1)
537 << " && \"Invalid register number!\");\n"
Chris Lattnerf6761be2009-09-14 01:26:18 +0000538 << "\n";
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000539
Owen Andersonbea6f612011-06-27 21:06:21 +0000540 if (hasAltNames) {
541 for (unsigned i = 0, e = AltNameIndices.size(); i < e; ++i)
542 emitRegisterNameString(O, AltNameIndices[i]->getName(), Registers);
543 } else
544 emitRegisterNameString(O, "", Registers);
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000545
Owen Andersonbea6f612011-06-27 21:06:21 +0000546 if (hasAltNames) {
Jakob Stoklund Olesend66b9a22012-03-15 18:05:54 +0000547 O << " const unsigned *RegAsmOffset;\n"
Owen Andersonbea6f612011-06-27 21:06:21 +0000548 << " const char *AsmStrs;\n"
549 << " switch(AltIdx) {\n"
Craig Topper655b8de2012-02-05 07:21:30 +0000550 << " default: llvm_unreachable(\"Invalid register alt name index!\");\n";
Owen Andersonbea6f612011-06-27 21:06:21 +0000551 for (unsigned i = 0, e = AltNameIndices.size(); i < e; ++i) {
552 StringRef Namespace = AltNameIndices[1]->getValueAsString("Namespace");
553 StringRef AltName(AltNameIndices[i]->getName());
554 O << " case " << Namespace << "::" << AltName
555 << ":\n"
556 << " AsmStrs = AsmStrs" << AltName << ";\n"
557 << " RegAsmOffset = RegAsmOffset" << AltName << ";\n"
558 << " break;\n";
559 }
560 O << "}\n";
561 }
562
563 O << " assert (*(AsmStrs+RegAsmOffset[RegNo-1]) &&\n"
564 << " \"Invalid alt name index for register!\");\n"
565 << " return AsmStrs+RegAsmOffset[RegNo-1];\n"
Chris Lattner05af2612009-09-13 20:08:00 +0000566 << "}\n";
567}
568
Chris Lattner0d7b0aa2010-02-11 22:57:32 +0000569void AsmWriterEmitter::EmitGetInstructionName(raw_ostream &O) {
Chris Lattner67db8832010-12-13 00:23:57 +0000570 CodeGenTarget Target(Records);
Chris Lattner0d7b0aa2010-02-11 22:57:32 +0000571 Record *AsmWriter = Target.getAsmWriter();
572 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
573
Chris Lattnerf6502782010-03-19 00:34:35 +0000574 const std::vector<const CodeGenInstruction*> &NumberedInstructions =
575 Target.getInstructionsByEnumValue();
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000576
Chris Lattner0d7b0aa2010-02-11 22:57:32 +0000577 StringToOffsetTable StringTable;
578 O <<
579"\n\n#ifdef GET_INSTRUCTION_NAME\n"
580"#undef GET_INSTRUCTION_NAME\n\n"
581"/// getInstructionName: This method is automatically generated by tblgen\n"
582"/// from the instruction set description. This returns the enum name of the\n"
583"/// specified instruction.\n"
584 "const char *" << Target.getName() << ClassName
585 << "::getInstructionName(unsigned Opcode) {\n"
586 << " assert(Opcode < " << NumberedInstructions.size()
587 << " && \"Invalid instruction number!\");\n"
588 << "\n"
Jakob Stoklund Olesend66b9a22012-03-15 18:05:54 +0000589 << " static const unsigned InstAsmOffset[] = {";
Chris Lattner0d7b0aa2010-02-11 22:57:32 +0000590 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
591 const CodeGenInstruction &Inst = *NumberedInstructions[i];
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000592
Chris Lattner0d7b0aa2010-02-11 22:57:32 +0000593 std::string AsmName = Inst.TheDef->getName();
594 if ((i % 14) == 0)
595 O << "\n ";
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000596
Craig Topper88d2fa42012-03-08 06:55:27 +0000597 unsigned Idx = StringTable.GetOrAddStringOffset(AsmName);
598 assert(Idx <= 0xffff && "String offset too large to fit in table");
599 O << Idx << ", ";
Chris Lattner0d7b0aa2010-02-11 22:57:32 +0000600 }
601 O << "0\n"
602 << " };\n"
603 << "\n";
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000604
Jakob Stoklund Olesend66b9a22012-03-15 18:05:54 +0000605 O << " const char *Strs =\n";
Chris Lattner0d7b0aa2010-02-11 22:57:32 +0000606 StringTable.EmitString(O);
607 O << ";\n";
Jim Grosbach9255b8d2010-09-29 22:32:50 +0000608
Chris Lattner0d7b0aa2010-02-11 22:57:32 +0000609 O << " return Strs+InstAsmOffset[Opcode];\n"
610 << "}\n\n#endif\n";
611}
612
Bill Wendling2cf6fc62011-03-21 08:31:53 +0000613namespace {
Bill Wendling4962e612011-03-21 08:40:31 +0000614// IAPrinter - Holds information about an InstAlias. Two InstAliases match if
615// they both have the same conditionals. In which case, we cannot print out the
616// alias for that pattern.
617class IAPrinter {
Bill Wendling4962e612011-03-21 08:40:31 +0000618 std::vector<std::string> Conds;
619 std::map<StringRef, unsigned> OpMap;
620 std::string Result;
621 std::string AsmString;
622 std::vector<Record*> ReqFeatures;
623public:
Evan Cheng68ae5b42011-07-06 02:02:33 +0000624 IAPrinter(std::string R, std::string AS)
625 : Result(R), AsmString(AS) {}
Bill Wendling4962e612011-03-21 08:40:31 +0000626
627 void addCond(const std::string &C) { Conds.push_back(C); }
Bill Wendling4962e612011-03-21 08:40:31 +0000628
629 void addOperand(StringRef Op, unsigned Idx) { OpMap[Op] = Idx; }
630 unsigned getOpIndex(StringRef Op) { return OpMap[Op]; }
631 bool isOpMapped(StringRef Op) { return OpMap.find(Op) != OpMap.end(); }
632
Evan Cheng68ae5b42011-07-06 02:02:33 +0000633 void print(raw_ostream &O) {
Bill Wendling44dcfd32011-04-07 21:20:06 +0000634 if (Conds.empty() && ReqFeatures.empty()) {
635 O.indent(6) << "return true;\n";
Evan Cheng68ae5b42011-07-06 02:02:33 +0000636 return;
Bill Wendling44dcfd32011-04-07 21:20:06 +0000637 }
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000638
Bill Wendling44dcfd32011-04-07 21:20:06 +0000639 O << "if (";
Bill Wendling4962e612011-03-21 08:40:31 +0000640
641 for (std::vector<std::string>::iterator
642 I = Conds.begin(), E = Conds.end(); I != E; ++I) {
643 if (I != Conds.begin()) {
644 O << " &&\n";
Bill Wendling44dcfd32011-04-07 21:20:06 +0000645 O.indent(8);
Bill Wendling4962e612011-03-21 08:40:31 +0000646 }
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000647
Bill Wendling4962e612011-03-21 08:40:31 +0000648 O << *I;
649 }
650
Bill Wendling44dcfd32011-04-07 21:20:06 +0000651 O << ") {\n";
652 O.indent(6) << "// " << Result << "\n";
653 O.indent(6) << "AsmString = \"" << AsmString << "\";\n";
Bill Wendling4962e612011-03-21 08:40:31 +0000654
655 for (std::map<StringRef, unsigned>::iterator
656 I = OpMap.begin(), E = OpMap.end(); I != E; ++I)
Bill Wendlingf415d8b2011-05-23 00:18:33 +0000657 O.indent(6) << "OpMap.push_back(std::make_pair(\"" << I->first << "\", "
658 << I->second << "));\n";
Bill Wendling4962e612011-03-21 08:40:31 +0000659
Bill Wendling44dcfd32011-04-07 21:20:06 +0000660 O.indent(6) << "break;\n";
661 O.indent(4) << '}';
Bill Wendling4962e612011-03-21 08:40:31 +0000662 }
663
664 bool operator==(const IAPrinter &RHS) {
665 if (Conds.size() != RHS.Conds.size())
666 return false;
667
668 unsigned Idx = 0;
669 for (std::vector<std::string>::iterator
670 I = Conds.begin(), E = Conds.end(); I != E; ++I)
671 if (*I != RHS.Conds[Idx++])
672 return false;
673
674 return true;
675 }
676
677 bool operator()(const IAPrinter &RHS) {
678 if (Conds.size() < RHS.Conds.size())
679 return true;
680
681 unsigned Idx = 0;
682 for (std::vector<std::string>::iterator
683 I = Conds.begin(), E = Conds.end(); I != E; ++I)
684 if (*I != RHS.Conds[Idx++])
685 return *I < RHS.Conds[Idx++];
686
687 return false;
688 }
689};
690
Bill Wendling2cf6fc62011-03-21 08:31:53 +0000691} // end anonymous namespace
692
Bill Wendlingf415d8b2011-05-23 00:18:33 +0000693static void EmitGetMapOperandNumber(raw_ostream &O) {
694 O << "static unsigned getMapOperandNumber("
695 << "const SmallVectorImpl<std::pair<StringRef, unsigned> > &OpMap,\n";
696 O << " StringRef Name) {\n";
697 O << " for (SmallVectorImpl<std::pair<StringRef, unsigned> >::"
698 << "const_iterator\n";
699 O << " I = OpMap.begin(), E = OpMap.end(); I != E; ++I)\n";
700 O << " if (I->first == Name)\n";
701 O << " return I->second;\n";
702 O << " assert(false && \"Operand not in map!\");\n";
703 O << " return 0;\n";
704 O << "}\n\n";
705}
706
Bill Wendling2cf6fc62011-03-21 08:31:53 +0000707void AsmWriterEmitter::EmitRegIsInRegClass(raw_ostream &O) {
708 CodeGenTarget Target(Records);
Bill Wendling7520e3a2011-02-26 03:09:12 +0000709
710 // Enumerate the register classes.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +0000711 ArrayRef<CodeGenRegisterClass*> RegisterClasses =
712 Target.getRegBank().getRegClasses();
Bill Wendling7520e3a2011-02-26 03:09:12 +0000713
714 O << "namespace { // Register classes\n";
715 O << " enum RegClass {\n";
716
717 // Emit the register enum value for each RegisterClass.
718 for (unsigned I = 0, E = RegisterClasses.size(); I != E; ++I) {
719 if (I != 0) O << ",\n";
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +0000720 O << " RC_" << RegisterClasses[I]->getName();
Bill Wendling7520e3a2011-02-26 03:09:12 +0000721 }
722
723 O << "\n };\n";
724 O << "} // end anonymous namespace\n\n";
725
726 // Emit a function that returns 'true' if a regsiter is part of a particular
727 // register class. I.e., RAX is part of GR64 on X86.
728 O << "static bool regIsInRegisterClass"
729 << "(unsigned RegClass, unsigned Reg) {\n";
730
731 // Emit the switch that checks if a register belongs to a particular register
732 // class.
733 O << " switch (RegClass) {\n";
734 O << " default: break;\n";
735
736 for (unsigned I = 0, E = RegisterClasses.size(); I != E; ++I) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +0000737 const CodeGenRegisterClass &RC = *RegisterClasses[I];
Bill Wendling7520e3a2011-02-26 03:09:12 +0000738
739 // Give the register class a legal C name if it's anonymous.
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +0000740 std::string Name = RC.getName();
Bill Wendling7520e3a2011-02-26 03:09:12 +0000741 O << " case RC_" << Name << ":\n";
742
743 // Emit the register list now.
Jakob Stoklund Olesenae1920b2011-06-15 04:50:36 +0000744 unsigned IE = RC.getOrder().size();
Bill Wendling7520e3a2011-02-26 03:09:12 +0000745 if (IE == 1) {
Jakob Stoklund Olesenae1920b2011-06-15 04:50:36 +0000746 O << " if (Reg == " << getQualifiedName(RC.getOrder()[0]) << ")\n";
Bill Wendling7520e3a2011-02-26 03:09:12 +0000747 O << " return true;\n";
748 } else {
749 O << " switch (Reg) {\n";
750 O << " default: break;\n";
751
752 for (unsigned II = 0; II != IE; ++II) {
Jakob Stoklund Olesenae1920b2011-06-15 04:50:36 +0000753 Record *Reg = RC.getOrder()[II];
Bill Wendling7520e3a2011-02-26 03:09:12 +0000754 O << " case " << getQualifiedName(Reg) << ":\n";
755 }
756
757 O << " return true;\n";
758 O << " }\n";
759 }
760
761 O << " break;\n";
762 }
763
764 O << " }\n\n";
765 O << " return false;\n";
766 O << "}\n\n";
Bill Wendling2cf6fc62011-03-21 08:31:53 +0000767}
768
Bill Wendling740e5b32011-06-14 03:17:20 +0000769static unsigned CountNumOperands(StringRef AsmString) {
770 unsigned NumOps = 0;
771 std::pair<StringRef, StringRef> ASM = AsmString.split(' ');
772
773 while (!ASM.second.empty()) {
774 ++NumOps;
775 ASM = ASM.second.split(' ');
776 }
777
778 return NumOps;
779}
780
Bill Wendling393c4042011-06-15 04:31:19 +0000781static unsigned CountResultNumOperands(StringRef AsmString) {
782 unsigned NumOps = 0;
783 std::pair<StringRef, StringRef> ASM = AsmString.split('\t');
784
785 if (!ASM.second.empty()) {
786 size_t I = ASM.second.find('{');
787 StringRef Str = ASM.second;
788 if (I != StringRef::npos)
789 Str = ASM.second.substr(I, ASM.second.find('|', I));
790
791 ASM = Str.split(' ');
792
793 do {
794 ++NumOps;
795 ASM = ASM.second.split(' ');
796 } while (!ASM.second.empty());
797 }
798
799 return NumOps;
800}
Bill Wendling740e5b32011-06-14 03:17:20 +0000801
Bill Wendling2cf6fc62011-03-21 08:31:53 +0000802void AsmWriterEmitter::EmitPrintAliasInstruction(raw_ostream &O) {
803 CodeGenTarget Target(Records);
804 Record *AsmWriter = Target.getAsmWriter();
805
Bill Wendling740e5b32011-06-14 03:17:20 +0000806 if (!AsmWriter->getValueAsBit("isMCAsmWriter"))
807 return;
808
Bill Wendling2cf6fc62011-03-21 08:31:53 +0000809 O << "\n#ifdef PRINT_ALIAS_INSTR\n";
810 O << "#undef PRINT_ALIAS_INSTR\n\n";
811
812 EmitRegIsInRegClass(O);
Bill Wendling7520e3a2011-02-26 03:09:12 +0000813
814 // Emit the method that prints the alias instruction.
815 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
816
Bill Wendling7520e3a2011-02-26 03:09:12 +0000817 std::vector<Record*> AllInstAliases =
818 Records.getAllDerivedDefinitions("InstAlias");
819
820 // Create a map from the qualified name to a list of potential matches.
821 std::map<std::string, std::vector<CodeGenInstAlias*> > AliasMap;
822 for (std::vector<Record*>::iterator
823 I = AllInstAliases.begin(), E = AllInstAliases.end(); I != E; ++I) {
824 CodeGenInstAlias *Alias = new CodeGenInstAlias(*I, Target);
825 const Record *R = *I;
Bill Wendlingeef965f2011-04-13 23:36:21 +0000826 if (!R->getValueAsBit("EmitAlias"))
827 continue; // We were told not to emit the alias, but to emit the aliasee.
Bill Wendling7520e3a2011-02-26 03:09:12 +0000828 const DagInit *DI = R->getValueAsDag("ResultInst");
829 const DefInit *Op = dynamic_cast<const DefInit*>(DI->getOperator());
830 AliasMap[getQualifiedName(Op->getDef())].push_back(Alias);
831 }
832
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000833 // A map of which conditions need to be met for each instruction operand
834 // before it can be matched to the mnemonic.
835 std::map<std::string, std::vector<IAPrinter*> > IAPrinterMap;
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000836
837 for (std::map<std::string, std::vector<CodeGenInstAlias*> >::iterator
838 I = AliasMap.begin(), E = AliasMap.end(); I != E; ++I) {
839 std::vector<CodeGenInstAlias*> &Aliases = I->second;
840
841 for (std::vector<CodeGenInstAlias*>::iterator
842 II = Aliases.begin(), IE = Aliases.end(); II != IE; ++II) {
843 const CodeGenInstAlias *CGA = *II;
Bill Wendling740e5b32011-06-14 03:17:20 +0000844 unsigned LastOpNo = CGA->ResultInstOperandIndex.size();
Bill Wendling393c4042011-06-15 04:31:19 +0000845 unsigned NumResultOps =
846 CountResultNumOperands(CGA->ResultInst->AsmString);
Bill Wendling740e5b32011-06-14 03:17:20 +0000847
848 // Don't emit the alias if it has more operands than what it's aliasing.
Bill Wendling393c4042011-06-15 04:31:19 +0000849 if (NumResultOps < CountNumOperands(CGA->AsmString))
Bill Wendling740e5b32011-06-14 03:17:20 +0000850 continue;
851
Evan Cheng68ae5b42011-07-06 02:02:33 +0000852 IAPrinter *IAP = new IAPrinter(CGA->Result->getAsString(),
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000853 CGA->AsmString);
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000854
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000855 std::string Cond;
856 Cond = std::string("MI->getNumOperands() == ") + llvm::utostr(LastOpNo);
857 IAP->addCond(Cond);
858
859 std::map<StringRef, unsigned> OpMap;
860 bool CantHandle = false;
861
862 for (unsigned i = 0, e = LastOpNo; i != e; ++i) {
863 const CodeGenInstAlias::ResultOperand &RO = CGA->ResultOperands[i];
864
865 switch (RO.Kind) {
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000866 case CodeGenInstAlias::ResultOperand::K_Record: {
867 const Record *Rec = RO.getRecord();
868 StringRef ROName = RO.getName();
869
Owen Andersonbea6f612011-06-27 21:06:21 +0000870
871 if (Rec->isSubClassOf("RegisterOperand"))
872 Rec = Rec->getValueAsDef("RegClass");
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000873 if (Rec->isSubClassOf("RegisterClass")) {
874 Cond = std::string("MI->getOperand(")+llvm::utostr(i)+").isReg()";
875 IAP->addCond(Cond);
876
877 if (!IAP->isOpMapped(ROName)) {
878 IAP->addOperand(ROName, i);
879 Cond = std::string("regIsInRegisterClass(RC_") +
880 CGA->ResultOperands[i].getRecord()->getName() +
881 ", MI->getOperand(" + llvm::utostr(i) + ").getReg())";
882 IAP->addCond(Cond);
883 } else {
884 Cond = std::string("MI->getOperand(") +
885 llvm::utostr(i) + ").getReg() == MI->getOperand(" +
886 llvm::utostr(IAP->getOpIndex(ROName)) + ").getReg()";
887 IAP->addCond(Cond);
888 }
889 } else {
890 assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
Bill Wendling740e5b32011-06-14 03:17:20 +0000891 // FIXME: We may need to handle these situations.
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000892 delete IAP;
893 IAP = 0;
894 CantHandle = true;
895 break;
896 }
897
898 break;
899 }
900 case CodeGenInstAlias::ResultOperand::K_Imm:
901 Cond = std::string("MI->getOperand(") +
902 llvm::utostr(i) + ").getImm() == " +
903 llvm::utostr(CGA->ResultOperands[i].getImm());
904 IAP->addCond(Cond);
905 break;
906 case CodeGenInstAlias::ResultOperand::K_Reg:
Jim Grosbachbfc94292011-11-15 01:46:57 +0000907 // If this is zero_reg, something's playing tricks we're not
908 // equipped to handle.
909 if (!CGA->ResultOperands[i].getRegister()) {
910 CantHandle = true;
911 break;
912 }
913
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000914 Cond = std::string("MI->getOperand(") +
915 llvm::utostr(i) + ").getReg() == " + Target.getName() +
916 "::" + CGA->ResultOperands[i].getRegister()->getName();
917 IAP->addCond(Cond);
918 break;
919 }
920
921 if (!IAP) break;
922 }
923
924 if (CantHandle) continue;
925 IAPrinterMap[I->first].push_back(IAP);
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000926 }
927 }
928
Bill Wendlingf415d8b2011-05-23 00:18:33 +0000929 std::string Header;
930 raw_string_ostream HeaderO(Header);
931
932 HeaderO << "bool " << Target.getName() << ClassName
Bill Wendling740e5b32011-06-14 03:17:20 +0000933 << "::printAliasInstr(const MCInst"
Bill Wendlingf415d8b2011-05-23 00:18:33 +0000934 << " *MI, raw_ostream &OS) {\n";
Bill Wendling3ce1b7d2011-03-21 08:59:17 +0000935
Bill Wendling44dcfd32011-04-07 21:20:06 +0000936 std::string Cases;
937 raw_string_ostream CasesO(Cases);
938
939 for (std::map<std::string, std::vector<IAPrinter*> >::iterator
940 I = IAPrinterMap.begin(), E = IAPrinterMap.end(); I != E; ++I) {
941 std::vector<IAPrinter*> &IAPs = I->second;
942 std::vector<IAPrinter*> UniqueIAPs;
943
944 for (std::vector<IAPrinter*>::iterator
945 II = IAPs.begin(), IE = IAPs.end(); II != IE; ++II) {
946 IAPrinter *LHS = *II;
947 bool IsDup = false;
948 for (std::vector<IAPrinter*>::iterator
949 III = IAPs.begin(), IIE = IAPs.end(); III != IIE; ++III) {
950 IAPrinter *RHS = *III;
951 if (LHS != RHS && *LHS == *RHS) {
952 IsDup = true;
953 break;
954 }
955 }
956
957 if (!IsDup) UniqueIAPs.push_back(LHS);
958 }
959
960 if (UniqueIAPs.empty()) continue;
961
962 CasesO.indent(2) << "case " << I->first << ":\n";
963
964 for (std::vector<IAPrinter*>::iterator
965 II = UniqueIAPs.begin(), IE = UniqueIAPs.end(); II != IE; ++II) {
966 IAPrinter *IAP = *II;
967 CasesO.indent(4);
Evan Cheng68ae5b42011-07-06 02:02:33 +0000968 IAP->print(CasesO);
Bill Wendling44dcfd32011-04-07 21:20:06 +0000969 CasesO << '\n';
970 }
971
Eric Christopher721ef662011-04-18 21:28:11 +0000972 CasesO.indent(4) << "return false;\n";
Bill Wendling44dcfd32011-04-07 21:20:06 +0000973 }
974
Bill Wendling740e5b32011-06-14 03:17:20 +0000975 if (CasesO.str().empty()) {
Bill Wendlingf415d8b2011-05-23 00:18:33 +0000976 O << HeaderO.str();
Eric Christopher721ef662011-04-18 21:28:11 +0000977 O << " return false;\n";
Bill Wendling7520e3a2011-02-26 03:09:12 +0000978 O << "}\n\n";
979 O << "#endif // PRINT_ALIAS_INSTR\n";
980 return;
981 }
982
Bill Wendlingf415d8b2011-05-23 00:18:33 +0000983 EmitGetMapOperandNumber(O);
984
985 O << HeaderO.str();
Bill Wendling44dcfd32011-04-07 21:20:06 +0000986 O.indent(2) << "StringRef AsmString;\n";
Bill Wendlingf415d8b2011-05-23 00:18:33 +0000987 O.indent(2) << "SmallVector<std::pair<StringRef, unsigned>, 4> OpMap;\n";
Bill Wendling44dcfd32011-04-07 21:20:06 +0000988 O.indent(2) << "switch (MI->getOpcode()) {\n";
Eric Christopher721ef662011-04-18 21:28:11 +0000989 O.indent(2) << "default: return false;\n";
Bill Wendling44dcfd32011-04-07 21:20:06 +0000990 O << CasesO.str();
991 O.indent(2) << "}\n\n";
Bill Wendling7520e3a2011-02-26 03:09:12 +0000992
993 // Code that prints the alias, replacing the operands with the ones from the
994 // MCInst.
Bill Wendling7520e3a2011-02-26 03:09:12 +0000995 O << " std::pair<StringRef, StringRef> ASM = AsmString.split(' ');\n";
996 O << " OS << '\\t' << ASM.first;\n";
997
998 O << " if (!ASM.second.empty()) {\n";
999 O << " OS << '\\t';\n";
1000 O << " for (StringRef::iterator\n";
1001 O << " I = ASM.second.begin(), E = ASM.second.end(); I != E; ) {\n";
1002 O << " if (*I == '$') {\n";
1003 O << " StringRef::iterator Start = ++I;\n";
1004 O << " while (I != E &&\n";
1005 O << " ((*I >= 'a' && *I <= 'z') ||\n";
1006 O << " (*I >= 'A' && *I <= 'Z') ||\n";
1007 O << " (*I >= '0' && *I <= '9') ||\n";
1008 O << " *I == '_'))\n";
1009 O << " ++I;\n";
1010 O << " StringRef Name(Start, I - Start);\n";
Bill Wendlingf415d8b2011-05-23 00:18:33 +00001011 O << " printOperand(MI, getMapOperandNumber(OpMap, Name), OS);\n";
Bill Wendling7520e3a2011-02-26 03:09:12 +00001012 O << " } else {\n";
1013 O << " OS << *I++;\n";
1014 O << " }\n";
1015 O << " }\n";
1016 O << " }\n\n";
1017
Eric Christopher721ef662011-04-18 21:28:11 +00001018 O << " return true;\n";
Bill Wendling7520e3a2011-02-26 03:09:12 +00001019 O << "}\n\n";
1020
1021 O << "#endif // PRINT_ALIAS_INSTR\n";
1022}
Chris Lattner05af2612009-09-13 20:08:00 +00001023
1024void AsmWriterEmitter::run(raw_ostream &O) {
1025 EmitSourceFileHeader("Assembly Writer Source Fragment", O);
Jim Grosbach9255b8d2010-09-29 22:32:50 +00001026
Chris Lattner05af2612009-09-13 20:08:00 +00001027 EmitPrintInstruction(O);
1028 EmitGetRegisterName(O);
Chris Lattner0d7b0aa2010-02-11 22:57:32 +00001029 EmitGetInstructionName(O);
Bill Wendling7520e3a2011-02-26 03:09:12 +00001030 EmitPrintAliasInstruction(O);
Chris Lattner05af2612009-09-13 20:08:00 +00001031}
1032