blob: 5a8cf7708bd3fd4fb73e34fb5814165e8b3827b0 [file] [log] [blame]
Sean Callanand32c02f2010-02-09 21:50:41 +00001//===- AsmWriterInst.h - Classes encapsulating a printable inst -*- C++ -*-===//
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// These classes implement a parser for assembly strings. The parser splits
11// the string into operands, which can be literal strings (the constant bits of
12// the string), actual operands (i.e., operands from the MachineInstr), and
13// dynamically-generated text, specified by raw C++ code.
14//
15//===----------------------------------------------------------------------===//
16
17#ifndef ASMWRITER_INST_H
18#define ASMWRITER_INST_H
19
20#include <string>
21#include <vector>
22
23namespace llvm {
24 class CodeGenInstruction;
25 class Record;
26
27 struct AsmWriterOperand {
28 enum OpType {
29 // Output this text surrounded by quotes to the asm.
30 isLiteralTextOperand,
31 // This is the name of a routine to call to print the operand.
32 isMachineInstrOperand,
33 // Output this text verbatim to the asm writer. It is code that
34 // will output some text to the asm.
35 isLiteralStatementOperand
36 } OperandType;
37
38 /// Str - For isLiteralTextOperand, this IS the literal text. For
39 /// isMachineInstrOperand, this is the PrinterMethodName for the operand..
40 /// For isLiteralStatementOperand, this is the code to insert verbatim
41 /// into the asm writer.
42 std::string Str;
43
44 /// MiOpNo - For isMachineInstrOperand, this is the operand number of the
45 /// machine instruction.
46 unsigned MIOpNo;
47
48 /// MiModifier - For isMachineInstrOperand, this is the modifier string for
49 /// an operand, specified with syntax like ${opname:modifier}.
50 std::string MiModifier;
51
52 // To make VS STL happy
53 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {}
54
55 AsmWriterOperand(const std::string &LitStr,
56 OpType op = isLiteralTextOperand)
57 : OperandType(op), Str(LitStr) {}
58
59 AsmWriterOperand(const std::string &Printer, unsigned OpNo,
60 const std::string &Modifier,
61 OpType op = isMachineInstrOperand)
62 : OperandType(op), Str(Printer), MIOpNo(OpNo),
63 MiModifier(Modifier) {}
64
65 bool operator!=(const AsmWriterOperand &Other) const {
66 if (OperandType != Other.OperandType || Str != Other.Str) return true;
67 if (OperandType == isMachineInstrOperand)
68 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier;
69 return false;
70 }
71 bool operator==(const AsmWriterOperand &Other) const {
72 return !operator!=(Other);
73 }
74
75 /// getCode - Return the code that prints this operand.
76 std::string getCode() const;
77 };
78
79 class AsmWriterInst {
80 public:
81 std::vector<AsmWriterOperand> Operands;
82 const CodeGenInstruction *CGI;
83
Sean Callanand0bc7f02010-02-09 23:06:35 +000084 AsmWriterInst(const CodeGenInstruction &CGI,
85 unsigned Variant,
86 int FirstOperandColumn,
87 int OperandSpacing);
Sean Callanand32c02f2010-02-09 21:50:41 +000088
89 /// MatchesAllButOneOp - If this instruction is exactly identical to the
90 /// specified instruction except for one differing operand, return the
91 /// differing operand number. Otherwise return ~0.
92 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
93
94 private:
95 void AddLiteralString(const std::string &Str) {
96 // If the last operand was already a literal text string, append this to
97 // it, otherwise add a new operand.
98 if (!Operands.empty() &&
99 Operands.back().OperandType == AsmWriterOperand::isLiteralTextOperand)
100 Operands.back().Str.append(Str);
101 else
102 Operands.push_back(AsmWriterOperand(Str));
103 }
104 };
105}
106
107#endif