Fix typo pointed out in pr9339.
[llvm/stm8.git] / utils / TableGen / AsmWriterEmitter.cpp
blobcd31e0c3448d65f9e30c710b9b3d6a5b04b9cb1c
1 //===- AsmWriterEmitter.cpp - Generate an assembly writer -----------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This tablegen backend is emits an assembly printer for the current target.
11 // Note that this is currently fairly skeletal, but will grow over time.
13 //===----------------------------------------------------------------------===//
15 #include "AsmWriterEmitter.h"
16 #include "AsmWriterInst.h"
17 #include "CodeGenTarget.h"
18 #include "Record.h"
19 #include "StringToOffsetTable.h"
20 #include "llvm/Support/Debug.h"
21 #include "llvm/Support/MathExtras.h"
22 #include <algorithm>
23 using namespace llvm;
25 static void PrintCases(std::vector<std::pair<std::string,
26 AsmWriterOperand> > &OpsToPrint, raw_ostream &O) {
27 O << " case " << OpsToPrint.back().first << ": ";
28 AsmWriterOperand TheOp = OpsToPrint.back().second;
29 OpsToPrint.pop_back();
31 // Check to see if any other operands are identical in this list, and if so,
32 // emit a case label for them.
33 for (unsigned i = OpsToPrint.size(); i != 0; --i)
34 if (OpsToPrint[i-1].second == TheOp) {
35 O << "\n case " << OpsToPrint[i-1].first << ": ";
36 OpsToPrint.erase(OpsToPrint.begin()+i-1);
39 // Finally, emit the code.
40 O << TheOp.getCode();
41 O << "break;\n";
45 /// EmitInstructions - Emit the last instruction in the vector and any other
46 /// instructions that are suitably similar to it.
47 static void EmitInstructions(std::vector<AsmWriterInst> &Insts,
48 raw_ostream &O) {
49 AsmWriterInst FirstInst = Insts.back();
50 Insts.pop_back();
52 std::vector<AsmWriterInst> SimilarInsts;
53 unsigned DifferingOperand = ~0;
54 for (unsigned i = Insts.size(); i != 0; --i) {
55 unsigned DiffOp = Insts[i-1].MatchesAllButOneOp(FirstInst);
56 if (DiffOp != ~1U) {
57 if (DifferingOperand == ~0U) // First match!
58 DifferingOperand = DiffOp;
60 // If this differs in the same operand as the rest of the instructions in
61 // this class, move it to the SimilarInsts list.
62 if (DifferingOperand == DiffOp || DiffOp == ~0U) {
63 SimilarInsts.push_back(Insts[i-1]);
64 Insts.erase(Insts.begin()+i-1);
69 O << " case " << FirstInst.CGI->Namespace << "::"
70 << FirstInst.CGI->TheDef->getName() << ":\n";
71 for (unsigned i = 0, e = SimilarInsts.size(); i != e; ++i)
72 O << " case " << SimilarInsts[i].CGI->Namespace << "::"
73 << SimilarInsts[i].CGI->TheDef->getName() << ":\n";
74 for (unsigned i = 0, e = FirstInst.Operands.size(); i != e; ++i) {
75 if (i != DifferingOperand) {
76 // If the operand is the same for all instructions, just print it.
77 O << " " << FirstInst.Operands[i].getCode();
78 } else {
79 // If this is the operand that varies between all of the instructions,
80 // emit a switch for just this operand now.
81 O << " switch (MI->getOpcode()) {\n";
82 std::vector<std::pair<std::string, AsmWriterOperand> > OpsToPrint;
83 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace + "::" +
84 FirstInst.CGI->TheDef->getName(),
85 FirstInst.Operands[i]));
87 for (unsigned si = 0, e = SimilarInsts.size(); si != e; ++si) {
88 AsmWriterInst &AWI = SimilarInsts[si];
89 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace+"::"+
90 AWI.CGI->TheDef->getName(),
91 AWI.Operands[i]));
93 std::reverse(OpsToPrint.begin(), OpsToPrint.end());
94 while (!OpsToPrint.empty())
95 PrintCases(OpsToPrint, O);
96 O << " }";
98 O << "\n";
100 O << " break;\n";
103 void AsmWriterEmitter::
104 FindUniqueOperandCommands(std::vector<std::string> &UniqueOperandCommands,
105 std::vector<unsigned> &InstIdxs,
106 std::vector<unsigned> &InstOpsUsed) const {
107 InstIdxs.assign(NumberedInstructions.size(), ~0U);
109 // This vector parallels UniqueOperandCommands, keeping track of which
110 // instructions each case are used for. It is a comma separated string of
111 // enums.
112 std::vector<std::string> InstrsForCase;
113 InstrsForCase.resize(UniqueOperandCommands.size());
114 InstOpsUsed.assign(UniqueOperandCommands.size(), 0);
116 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
117 const AsmWriterInst *Inst = getAsmWriterInstByID(i);
118 if (Inst == 0) continue; // PHI, INLINEASM, PROLOG_LABEL, etc.
120 std::string Command;
121 if (Inst->Operands.empty())
122 continue; // Instruction already done.
124 Command = " " + Inst->Operands[0].getCode() + "\n";
126 // Check to see if we already have 'Command' in UniqueOperandCommands.
127 // If not, add it.
128 bool FoundIt = false;
129 for (unsigned idx = 0, e = UniqueOperandCommands.size(); idx != e; ++idx)
130 if (UniqueOperandCommands[idx] == Command) {
131 InstIdxs[i] = idx;
132 InstrsForCase[idx] += ", ";
133 InstrsForCase[idx] += Inst->CGI->TheDef->getName();
134 FoundIt = true;
135 break;
137 if (!FoundIt) {
138 InstIdxs[i] = UniqueOperandCommands.size();
139 UniqueOperandCommands.push_back(Command);
140 InstrsForCase.push_back(Inst->CGI->TheDef->getName());
142 // This command matches one operand so far.
143 InstOpsUsed.push_back(1);
147 // For each entry of UniqueOperandCommands, there is a set of instructions
148 // that uses it. If the next command of all instructions in the set are
149 // identical, fold it into the command.
150 for (unsigned CommandIdx = 0, e = UniqueOperandCommands.size();
151 CommandIdx != e; ++CommandIdx) {
153 for (unsigned Op = 1; ; ++Op) {
154 // Scan for the first instruction in the set.
155 std::vector<unsigned>::iterator NIT =
156 std::find(InstIdxs.begin(), InstIdxs.end(), CommandIdx);
157 if (NIT == InstIdxs.end()) break; // No commonality.
159 // If this instruction has no more operands, we isn't anything to merge
160 // into this command.
161 const AsmWriterInst *FirstInst =
162 getAsmWriterInstByID(NIT-InstIdxs.begin());
163 if (!FirstInst || FirstInst->Operands.size() == Op)
164 break;
166 // Otherwise, scan to see if all of the other instructions in this command
167 // set share the operand.
168 bool AllSame = true;
169 // Keep track of the maximum, number of operands or any
170 // instruction we see in the group.
171 size_t MaxSize = FirstInst->Operands.size();
173 for (NIT = std::find(NIT+1, InstIdxs.end(), CommandIdx);
174 NIT != InstIdxs.end();
175 NIT = std::find(NIT+1, InstIdxs.end(), CommandIdx)) {
176 // Okay, found another instruction in this command set. If the operand
177 // matches, we're ok, otherwise bail out.
178 const AsmWriterInst *OtherInst =
179 getAsmWriterInstByID(NIT-InstIdxs.begin());
181 if (OtherInst &&
182 OtherInst->Operands.size() > FirstInst->Operands.size())
183 MaxSize = std::max(MaxSize, OtherInst->Operands.size());
185 if (!OtherInst || OtherInst->Operands.size() == Op ||
186 OtherInst->Operands[Op] != FirstInst->Operands[Op]) {
187 AllSame = false;
188 break;
191 if (!AllSame) break;
193 // Okay, everything in this command set has the same next operand. Add it
194 // to UniqueOperandCommands and remember that it was consumed.
195 std::string Command = " " + FirstInst->Operands[Op].getCode() + "\n";
197 UniqueOperandCommands[CommandIdx] += Command;
198 InstOpsUsed[CommandIdx]++;
202 // Prepend some of the instructions each case is used for onto the case val.
203 for (unsigned i = 0, e = InstrsForCase.size(); i != e; ++i) {
204 std::string Instrs = InstrsForCase[i];
205 if (Instrs.size() > 70) {
206 Instrs.erase(Instrs.begin()+70, Instrs.end());
207 Instrs += "...";
210 if (!Instrs.empty())
211 UniqueOperandCommands[i] = " // " + Instrs + "\n" +
212 UniqueOperandCommands[i];
217 static void UnescapeString(std::string &Str) {
218 for (unsigned i = 0; i != Str.size(); ++i) {
219 if (Str[i] == '\\' && i != Str.size()-1) {
220 switch (Str[i+1]) {
221 default: continue; // Don't execute the code after the switch.
222 case 'a': Str[i] = '\a'; break;
223 case 'b': Str[i] = '\b'; break;
224 case 'e': Str[i] = 27; break;
225 case 'f': Str[i] = '\f'; break;
226 case 'n': Str[i] = '\n'; break;
227 case 'r': Str[i] = '\r'; break;
228 case 't': Str[i] = '\t'; break;
229 case 'v': Str[i] = '\v'; break;
230 case '"': Str[i] = '\"'; break;
231 case '\'': Str[i] = '\''; break;
232 case '\\': Str[i] = '\\'; break;
234 // Nuke the second character.
235 Str.erase(Str.begin()+i+1);
240 /// EmitPrintInstruction - Generate the code for the "printInstruction" method
241 /// implementation.
242 void AsmWriterEmitter::EmitPrintInstruction(raw_ostream &O) {
243 CodeGenTarget Target(Records);
244 Record *AsmWriter = Target.getAsmWriter();
245 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
246 bool isMC = AsmWriter->getValueAsBit("isMCAsmWriter");
247 const char *MachineInstrClassName = isMC ? "MCInst" : "MachineInstr";
249 O <<
250 "/// printInstruction - This method is automatically generated by tablegen\n"
251 "/// from the instruction set description.\n"
252 "void " << Target.getName() << ClassName
253 << "::printInstruction(const " << MachineInstrClassName
254 << " *MI, raw_ostream &O) {\n";
256 std::vector<AsmWriterInst> Instructions;
258 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
259 E = Target.inst_end(); I != E; ++I)
260 if (!(*I)->AsmString.empty() &&
261 (*I)->TheDef->getName() != "PHI")
262 Instructions.push_back(
263 AsmWriterInst(**I,
264 AsmWriter->getValueAsInt("Variant"),
265 AsmWriter->getValueAsInt("FirstOperandColumn"),
266 AsmWriter->getValueAsInt("OperandSpacing")));
268 // Get the instruction numbering.
269 NumberedInstructions = Target.getInstructionsByEnumValue();
271 // Compute the CodeGenInstruction -> AsmWriterInst mapping. Note that not
272 // all machine instructions are necessarily being printed, so there may be
273 // target instructions not in this map.
274 for (unsigned i = 0, e = Instructions.size(); i != e; ++i)
275 CGIAWIMap.insert(std::make_pair(Instructions[i].CGI, &Instructions[i]));
277 // Build an aggregate string, and build a table of offsets into it.
278 StringToOffsetTable StringTable;
280 /// OpcodeInfo - This encodes the index of the string to use for the first
281 /// chunk of the output as well as indices used for operand printing.
282 std::vector<unsigned> OpcodeInfo;
284 unsigned MaxStringIdx = 0;
285 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
286 AsmWriterInst *AWI = CGIAWIMap[NumberedInstructions[i]];
287 unsigned Idx;
288 if (AWI == 0) {
289 // Something not handled by the asmwriter printer.
290 Idx = ~0U;
291 } else if (AWI->Operands[0].OperandType !=
292 AsmWriterOperand::isLiteralTextOperand ||
293 AWI->Operands[0].Str.empty()) {
294 // Something handled by the asmwriter printer, but with no leading string.
295 Idx = StringTable.GetOrAddStringOffset("");
296 } else {
297 std::string Str = AWI->Operands[0].Str;
298 UnescapeString(Str);
299 Idx = StringTable.GetOrAddStringOffset(Str);
300 MaxStringIdx = std::max(MaxStringIdx, Idx);
302 // Nuke the string from the operand list. It is now handled!
303 AWI->Operands.erase(AWI->Operands.begin());
306 // Bias offset by one since we want 0 as a sentinel.
307 OpcodeInfo.push_back(Idx+1);
310 // Figure out how many bits we used for the string index.
311 unsigned AsmStrBits = Log2_32_Ceil(MaxStringIdx+2);
313 // To reduce code size, we compactify common instructions into a few bits
314 // in the opcode-indexed table.
315 unsigned BitsLeft = 32-AsmStrBits;
317 std::vector<std::vector<std::string> > TableDrivenOperandPrinters;
319 while (1) {
320 std::vector<std::string> UniqueOperandCommands;
321 std::vector<unsigned> InstIdxs;
322 std::vector<unsigned> NumInstOpsHandled;
323 FindUniqueOperandCommands(UniqueOperandCommands, InstIdxs,
324 NumInstOpsHandled);
326 // If we ran out of operands to print, we're done.
327 if (UniqueOperandCommands.empty()) break;
329 // Compute the number of bits we need to represent these cases, this is
330 // ceil(log2(numentries)).
331 unsigned NumBits = Log2_32_Ceil(UniqueOperandCommands.size());
333 // If we don't have enough bits for this operand, don't include it.
334 if (NumBits > BitsLeft) {
335 DEBUG(errs() << "Not enough bits to densely encode " << NumBits
336 << " more bits\n");
337 break;
340 // Otherwise, we can include this in the initial lookup table. Add it in.
341 BitsLeft -= NumBits;
342 for (unsigned i = 0, e = InstIdxs.size(); i != e; ++i)
343 if (InstIdxs[i] != ~0U)
344 OpcodeInfo[i] |= InstIdxs[i] << (BitsLeft+AsmStrBits);
346 // Remove the info about this operand.
347 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
348 if (AsmWriterInst *Inst = getAsmWriterInstByID(i))
349 if (!Inst->Operands.empty()) {
350 unsigned NumOps = NumInstOpsHandled[InstIdxs[i]];
351 assert(NumOps <= Inst->Operands.size() &&
352 "Can't remove this many ops!");
353 Inst->Operands.erase(Inst->Operands.begin(),
354 Inst->Operands.begin()+NumOps);
358 // Remember the handlers for this set of operands.
359 TableDrivenOperandPrinters.push_back(UniqueOperandCommands);
364 O<<" static const unsigned OpInfo[] = {\n";
365 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
366 O << " " << OpcodeInfo[i] << "U,\t// "
367 << NumberedInstructions[i]->TheDef->getName() << "\n";
369 // Add a dummy entry so the array init doesn't end with a comma.
370 O << " 0U\n";
371 O << " };\n\n";
373 // Emit the string itself.
374 O << " const char *AsmStrs = \n";
375 StringTable.EmitString(O);
376 O << ";\n\n";
378 O << " O << \"\\t\";\n\n";
380 O << " // Emit the opcode for the instruction.\n"
381 << " unsigned Bits = OpInfo[MI->getOpcode()];\n"
382 << " assert(Bits != 0 && \"Cannot print this instruction.\");\n"
383 << " O << AsmStrs+(Bits & " << (1 << AsmStrBits)-1 << ")-1;\n\n";
385 // Output the table driven operand information.
386 BitsLeft = 32-AsmStrBits;
387 for (unsigned i = 0, e = TableDrivenOperandPrinters.size(); i != e; ++i) {
388 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i];
390 // Compute the number of bits we need to represent these cases, this is
391 // ceil(log2(numentries)).
392 unsigned NumBits = Log2_32_Ceil(Commands.size());
393 assert(NumBits <= BitsLeft && "consistency error");
395 // Emit code to extract this field from Bits.
396 BitsLeft -= NumBits;
398 O << "\n // Fragment " << i << " encoded into " << NumBits
399 << " bits for " << Commands.size() << " unique commands.\n";
401 if (Commands.size() == 2) {
402 // Emit two possibilitys with if/else.
403 O << " if ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
404 << ((1 << NumBits)-1) << ") {\n"
405 << Commands[1]
406 << " } else {\n"
407 << Commands[0]
408 << " }\n\n";
409 } else if (Commands.size() == 1) {
410 // Emit a single possibility.
411 O << Commands[0] << "\n\n";
412 } else {
413 O << " switch ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
414 << ((1 << NumBits)-1) << ") {\n"
415 << " default: // unreachable.\n";
417 // Print out all the cases.
418 for (unsigned i = 0, e = Commands.size(); i != e; ++i) {
419 O << " case " << i << ":\n";
420 O << Commands[i];
421 O << " break;\n";
423 O << " }\n\n";
427 // Okay, delete instructions with no operand info left.
428 for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
429 // Entire instruction has been emitted?
430 AsmWriterInst &Inst = Instructions[i];
431 if (Inst.Operands.empty()) {
432 Instructions.erase(Instructions.begin()+i);
433 --i; --e;
438 // Because this is a vector, we want to emit from the end. Reverse all of the
439 // elements in the vector.
440 std::reverse(Instructions.begin(), Instructions.end());
443 // Now that we've emitted all of the operand info that fit into 32 bits, emit
444 // information for those instructions that are left. This is a less dense
445 // encoding, but we expect the main 32-bit table to handle the majority of
446 // instructions.
447 if (!Instructions.empty()) {
448 // Find the opcode # of inline asm.
449 O << " switch (MI->getOpcode()) {\n";
450 while (!Instructions.empty())
451 EmitInstructions(Instructions, O);
453 O << " }\n";
454 O << " return;\n";
457 O << "}\n";
461 void AsmWriterEmitter::EmitGetRegisterName(raw_ostream &O) {
462 CodeGenTarget Target(Records);
463 Record *AsmWriter = Target.getAsmWriter();
464 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
465 const std::vector<CodeGenRegister> &Registers = Target.getRegisters();
467 StringToOffsetTable StringTable;
468 O <<
469 "\n\n/// getRegisterName - This method is automatically generated by tblgen\n"
470 "/// from the register set description. This returns the assembler name\n"
471 "/// for the specified register.\n"
472 "const char *" << Target.getName() << ClassName
473 << "::getRegisterName(unsigned RegNo) {\n"
474 << " assert(RegNo && RegNo < " << (Registers.size()+1)
475 << " && \"Invalid register number!\");\n"
476 << "\n"
477 << " static const unsigned RegAsmOffset[] = {";
478 for (unsigned i = 0, e = Registers.size(); i != e; ++i) {
479 const CodeGenRegister &Reg = Registers[i];
481 std::string AsmName = Reg.TheDef->getValueAsString("AsmName");
482 if (AsmName.empty())
483 AsmName = Reg.getName();
486 if ((i % 14) == 0)
487 O << "\n ";
489 O << StringTable.GetOrAddStringOffset(AsmName) << ", ";
491 O << "0\n"
492 << " };\n"
493 << "\n";
495 O << " const char *AsmStrs =\n";
496 StringTable.EmitString(O);
497 O << ";\n";
499 O << " return AsmStrs+RegAsmOffset[RegNo-1];\n"
500 << "}\n";
503 void AsmWriterEmitter::EmitGetInstructionName(raw_ostream &O) {
504 CodeGenTarget Target(Records);
505 Record *AsmWriter = Target.getAsmWriter();
506 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
508 const std::vector<const CodeGenInstruction*> &NumberedInstructions =
509 Target.getInstructionsByEnumValue();
511 StringToOffsetTable StringTable;
512 O <<
513 "\n\n#ifdef GET_INSTRUCTION_NAME\n"
514 "#undef GET_INSTRUCTION_NAME\n\n"
515 "/// getInstructionName: This method is automatically generated by tblgen\n"
516 "/// from the instruction set description. This returns the enum name of the\n"
517 "/// specified instruction.\n"
518 "const char *" << Target.getName() << ClassName
519 << "::getInstructionName(unsigned Opcode) {\n"
520 << " assert(Opcode < " << NumberedInstructions.size()
521 << " && \"Invalid instruction number!\");\n"
522 << "\n"
523 << " static const unsigned InstAsmOffset[] = {";
524 for (unsigned i = 0, e = NumberedInstructions.size(); i != e; ++i) {
525 const CodeGenInstruction &Inst = *NumberedInstructions[i];
527 std::string AsmName = Inst.TheDef->getName();
528 if ((i % 14) == 0)
529 O << "\n ";
531 O << StringTable.GetOrAddStringOffset(AsmName) << ", ";
533 O << "0\n"
534 << " };\n"
535 << "\n";
537 O << " const char *Strs =\n";
538 StringTable.EmitString(O);
539 O << ";\n";
541 O << " return Strs+InstAsmOffset[Opcode];\n"
542 << "}\n\n#endif\n";
545 void AsmWriterEmitter::EmitPrintAliasInstruction(raw_ostream &O) {
546 CodeGenTarget Target(Records);
547 Record *AsmWriter = Target.getAsmWriter();
549 O << "\n#ifdef PRINT_ALIAS_INSTR\n";
550 O << "#undef PRINT_ALIAS_INSTR\n\n";
552 // Enumerate the register classes.
553 const std::vector<CodeGenRegisterClass> &RegisterClasses =
554 Target.getRegisterClasses();
556 O << "namespace { // Register classes\n";
557 O << " enum RegClass {\n";
559 // Emit the register enum value for each RegisterClass.
560 for (unsigned I = 0, E = RegisterClasses.size(); I != E; ++I) {
561 if (I != 0) O << ",\n";
562 O << " RC_" << RegisterClasses[I].TheDef->getName();
565 O << "\n };\n";
566 O << "} // end anonymous namespace\n\n";
568 // Emit a function that returns 'true' if a regsiter is part of a particular
569 // register class. I.e., RAX is part of GR64 on X86.
570 O << "static bool regIsInRegisterClass"
571 << "(unsigned RegClass, unsigned Reg) {\n";
573 // Emit the switch that checks if a register belongs to a particular register
574 // class.
575 O << " switch (RegClass) {\n";
576 O << " default: break;\n";
578 for (unsigned I = 0, E = RegisterClasses.size(); I != E; ++I) {
579 const CodeGenRegisterClass &RC = RegisterClasses[I];
581 // Give the register class a legal C name if it's anonymous.
582 std::string Name = RC.TheDef->getName();
583 O << " case RC_" << Name << ":\n";
585 // Emit the register list now.
586 unsigned IE = RC.Elements.size();
587 if (IE == 1) {
588 O << " if (Reg == " << getQualifiedName(RC.Elements[0]) << ")\n";
589 O << " return true;\n";
590 } else {
591 O << " switch (Reg) {\n";
592 O << " default: break;\n";
594 for (unsigned II = 0; II != IE; ++II) {
595 Record *Reg = RC.Elements[II];
596 O << " case " << getQualifiedName(Reg) << ":\n";
599 O << " return true;\n";
600 O << " }\n";
603 O << " break;\n";
606 O << " }\n\n";
607 O << " return false;\n";
608 O << "}\n\n";
610 // Emit the method that prints the alias instruction.
611 std::string ClassName = AsmWriter->getValueAsString("AsmWriterClassName");
613 bool isMC = AsmWriter->getValueAsBit("isMCAsmWriter");
614 const char *MachineInstrClassName = isMC ? "MCInst" : "MachineInstr";
616 O << "bool " << Target.getName() << ClassName
617 << "::printAliasInstr(const " << MachineInstrClassName
618 << " *MI, raw_ostream &OS) {\n";
620 std::vector<Record*> AllInstAliases =
621 Records.getAllDerivedDefinitions("InstAlias");
623 // Create a map from the qualified name to a list of potential matches.
624 std::map<std::string, std::vector<CodeGenInstAlias*> > AliasMap;
625 for (std::vector<Record*>::iterator
626 I = AllInstAliases.begin(), E = AllInstAliases.end(); I != E; ++I) {
627 CodeGenInstAlias *Alias = new CodeGenInstAlias(*I, Target);
628 const Record *R = *I;
629 const DagInit *DI = R->getValueAsDag("ResultInst");
630 const DefInit *Op = dynamic_cast<const DefInit*>(DI->getOperator());
631 AliasMap[getQualifiedName(Op->getDef())].push_back(Alias);
634 if (AliasMap.empty() || !isMC) {
635 // FIXME: Support MachineInstr InstAliases?
636 O << " return true;\n";
637 O << "}\n\n";
638 O << "#endif // PRINT_ALIAS_INSTR\n";
639 return;
642 O << " StringRef AsmString;\n";
643 O << " std::map<StringRef, unsigned> OpMap;\n";
644 O << " switch (MI->getOpcode()) {\n";
645 O << " default: return true;\n";
647 for (std::map<std::string, std::vector<CodeGenInstAlias*> >::iterator
648 I = AliasMap.begin(), E = AliasMap.end(); I != E; ++I) {
649 std::vector<CodeGenInstAlias*> &Aliases = I->second;
651 std::map<std::string, unsigned> CondCount;
652 std::map<std::string, std::string> BodyMap;
654 std::string AsmString = "";
656 for (std::vector<CodeGenInstAlias*>::iterator
657 II = Aliases.begin(), IE = Aliases.end(); II != IE; ++II) {
658 const CodeGenInstAlias *CGA = *II;
659 AsmString = CGA->AsmString;
660 unsigned Indent = 8;
661 unsigned LastOpNo = CGA->ResultInstOperandIndex.size();
663 std::string Cond;
664 raw_string_ostream CondO(Cond);
666 CondO << "if (MI->getNumOperands() == " << LastOpNo;
668 std::map<StringRef, unsigned> OpMap;
669 bool CantHandle = false;
671 for (unsigned i = 0, e = LastOpNo; i != e; ++i) {
672 const CodeGenInstAlias::ResultOperand &RO = CGA->ResultOperands[i];
674 switch (RO.Kind) {
675 default: assert(0 && "unexpected InstAlias operand kind");
676 case CodeGenInstAlias::ResultOperand::K_Record: {
677 const Record *Rec = RO.getRecord();
678 StringRef ROName = RO.getName();
680 if (Rec->isSubClassOf("RegisterClass")) {
681 CondO << " &&\n";
682 CondO.indent(Indent) << "MI->getOperand(" << i << ").isReg() &&\n";
683 if (OpMap.find(ROName) == OpMap.end()) {
684 OpMap[ROName] = i;
685 CondO.indent(Indent)
686 << "regIsInRegisterClass(RC_"
687 << CGA->ResultOperands[i].getRecord()->getName()
688 << ", MI->getOperand(" << i << ").getReg())";
689 } else {
690 CondO.indent(Indent)
691 << "MI->getOperand(" << i
692 << ").getReg() == MI->getOperand("
693 << OpMap[ROName] << ").getReg()";
695 } else {
696 assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
697 // FIXME: We need to handle these situations.
698 CantHandle = true;
699 break;
702 break;
704 case CodeGenInstAlias::ResultOperand::K_Imm:
705 CondO << " &&\n";
706 CondO.indent(Indent) << "MI->getOperand(" << i << ").getImm() == ";
707 CondO << CGA->ResultOperands[i].getImm();
708 break;
709 case CodeGenInstAlias::ResultOperand::K_Reg:
710 CondO << " &&\n";
711 CondO.indent(Indent) << "MI->getOperand(" << i << ").getReg() == ";
712 CondO << Target.getName() << "::"
713 << CGA->ResultOperands[i].getRegister()->getName();
714 break;
717 if (CantHandle) break;
720 if (CantHandle) continue;
722 CondO << ")";
724 std::string Body;
725 raw_string_ostream BodyO(Body);
727 BodyO << " // " << CGA->Result->getAsString() << "\n";
728 BodyO << " AsmString = \"" << AsmString << "\";\n";
730 for (std::map<StringRef, unsigned>::iterator
731 III = OpMap.begin(), IIE = OpMap.end(); III != IIE; ++III)
732 BodyO << " OpMap[\"" << III->first << "\"] = "
733 << III->second << ";\n";
735 ++CondCount[CondO.str()];
736 BodyMap[CondO.str()] = BodyO.str();
739 std::string Code;
740 raw_string_ostream CodeO(Code);
742 bool EmitElse = false;
743 for (std::map<std::string, unsigned>::iterator
744 II = CondCount.begin(), IE = CondCount.end(); II != IE; ++II) {
745 if (II->second != 1) continue;
746 CodeO << " ";
747 if (EmitElse) CodeO << "} else ";
748 CodeO << II->first << " {\n";
749 CodeO << BodyMap[II->first];
750 EmitElse = true;
753 if (CodeO.str().empty()) continue;
755 O << " case " << I->first << ":\n";
756 O << CodeO.str();
757 O << " }\n";
758 O << " break;\n";
761 O << " }\n\n";
763 // Code that prints the alias, replacing the operands with the ones from the
764 // MCInst.
765 O << " if (AsmString.empty()) return true;\n";
766 O << " std::pair<StringRef, StringRef> ASM = AsmString.split(' ');\n";
767 O << " OS << '\\t' << ASM.first;\n";
769 O << " if (!ASM.second.empty()) {\n";
770 O << " OS << '\\t';\n";
771 O << " for (StringRef::iterator\n";
772 O << " I = ASM.second.begin(), E = ASM.second.end(); I != E; ) {\n";
773 O << " if (*I == '$') {\n";
774 O << " StringRef::iterator Start = ++I;\n";
775 O << " while (I != E &&\n";
776 O << " ((*I >= 'a' && *I <= 'z') ||\n";
777 O << " (*I >= 'A' && *I <= 'Z') ||\n";
778 O << " (*I >= '0' && *I <= '9') ||\n";
779 O << " *I == '_'))\n";
780 O << " ++I;\n";
781 O << " StringRef Name(Start, I - Start);\n";
782 O << " printOperand(MI, OpMap[Name], OS);\n";
783 O << " } else {\n";
784 O << " OS << *I++;\n";
785 O << " }\n";
786 O << " }\n";
787 O << " }\n\n";
789 O << " return false;\n";
790 O << "}\n\n";
792 O << "#endif // PRINT_ALIAS_INSTR\n";
795 void AsmWriterEmitter::run(raw_ostream &O) {
796 EmitSourceFileHeader("Assembly Writer Source Fragment", O);
798 EmitPrintInstruction(O);
799 EmitGetRegisterName(O);
800 EmitGetInstructionName(O);
801 EmitPrintAliasInstruction(O);