blob: 2a6749a613638034f2aa434c3d03389185bcfa42 [file] [log] [blame]
Chris Lattnerea2d52d2008-01-06 01:35:39 +00001//===- CodeGenInstruction.cpp - CodeGen Instruction Class Wrapper ---------===//
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 file implements the CodeGenInstruction class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenInstruction.h"
Chris Lattner7bc5d9b2010-03-27 20:09:24 +000015#include "CodeGenTarget.h"
Chandler Carruth91d19d82012-12-04 10:37:14 +000016#include "llvm/ADT/STLExtras.h"
Chris Lattnerea2d52d2008-01-06 01:35:39 +000017#include "llvm/ADT/StringExtras.h"
Chris Lattnerb625dd22010-11-06 07:06:09 +000018#include "llvm/ADT/StringMap.h"
Chandler Carruth91d19d82012-12-04 10:37:14 +000019#include "llvm/TableGen/Error.h"
20#include "llvm/TableGen/Record.h"
Chris Lattnerea2d52d2008-01-06 01:35:39 +000021#include <set>
22using namespace llvm;
23
Chris Lattnerd8adec72010-11-01 04:03:32 +000024//===----------------------------------------------------------------------===//
25// CGIOperandList Implementation
26//===----------------------------------------------------------------------===//
Jim Grosbach2a282f22009-12-16 19:43:02 +000027
Chris Lattnerd8adec72010-11-01 04:03:32 +000028CGIOperandList::CGIOperandList(Record *R) : TheDef(R) {
29 isPredicable = false;
Chris Lattnerea2d52d2008-01-06 01:35:39 +000030 hasOptionalDef = false;
Chris Lattnerf376c992008-01-07 05:19:29 +000031 isVariadic = false;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +000032
David Greeneaf8ee2c2011-07-29 22:43:06 +000033 DagInit *OutDI = R->getValueAsDag("OutOperandList");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +000034
Sean Silvafb509ed2012-10-10 20:24:43 +000035 if (DefInit *Init = dyn_cast<DefInit>(OutDI->getOperator())) {
Chris Lattner0f037472010-03-18 20:56:35 +000036 if (Init->getDef()->getName() != "outs")
Joerg Sonnenberger635debe2012-10-25 20:33:17 +000037 PrintFatalError(R->getName() + ": invalid def name for output list: use 'outs'");
Chris Lattner5f418ea2010-03-18 20:50:52 +000038 } else
Joerg Sonnenberger635debe2012-10-25 20:33:17 +000039 PrintFatalError(R->getName() + ": invalid output list: use 'outs'");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +000040
Chris Lattner1f22d272010-03-18 21:07:39 +000041 NumDefs = OutDI->getNumArgs();
Chris Lattnerd8adec72010-11-01 04:03:32 +000042
David Greeneaf8ee2c2011-07-29 22:43:06 +000043 DagInit *InDI = R->getValueAsDag("InOperandList");
Sean Silvafb509ed2012-10-10 20:24:43 +000044 if (DefInit *Init = dyn_cast<DefInit>(InDI->getOperator())) {
Chris Lattner0f037472010-03-18 20:56:35 +000045 if (Init->getDef()->getName() != "ins")
Joerg Sonnenberger635debe2012-10-25 20:33:17 +000046 PrintFatalError(R->getName() + ": invalid def name for input list: use 'ins'");
Chris Lattner5f418ea2010-03-18 20:50:52 +000047 } else
Joerg Sonnenberger635debe2012-10-25 20:33:17 +000048 PrintFatalError(R->getName() + ": invalid input list: use 'ins'");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +000049
Chris Lattnerea2d52d2008-01-06 01:35:39 +000050 unsigned MIOperandNo = 0;
51 std::set<std::string> OperandNames;
Reid Kleckner45b61592016-02-03 19:34:28 +000052 unsigned e = InDI->getNumArgs() + OutDI->getNumArgs();
53 OperandList.reserve(e);
54 for (unsigned i = 0; i != e; ++i){
David Greeneaf8ee2c2011-07-29 22:43:06 +000055 Init *ArgInit;
Matthias Braunbb053162016-12-05 06:00:46 +000056 StringRef ArgName;
Chris Lattner1f22d272010-03-18 21:07:39 +000057 if (i < NumDefs) {
58 ArgInit = OutDI->getArg(i);
Matthias Braunbb053162016-12-05 06:00:46 +000059 ArgName = OutDI->getArgNameStr(i);
Chris Lattner1f22d272010-03-18 21:07:39 +000060 } else {
61 ArgInit = InDI->getArg(i-NumDefs);
Matthias Braunbb053162016-12-05 06:00:46 +000062 ArgName = InDI->getArgNameStr(i-NumDefs);
Chris Lattner1f22d272010-03-18 21:07:39 +000063 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +000064
Sean Silvafb509ed2012-10-10 20:24:43 +000065 DefInit *Arg = dyn_cast<DefInit>(ArgInit);
Chris Lattnerea2d52d2008-01-06 01:35:39 +000066 if (!Arg)
Joerg Sonnenberger635debe2012-10-25 20:33:17 +000067 PrintFatalError("Illegal operand for the '" + R->getName() + "' instruction!");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +000068
Chris Lattnerea2d52d2008-01-06 01:35:39 +000069 Record *Rec = Arg->getDef();
70 std::string PrintMethod = "printOperand";
Jim Grosbach51a12eb2010-10-12 22:21:57 +000071 std::string EncoderMethod;
Benjamin Kramerc8dc46b2011-07-14 21:47:18 +000072 std::string OperandType = "OPERAND_UNKNOWN";
Tom Stellard89b26102015-01-12 19:33:09 +000073 std::string OperandNamespace = "MCOI";
Chris Lattnerea2d52d2008-01-06 01:35:39 +000074 unsigned NumOps = 1;
Craig Topper24064772014-04-15 07:20:03 +000075 DagInit *MIOpInfo = nullptr;
Owen Andersona84be6c2011-06-27 21:06:21 +000076 if (Rec->isSubClassOf("RegisterOperand")) {
77 PrintMethod = Rec->getValueAsString("PrintMethod");
Tom Stellard89b26102015-01-12 19:33:09 +000078 OperandType = Rec->getValueAsString("OperandType");
79 OperandNamespace = Rec->getValueAsString("OperandNamespace");
Sam Kolton1a5a5e62017-05-15 10:13:07 +000080 EncoderMethod = Rec->getValueAsString("EncoderMethod");
Owen Andersona84be6c2011-06-27 21:06:21 +000081 } else if (Rec->isSubClassOf("Operand")) {
Chris Lattnerea2d52d2008-01-06 01:35:39 +000082 PrintMethod = Rec->getValueAsString("PrintMethod");
Benjamin Kramerc8dc46b2011-07-14 21:47:18 +000083 OperandType = Rec->getValueAsString("OperandType");
Dan Gohmandb70d012015-12-22 23:37:37 +000084 OperandNamespace = Rec->getValueAsString("OperandNamespace");
Jim Grosbach51a12eb2010-10-12 22:21:57 +000085 // If there is an explicit encoder method, use it.
Chris Lattner63274cb2010-11-15 05:19:05 +000086 EncoderMethod = Rec->getValueAsString("EncoderMethod");
Chris Lattnerea2d52d2008-01-06 01:35:39 +000087 MIOpInfo = Rec->getValueAsDag("MIOperandInfo");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +000088
Chris Lattnerea2d52d2008-01-06 01:35:39 +000089 // Verify that MIOpInfo has an 'ops' root value.
Sean Silva88eb8dd2012-10-10 20:24:47 +000090 if (!isa<DefInit>(MIOpInfo->getOperator()) ||
91 cast<DefInit>(MIOpInfo->getOperator())->getDef()->getName() != "ops")
Joerg Sonnenberger635debe2012-10-25 20:33:17 +000092 PrintFatalError("Bad value for MIOperandInfo in operand '" + Rec->getName() +
93 "'\n");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +000094
Chris Lattnerea2d52d2008-01-06 01:35:39 +000095 // If we have MIOpInfo, then we have #operands equal to number of entries
96 // in MIOperandInfo.
97 if (unsigned NumArgs = MIOpInfo->getNumArgs())
98 NumOps = NumArgs;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +000099
Tim Northover42180442013-08-22 09:57:11 +0000100 if (Rec->isSubClassOf("PredicateOp"))
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000101 isPredicable = true;
102 else if (Rec->isSubClassOf("OptionalDefOperand"))
103 hasOptionalDef = true;
104 } else if (Rec->getName() == "variable_ops") {
Chris Lattnerf376c992008-01-07 05:19:29 +0000105 isVariadic = true;
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000106 continue;
Benjamin Kramerc8dc46b2011-07-14 21:47:18 +0000107 } else if (Rec->isSubClassOf("RegisterClass")) {
108 OperandType = "OPERAND_REGISTER";
109 } else if (!Rec->isSubClassOf("PointerLikeRegClass") &&
Owen Anderson16ba4b22012-09-11 23:47:08 +0000110 !Rec->isSubClassOf("unknown_class"))
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000111 PrintFatalError("Unknown operand class '" + Rec->getName() +
112 "' in '" + R->getName() + "' instruction!");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000113
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000114 // Check that the operand has a name and that it's unique.
Chris Lattner1f22d272010-03-18 21:07:39 +0000115 if (ArgName.empty())
Benjamin Kramer48e7e852014-03-29 17:17:15 +0000116 PrintFatalError("In instruction '" + R->getName() + "', operand #" +
117 Twine(i) + " has no name!");
Chris Lattner1f22d272010-03-18 21:07:39 +0000118 if (!OperandNames.insert(ArgName).second)
Benjamin Kramer48e7e852014-03-29 17:17:15 +0000119 PrintFatalError("In instruction '" + R->getName() + "', operand #" +
120 Twine(i) + " has the same name as a previous operand!");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000121
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +0000122 OperandList.emplace_back(Rec, ArgName, PrintMethod, EncoderMethod,
123 OperandNamespace + "::" + OperandType, MIOperandNo,
124 NumOps, MIOpInfo);
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000125 MIOperandNo += NumOps;
126 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000127
128
Chris Lattnerdd3b09c2010-11-01 05:34:34 +0000129 // Make sure the constraints list for each operand is large enough to hold
130 // constraint info, even if none is present.
Javed Absar41705e92017-10-06 09:32:45 +0000131 for (OperandInfo &OpInfo : OperandList)
132 OpInfo.Constraints.resize(OpInfo.MINumOperands);
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000133}
134
Chris Lattnerd8adec72010-11-01 04:03:32 +0000135
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000136/// getOperandNamed - Return the index of the operand with the specified
137/// non-empty name. If the instruction does not have an operand with the
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000138/// specified name, abort.
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000139///
Chris Lattnerd8adec72010-11-01 04:03:32 +0000140unsigned CGIOperandList::getOperandNamed(StringRef Name) const {
Jim Grosbach191ad7c2010-10-11 18:25:51 +0000141 unsigned OpIdx;
142 if (hasOperandNamed(Name, OpIdx)) return OpIdx;
Benjamin Kramer48e7e852014-03-29 17:17:15 +0000143 PrintFatalError("'" + TheDef->getName() +
144 "' does not have an operand named '$" + Name + "'!");
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000145}
146
Jim Grosbach191ad7c2010-10-11 18:25:51 +0000147/// hasOperandNamed - Query whether the instruction has an operand of the
148/// given name. If so, return true and set OpIdx to the index of the
149/// operand. Otherwise, return false.
Chris Lattnerd8adec72010-11-01 04:03:32 +0000150bool CGIOperandList::hasOperandNamed(StringRef Name, unsigned &OpIdx) const {
Jim Grosbach191ad7c2010-10-11 18:25:51 +0000151 assert(!Name.empty() && "Cannot search for operand with no name!");
152 for (unsigned i = 0, e = OperandList.size(); i != e; ++i)
153 if (OperandList[i].Name == Name) {
154 OpIdx = i;
155 return true;
156 }
157 return false;
158}
159
Jim Grosbach38c4f4b2009-12-15 19:28:13 +0000160std::pair<unsigned,unsigned>
Chris Lattnerd8adec72010-11-01 04:03:32 +0000161CGIOperandList::ParseOperandName(const std::string &Op, bool AllowWholeOp) {
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000162 if (Op.empty() || Op[0] != '$')
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000163 PrintFatalError(TheDef->getName() + ": Illegal operand name: '" + Op + "'");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000164
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000165 std::string OpName = Op.substr(1);
166 std::string SubOpName;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000167
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000168 // Check to see if this is $foo.bar.
Benjamin Kramere6ba5ef2016-11-30 10:01:11 +0000169 std::string::size_type DotIdx = OpName.find_first_of('.');
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000170 if (DotIdx != std::string::npos) {
171 SubOpName = OpName.substr(DotIdx+1);
172 if (SubOpName.empty())
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000173 PrintFatalError(TheDef->getName() + ": illegal empty suboperand name in '" +Op +"'");
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000174 OpName = OpName.substr(0, DotIdx);
175 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000176
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000177 unsigned OpIdx = getOperandNamed(OpName);
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000178
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000179 if (SubOpName.empty()) { // If no suboperand name was specified:
180 // If one was needed, throw.
181 if (OperandList[OpIdx].MINumOperands > 1 && !AllowWholeOp &&
182 SubOpName.empty())
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000183 PrintFatalError(TheDef->getName() + ": Illegal to refer to"
184 " whole operand part of complex operand '" + Op + "'");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000185
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000186 // Otherwise, return the operand.
187 return std::make_pair(OpIdx, 0U);
188 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000189
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000190 // Find the suboperand number involved.
David Greeneaf8ee2c2011-07-29 22:43:06 +0000191 DagInit *MIOpInfo = OperandList[OpIdx].MIOperandInfo;
Craig Topper24064772014-04-15 07:20:03 +0000192 if (!MIOpInfo)
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000193 PrintFatalError(TheDef->getName() + ": unknown suboperand name in '" + Op + "'");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000194
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000195 // Find the operand with the right name.
196 for (unsigned i = 0, e = MIOpInfo->getNumArgs(); i != e; ++i)
Matthias Braunbb053162016-12-05 06:00:46 +0000197 if (MIOpInfo->getArgNameStr(i) == SubOpName)
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000198 return std::make_pair(OpIdx, i);
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000199
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000200 // Otherwise, didn't find it!
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000201 PrintFatalError(TheDef->getName() + ": unknown suboperand name in '" + Op + "'");
Aaron Ballman414a0cd2013-08-16 01:43:31 +0000202 return std::make_pair(0U, 0U);
Chris Lattnerea2d52d2008-01-06 01:35:39 +0000203}
Chris Lattner7bc5d9b2010-03-27 20:09:24 +0000204
Simon Tatham34860552018-11-28 11:43:49 +0000205static void ParseConstraint(const std::string &CStr, CGIOperandList &Ops,
206 Record *Rec) {
Chris Lattnerd8adec72010-11-01 04:03:32 +0000207 // EARLY_CLOBBER: @early $reg
208 std::string::size_type wpos = CStr.find_first_of(" \t");
209 std::string::size_type start = CStr.find_first_not_of(" \t");
210 std::string Tok = CStr.substr(start, wpos - start);
211 if (Tok == "@earlyclobber") {
212 std::string Name = CStr.substr(wpos+1);
213 wpos = Name.find_first_not_of(" \t");
214 if (wpos == std::string::npos)
Simon Tatham34860552018-11-28 11:43:49 +0000215 PrintFatalError(
216 Rec->getLoc(), "Illegal format for @earlyclobber constraint in '" +
217 Rec->getName() + "': '" + CStr + "'");
Chris Lattnerd8adec72010-11-01 04:03:32 +0000218 Name = Name.substr(wpos);
219 std::pair<unsigned,unsigned> Op = Ops.ParseOperandName(Name, false);
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000220
Chris Lattnerd8adec72010-11-01 04:03:32 +0000221 // Build the string for the operand
222 if (!Ops[Op.first].Constraints[Op.second].isNone())
Simon Tatham34860552018-11-28 11:43:49 +0000223 PrintFatalError(
224 Rec->getLoc(), "Operand '" + Name + "' of '" + Rec->getName() +
225 "' cannot have multiple constraints!");
Chris Lattnerd8adec72010-11-01 04:03:32 +0000226 Ops[Op.first].Constraints[Op.second] =
227 CGIOperandList::ConstraintInfo::getEarlyClobber();
228 return;
229 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000230
Chris Lattnerd8adec72010-11-01 04:03:32 +0000231 // Only other constraint is "TIED_TO" for now.
232 std::string::size_type pos = CStr.find_first_of('=');
Simon Tatham34860552018-11-28 11:43:49 +0000233 if (pos == std::string::npos)
234 PrintFatalError(
235 Rec->getLoc(), "Unrecognized constraint '" + CStr +
236 "' in '" + Rec->getName() + "'");
Chris Lattnerd8adec72010-11-01 04:03:32 +0000237 start = CStr.find_first_not_of(" \t");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000238
Chris Lattnerd8adec72010-11-01 04:03:32 +0000239 // TIED_TO: $src1 = $dst
Simon Tatham34860552018-11-28 11:43:49 +0000240 wpos = CStr.find_first_of(" \t", start);
241 if (wpos == std::string::npos || wpos > pos)
242 PrintFatalError(
243 Rec->getLoc(), "Illegal format for tied-to constraint in '" +
244 Rec->getName() + "': '" + CStr + "'");
245 std::string LHSOpName = StringRef(CStr).substr(start, wpos - start);
246 std::pair<unsigned,unsigned> LHSOp = Ops.ParseOperandName(LHSOpName, false);
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000247
Simon Tatham34860552018-11-28 11:43:49 +0000248 wpos = CStr.find_first_not_of(" \t", pos + 1);
Chris Lattnerd8adec72010-11-01 04:03:32 +0000249 if (wpos == std::string::npos)
Simon Tatham34860552018-11-28 11:43:49 +0000250 PrintFatalError(
251 Rec->getLoc(), "Illegal format for tied-to constraint: '" + CStr + "'");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000252
Simon Tatham34860552018-11-28 11:43:49 +0000253 std::string RHSOpName = StringRef(CStr).substr(wpos);
254 std::pair<unsigned,unsigned> RHSOp = Ops.ParseOperandName(RHSOpName, false);
255
256 // Sort the operands into order, which should put the output one
257 // first. But keep the original order, for use in diagnostics.
258 bool FirstIsDest = (LHSOp < RHSOp);
259 std::pair<unsigned,unsigned> DestOp = (FirstIsDest ? LHSOp : RHSOp);
260 StringRef DestOpName = (FirstIsDest ? LHSOpName : RHSOpName);
261 std::pair<unsigned,unsigned> SrcOp = (FirstIsDest ? RHSOp : LHSOp);
262 StringRef SrcOpName = (FirstIsDest ? RHSOpName : LHSOpName);
263
264 // Ensure one operand is a def and the other is a use.
265 if (DestOp.first >= Ops.NumDefs)
266 PrintFatalError(
267 Rec->getLoc(), "Input operands '" + LHSOpName + "' and '" + RHSOpName +
268 "' of '" + Rec->getName() + "' cannot be tied!");
269 if (SrcOp.first < Ops.NumDefs)
270 PrintFatalError(
271 Rec->getLoc(), "Output operands '" + LHSOpName + "' and '" + RHSOpName +
272 "' of '" + Rec->getName() + "' cannot be tied!");
273
274 // The constraint has to go on the operand with higher index, i.e.
275 // the source one. Check there isn't another constraint there
276 // already.
277 if (!Ops[SrcOp.first].Constraints[SrcOp.second].isNone())
278 PrintFatalError(
279 Rec->getLoc(), "Operand '" + SrcOpName + "' of '" + Rec->getName() +
280 "' cannot have multiple constraints!");
281
282 unsigned DestFlatOpNo = Ops.getFlattenedOperandNumber(DestOp);
283 auto NewConstraint = CGIOperandList::ConstraintInfo::getTied(DestFlatOpNo);
284
285 // Check that the earlier operand is not the target of another tie
286 // before making it the target of this one.
287 for (const CGIOperandList::OperandInfo &Op : Ops) {
288 for (unsigned i = 0; i < Op.MINumOperands; i++)
289 if (Op.Constraints[i] == NewConstraint)
290 PrintFatalError(
291 Rec->getLoc(), "Operand '" + DestOpName + "' of '" + Rec->getName() +
292 "' cannot have multiple operands tied to it!");
Lang Hamescdd40bd2012-10-20 22:44:13 +0000293 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000294
Simon Tatham34860552018-11-28 11:43:49 +0000295 Ops[SrcOp.first].Constraints[SrcOp.second] = NewConstraint;
Chris Lattnerd8adec72010-11-01 04:03:32 +0000296}
297
Simon Tatham34860552018-11-28 11:43:49 +0000298static void ParseConstraints(const std::string &CStr, CGIOperandList &Ops,
299 Record *Rec) {
Chris Lattnerd8adec72010-11-01 04:03:32 +0000300 if (CStr.empty()) return;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000301
Chris Lattnerd8adec72010-11-01 04:03:32 +0000302 const std::string delims(",");
303 std::string::size_type bidx, eidx;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000304
Chris Lattnerd8adec72010-11-01 04:03:32 +0000305 bidx = CStr.find_first_not_of(delims);
306 while (bidx != std::string::npos) {
307 eidx = CStr.find_first_of(delims, bidx);
308 if (eidx == std::string::npos)
309 eidx = CStr.length();
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000310
Simon Tatham34860552018-11-28 11:43:49 +0000311 ParseConstraint(CStr.substr(bidx, eidx - bidx), Ops, Rec);
Chris Lattnerd8adec72010-11-01 04:03:32 +0000312 bidx = CStr.find_first_not_of(delims, eidx);
313 }
314}
315
316void CGIOperandList::ProcessDisableEncoding(std::string DisableEncoding) {
317 while (1) {
Chris Lattner5cf753c2011-07-21 06:21:31 +0000318 std::pair<StringRef, StringRef> P = getToken(DisableEncoding, " ,\t");
319 std::string OpName = P.first;
320 DisableEncoding = P.second;
Chris Lattnerd8adec72010-11-01 04:03:32 +0000321 if (OpName.empty()) break;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000322
Chris Lattnerd8adec72010-11-01 04:03:32 +0000323 // Figure out which operand this is.
324 std::pair<unsigned,unsigned> Op = ParseOperandName(OpName, false);
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000325
Chris Lattnerd8adec72010-11-01 04:03:32 +0000326 // Mark the operand as not-to-be encoded.
327 if (Op.second >= OperandList[Op.first].DoNotEncode.size())
328 OperandList[Op.first].DoNotEncode.resize(Op.second+1);
329 OperandList[Op.first].DoNotEncode[Op.second] = true;
330 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000331
Chris Lattnerd8adec72010-11-01 04:03:32 +0000332}
333
334//===----------------------------------------------------------------------===//
335// CodeGenInstruction Implementation
336//===----------------------------------------------------------------------===//
337
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +0000338CodeGenInstruction::CodeGenInstruction(Record *R)
Craig Topper24064772014-04-15 07:20:03 +0000339 : TheDef(R), Operands(R), InferredFrom(nullptr) {
Chris Lattnerd8adec72010-11-01 04:03:32 +0000340 Namespace = R->getValueAsString("Namespace");
341 AsmString = R->getValueAsString("AsmString");
342
343 isReturn = R->getValueAsBit("isReturn");
Heejin Ahned5e06b2018-08-21 19:44:11 +0000344 isEHScopeReturn = R->getValueAsBit("isEHScopeReturn");
Chris Lattnerd8adec72010-11-01 04:03:32 +0000345 isBranch = R->getValueAsBit("isBranch");
346 isIndirectBranch = R->getValueAsBit("isIndirectBranch");
347 isCompare = R->getValueAsBit("isCompare");
Evan Cheng7f8ab6e2010-11-17 20:13:28 +0000348 isMoveImm = R->getValueAsBit("isMoveImm");
Petar Jovanovicc0510002018-05-23 15:28:28 +0000349 isMoveReg = R->getValueAsBit("isMoveReg");
Evan Cheng880e299d2011-03-15 05:09:26 +0000350 isBitcast = R->getValueAsBit("isBitcast");
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000351 isSelect = R->getValueAsBit("isSelect");
Chris Lattnerd8adec72010-11-01 04:03:32 +0000352 isBarrier = R->getValueAsBit("isBarrier");
353 isCall = R->getValueAsBit("isCall");
Sjoerd Meijer724023a2016-09-14 08:20:03 +0000354 isAdd = R->getValueAsBit("isAdd");
Joel Galenson06e7e572018-07-13 15:19:33 +0000355 isTrap = R->getValueAsBit("isTrap");
Chris Lattnerd8adec72010-11-01 04:03:32 +0000356 canFoldAsLoad = R->getValueAsBit("canFoldAsLoad");
Chris Lattnerd8adec72010-11-01 04:03:32 +0000357 isPredicable = Operands.isPredicable || R->getValueAsBit("isPredicable");
358 isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress");
359 isCommutable = R->getValueAsBit("isCommutable");
360 isTerminator = R->getValueAsBit("isTerminator");
361 isReMaterializable = R->getValueAsBit("isReMaterializable");
362 hasDelaySlot = R->getValueAsBit("hasDelaySlot");
363 usesCustomInserter = R->getValueAsBit("usesCustomInserter");
Andrew Trick52363bd2011-09-20 18:22:31 +0000364 hasPostISelHook = R->getValueAsBit("hasPostISelHook");
Chris Lattnerd8adec72010-11-01 04:03:32 +0000365 hasCtrlDep = R->getValueAsBit("hasCtrlDep");
366 isNotDuplicable = R->getValueAsBit("isNotDuplicable");
Quentin Colombetd533cdf2014-08-11 22:17:14 +0000367 isRegSequence = R->getValueAsBit("isRegSequence");
Quentin Colombet7e75cba2014-08-20 21:51:26 +0000368 isExtractSubreg = R->getValueAsBit("isExtractSubreg");
Quentin Colombet7e3da662014-08-20 23:49:36 +0000369 isInsertSubreg = R->getValueAsBit("isInsertSubreg");
Owen Andersonabaa5232015-05-28 18:33:39 +0000370 isConvergent = R->getValueAsBit("isConvergent");
Matthias Braun8e0a7342016-03-01 20:03:11 +0000371 hasNoSchedulingInfo = R->getValueAsBit("hasNoSchedulingInfo");
Simon Dardis13de5552018-05-22 14:36:58 +0000372 FastISelShouldIgnore = R->getValueAsBit("FastISelShouldIgnore");
Jakob Stoklund Olesenaf507bf2012-08-23 19:34:46 +0000373
Craig Topperbc9486b2014-02-05 09:10:40 +0000374 bool Unset;
375 mayLoad = R->getValueAsBitOrUnset("mayLoad", Unset);
376 mayLoad_Unset = Unset;
377 mayStore = R->getValueAsBitOrUnset("mayStore", Unset);
378 mayStore_Unset = Unset;
379 hasSideEffects = R->getValueAsBitOrUnset("hasSideEffects", Unset);
380 hasSideEffects_Unset = Unset;
Jakob Stoklund Olesenaf507bf2012-08-23 19:34:46 +0000381
Chris Lattnerd8adec72010-11-01 04:03:32 +0000382 isAsCheapAsAMove = R->getValueAsBit("isAsCheapAsAMove");
383 hasExtraSrcRegAllocReq = R->getValueAsBit("hasExtraSrcRegAllocReq");
384 hasExtraDefRegAllocReq = R->getValueAsBit("hasExtraDefRegAllocReq");
Jim Grosbach4c08a9f2011-07-07 00:48:02 +0000385 isCodeGenOnly = R->getValueAsBit("isCodeGenOnly");
Jim Grosbachf3fd36e2011-07-06 21:33:38 +0000386 isPseudo = R->getValueAsBit("isPseudo");
Chris Lattnerd8adec72010-11-01 04:03:32 +0000387 ImplicitDefs = R->getValueAsListOfDefs("Defs");
388 ImplicitUses = R->getValueAsListOfDefs("Uses");
389
Ulrich Weigandc48aefb2018-07-13 13:18:00 +0000390 // This flag is only inferred from the pattern.
391 hasChain = false;
392 hasChain_Inferred = false;
393
Chris Lattnerd8adec72010-11-01 04:03:32 +0000394 // Parse Constraints.
Simon Tatham34860552018-11-28 11:43:49 +0000395 ParseConstraints(R->getValueAsString("Constraints"), Operands, R);
Chris Lattnerd8adec72010-11-01 04:03:32 +0000396
397 // Parse the DisableEncoding field.
398 Operands.ProcessDisableEncoding(R->getValueAsString("DisableEncoding"));
Joey Gouly0e76fa72013-09-12 10:28:05 +0000399
400 // First check for a ComplexDeprecationPredicate.
401 if (R->getValue("ComplexDeprecationPredicate")) {
402 HasComplexDeprecationPredicate = true;
403 DeprecatedReason = R->getValueAsString("ComplexDeprecationPredicate");
404 } else if (RecordVal *Dep = R->getValue("DeprecatedFeatureMask")) {
405 // Check if we have a Subtarget feature mask.
406 HasComplexDeprecationPredicate = false;
407 DeprecatedReason = Dep->getValue()->getAsString();
408 } else {
409 // This instruction isn't deprecated.
410 HasComplexDeprecationPredicate = false;
411 DeprecatedReason = "";
412 }
Chris Lattnerd8adec72010-11-01 04:03:32 +0000413}
Chris Lattner7bc5d9b2010-03-27 20:09:24 +0000414
415/// HasOneImplicitDefWithKnownVT - If the instruction has at least one
416/// implicit def and it has a known VT, return the VT, otherwise return
417/// MVT::Other.
418MVT::SimpleValueType CodeGenInstruction::
419HasOneImplicitDefWithKnownVT(const CodeGenTarget &TargetInfo) const {
420 if (ImplicitDefs.empty()) return MVT::Other;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000421
Chris Lattner7bc5d9b2010-03-27 20:09:24 +0000422 // Check to see if the first implicit def has a resolvable type.
423 Record *FirstImplicitDef = ImplicitDefs[0];
424 assert(FirstImplicitDef->isSubClassOf("Register"));
Krzysztof Parzyszek779d98e2017-09-14 16:56:21 +0000425 const std::vector<ValueTypeByHwMode> &RegVTs =
Chris Lattner7bc5d9b2010-03-27 20:09:24 +0000426 TargetInfo.getRegisterVTs(FirstImplicitDef);
Krzysztof Parzyszek779d98e2017-09-14 16:56:21 +0000427 if (RegVTs.size() == 1 && RegVTs[0].isSimple())
428 return RegVTs[0].getSimple().SimpleTy;
Chris Lattner7bc5d9b2010-03-27 20:09:24 +0000429 return MVT::Other;
430}
431
Chris Lattner25d9c7f2010-11-01 01:07:14 +0000432
433/// FlattenAsmStringVariants - Flatten the specified AsmString to only
434/// include text from the specified variant, returning the new string.
435std::string CodeGenInstruction::
436FlattenAsmStringVariants(StringRef Cur, unsigned Variant) {
437 std::string Res = "";
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000438
Chris Lattner25d9c7f2010-11-01 01:07:14 +0000439 for (;;) {
440 // Find the start of the next variant string.
441 size_t VariantsStart = 0;
442 for (size_t e = Cur.size(); VariantsStart != e; ++VariantsStart)
443 if (Cur[VariantsStart] == '{' &&
444 (VariantsStart == 0 || (Cur[VariantsStart-1] != '$' &&
445 Cur[VariantsStart-1] != '\\')))
446 break;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000447
Chris Lattner25d9c7f2010-11-01 01:07:14 +0000448 // Add the prefix to the result.
449 Res += Cur.slice(0, VariantsStart);
450 if (VariantsStart == Cur.size())
451 break;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000452
Chris Lattner25d9c7f2010-11-01 01:07:14 +0000453 ++VariantsStart; // Skip the '{'.
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000454
Chris Lattner25d9c7f2010-11-01 01:07:14 +0000455 // Scan to the end of the variants string.
456 size_t VariantsEnd = VariantsStart;
457 unsigned NestedBraces = 1;
458 for (size_t e = Cur.size(); VariantsEnd != e; ++VariantsEnd) {
459 if (Cur[VariantsEnd] == '}' && Cur[VariantsEnd-1] != '\\') {
460 if (--NestedBraces == 0)
461 break;
462 } else if (Cur[VariantsEnd] == '{')
463 ++NestedBraces;
464 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000465
Chris Lattner25d9c7f2010-11-01 01:07:14 +0000466 // Select the Nth variant (or empty).
467 StringRef Selection = Cur.slice(VariantsStart, VariantsEnd);
468 for (unsigned i = 0; i != Variant; ++i)
469 Selection = Selection.split('|').second;
470 Res += Selection.split('|').first;
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000471
Chris Lattner25d9c7f2010-11-01 01:07:14 +0000472 assert(VariantsEnd != Cur.size() &&
473 "Unterminated variants in assembly string!");
474 Cur = Cur.substr(VariantsEnd + 1);
475 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000476
Chris Lattner25d9c7f2010-11-01 01:07:14 +0000477 return Res;
478}
479
Daniel Sandersc54aa9c2017-11-18 00:16:44 +0000480bool CodeGenInstruction::isOperandAPointer(unsigned i) const {
481 if (DagInit *ConstraintList = TheDef->getValueAsDag("InOperandList")) {
482 if (i < ConstraintList->getNumArgs()) {
483 if (DefInit *Constraint = dyn_cast<DefInit>(ConstraintList->getArg(i))) {
484 return Constraint->getDef()->isSubClassOf("TypedOperand") &&
485 Constraint->getDef()->getValueAsBit("IsPointer");
486 }
487 }
488 }
489 return false;
490}
Chris Lattner488c2012010-11-01 04:05:41 +0000491
492//===----------------------------------------------------------------------===//
493/// CodeGenInstAlias Implementation
494//===----------------------------------------------------------------------===//
495
Bob Wilsonb9b24222011-01-26 19:44:55 +0000496/// tryAliasOpMatch - This is a helper function for the CodeGenInstAlias
497/// constructor. It checks if an argument in an InstAlias pattern matches
498/// the corresponding operand of the instruction. It returns true on a
499/// successful match, with ResOp set to the result operand to be used.
David Greeneaf8ee2c2011-07-29 22:43:06 +0000500bool CodeGenInstAlias::tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo,
Bob Wilsonb9b24222011-01-26 19:44:55 +0000501 Record *InstOpRec, bool hasSubOps,
Jakob Stoklund Olesend7b66962012-08-22 23:33:58 +0000502 ArrayRef<SMLoc> Loc, CodeGenTarget &T,
Bob Wilsonb9b24222011-01-26 19:44:55 +0000503 ResultOperand &ResOp) {
David Greeneaf8ee2c2011-07-29 22:43:06 +0000504 Init *Arg = Result->getArg(AliasOpNo);
Sean Silvafb509ed2012-10-10 20:24:43 +0000505 DefInit *ADI = dyn_cast<DefInit>(Arg);
Craig Topper24064772014-04-15 07:20:03 +0000506 Record *ResultRecord = ADI ? ADI->getDef() : nullptr;
Bob Wilsonb9b24222011-01-26 19:44:55 +0000507
508 if (ADI && ADI->getDef() == InstOpRec) {
509 // If the operand is a record, it must have a name, and the record type
510 // must match up with the instruction's argument type.
Matthias Braunbb053162016-12-05 06:00:46 +0000511 if (!Result->getArgName(AliasOpNo))
Benjamin Kramer48e7e852014-03-29 17:17:15 +0000512 PrintFatalError(Loc, "result argument #" + Twine(AliasOpNo) +
513 " must have a name!");
Matthias Braunbb053162016-12-05 06:00:46 +0000514 ResOp = ResultOperand(Result->getArgNameStr(AliasOpNo), ResultRecord);
Bob Wilsonb9b24222011-01-26 19:44:55 +0000515 return true;
516 }
517
Jim Grosbach6acb1482011-10-28 16:43:40 +0000518 // For register operands, the source register class can be a subclass
519 // of the instruction register class, not just an exact match.
Tim Northover3e38d292014-03-29 09:03:22 +0000520 if (InstOpRec->isSubClassOf("RegisterOperand"))
521 InstOpRec = InstOpRec->getValueAsDef("RegClass");
522
523 if (ADI && ADI->getDef()->isSubClassOf("RegisterOperand"))
524 ADI = ADI->getDef()->getValueAsDef("RegClass")->getDefInit();
525
Jim Grosbach6acb1482011-10-28 16:43:40 +0000526 if (ADI && ADI->getDef()->isSubClassOf("RegisterClass")) {
527 if (!InstOpRec->isSubClassOf("RegisterClass"))
528 return false;
Jim Grosbachd1f1b792011-10-28 22:32:53 +0000529 if (!T.getRegisterClass(InstOpRec)
530 .hasSubClass(&T.getRegisterClass(ADI->getDef())))
531 return false;
Matthias Braunbb053162016-12-05 06:00:46 +0000532 ResOp = ResultOperand(Result->getArgNameStr(AliasOpNo), ResultRecord);
Jim Grosbachd1f1b792011-10-28 22:32:53 +0000533 return true;
Jim Grosbach6acb1482011-10-28 16:43:40 +0000534 }
535
Bob Wilsonb9b24222011-01-26 19:44:55 +0000536 // Handle explicit registers.
537 if (ADI && ADI->getDef()->isSubClassOf("Register")) {
Jim Grosbacha7b2d442011-08-19 20:33:06 +0000538 if (InstOpRec->isSubClassOf("OptionalDefOperand")) {
539 DagInit *DI = InstOpRec->getValueAsDag("MIOperandInfo");
540 // The operand info should only have a single (register) entry. We
541 // want the register class of it.
Sean Silva88eb8dd2012-10-10 20:24:47 +0000542 InstOpRec = cast<DefInit>(DI->getArg(0))->getDef();
Jim Grosbacha7b2d442011-08-19 20:33:06 +0000543 }
544
Bob Wilsonb9b24222011-01-26 19:44:55 +0000545 if (!InstOpRec->isSubClassOf("RegisterClass"))
546 return false;
547
Jakob Stoklund Olesend7bc5c22011-06-15 04:50:36 +0000548 if (!T.getRegisterClass(InstOpRec)
549 .contains(T.getRegBank().getReg(ADI->getDef())))
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000550 PrintFatalError(Loc, "fixed register " + ADI->getDef()->getName() +
551 " is not a member of the " + InstOpRec->getName() +
552 " register class!");
Bob Wilsonb9b24222011-01-26 19:44:55 +0000553
Matthias Braunbb053162016-12-05 06:00:46 +0000554 if (Result->getArgName(AliasOpNo))
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000555 PrintFatalError(Loc, "result fixed register argument must "
556 "not have a name!");
Bob Wilsonb9b24222011-01-26 19:44:55 +0000557
Tim Northover3e38d292014-03-29 09:03:22 +0000558 ResOp = ResultOperand(ResultRecord);
Bob Wilsonb9b24222011-01-26 19:44:55 +0000559 return true;
560 }
561
562 // Handle "zero_reg" for optional def operands.
563 if (ADI && ADI->getDef()->getName() == "zero_reg") {
564
565 // Check if this is an optional def.
Jim Grosbach29cdcda2011-11-15 01:46:57 +0000566 // Tied operands where the source is a sub-operand of a complex operand
567 // need to represent both operands in the alias destination instruction.
568 // Allow zero_reg for the tied portion. This can and should go away once
569 // the MC representation of things doesn't use tied operands at all.
570 //if (!InstOpRec->isSubClassOf("OptionalDefOperand"))
571 // throw TGError(Loc, "reg0 used for result that is not an "
572 // "OptionalDefOperand!");
Bob Wilsonb9b24222011-01-26 19:44:55 +0000573
Craig Topper24064772014-04-15 07:20:03 +0000574 ResOp = ResultOperand(static_cast<Record*>(nullptr));
Bob Wilsonb9b24222011-01-26 19:44:55 +0000575 return true;
576 }
577
Jim Grosbachd1f1b792011-10-28 22:32:53 +0000578 // Literal integers.
Sean Silvafb509ed2012-10-10 20:24:43 +0000579 if (IntInit *II = dyn_cast<IntInit>(Arg)) {
Bob Wilsonb9b24222011-01-26 19:44:55 +0000580 if (hasSubOps || !InstOpRec->isSubClassOf("Operand"))
581 return false;
582 // Integer arguments can't have names.
Matthias Braunbb053162016-12-05 06:00:46 +0000583 if (Result->getArgName(AliasOpNo))
Benjamin Kramer48e7e852014-03-29 17:17:15 +0000584 PrintFatalError(Loc, "result argument #" + Twine(AliasOpNo) +
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000585 " must not have a name!");
Bob Wilsonb9b24222011-01-26 19:44:55 +0000586 ResOp = ResultOperand(II->getValue());
587 return true;
588 }
589
Pete Cooper2cfdfe52014-08-07 05:47:04 +0000590 // Bits<n> (also used for 0bxx literals)
591 if (BitsInit *BI = dyn_cast<BitsInit>(Arg)) {
592 if (hasSubOps || !InstOpRec->isSubClassOf("Operand"))
593 return false;
594 if (!BI->isComplete())
595 return false;
596 // Convert the bits init to an integer and use that for the result.
597 IntInit *II =
598 dyn_cast_or_null<IntInit>(BI->convertInitializerTo(IntRecTy::get()));
599 if (!II)
600 return false;
601 ResOp = ResultOperand(II->getValue());
602 return true;
603 }
604
Jim Grosbachd1f1b792011-10-28 22:32:53 +0000605 // If both are Operands with the same MVT, allow the conversion. It's
606 // up to the user to make sure the values are appropriate, just like
607 // for isel Pat's.
Michael Ilseman5be22a12014-12-12 21:48:03 +0000608 if (InstOpRec->isSubClassOf("Operand") && ADI &&
Jim Grosbachd1f1b792011-10-28 22:32:53 +0000609 ADI->getDef()->isSubClassOf("Operand")) {
610 // FIXME: What other attributes should we check here? Identical
611 // MIOperandInfo perhaps?
612 if (InstOpRec->getValueInit("Type") != ADI->getDef()->getValueInit("Type"))
613 return false;
Matthias Braunbb053162016-12-05 06:00:46 +0000614 ResOp = ResultOperand(Result->getArgNameStr(AliasOpNo), ADI->getDef());
Jim Grosbachd1f1b792011-10-28 22:32:53 +0000615 return true;
616 }
617
Bob Wilsonb9b24222011-01-26 19:44:55 +0000618 return false;
619}
620
Tim Northover60091cf2014-05-15 13:36:01 +0000621unsigned CodeGenInstAlias::ResultOperand::getMINumOperands() const {
622 if (!isRecord())
623 return 1;
624
625 Record *Rec = getRecord();
626 if (!Rec->isSubClassOf("Operand"))
627 return 1;
628
629 DagInit *MIOpInfo = Rec->getValueAsDag("MIOperandInfo");
630 if (MIOpInfo->getNumArgs() == 0) {
631 // Unspecified, so it defaults to 1
632 return 1;
633 }
634
635 return MIOpInfo->getNumArgs();
636}
637
Craig Topper2be74392018-06-18 01:28:01 +0000638CodeGenInstAlias::CodeGenInstAlias(Record *R, CodeGenTarget &T)
Tim Northoverd8d65a62014-05-15 11:16:32 +0000639 : TheDef(R) {
Chris Lattnerdd3b09c2010-11-01 05:34:34 +0000640 Result = R->getValueAsDag("ResultInst");
Tim Northoverd8d65a62014-05-15 11:16:32 +0000641 AsmString = R->getValueAsString("AsmString");
Tim Northoverd8d65a62014-05-15 11:16:32 +0000642
Chris Lattner8ffd1292010-11-06 06:39:47 +0000643
644 // Verify that the root of the result is an instruction.
Sean Silvafb509ed2012-10-10 20:24:43 +0000645 DefInit *DI = dyn_cast<DefInit>(Result->getOperator());
Craig Topper24064772014-04-15 07:20:03 +0000646 if (!DI || !DI->getDef()->isSubClassOf("Instruction"))
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000647 PrintFatalError(R->getLoc(),
648 "result of inst alias should be an instruction");
Chris Lattner8ffd1292010-11-06 06:39:47 +0000649
650 ResultInst = &T.getInstruction(DI->getDef());
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000651
Chris Lattnerb625dd22010-11-06 07:06:09 +0000652 // NameClass - If argument names are repeated, we need to verify they have
653 // the same class.
654 StringMap<Record*> NameClass;
Bob Wilsona48eacc2011-01-20 18:38:10 +0000655 for (unsigned i = 0, e = Result->getNumArgs(); i != e; ++i) {
Sean Silvafb509ed2012-10-10 20:24:43 +0000656 DefInit *ADI = dyn_cast<DefInit>(Result->getArg(i));
Matthias Braunbb053162016-12-05 06:00:46 +0000657 if (!ADI || !Result->getArgName(i))
Bob Wilsona48eacc2011-01-20 18:38:10 +0000658 continue;
659 // Verify we don't have something like: (someinst GR16:$foo, GR32:$foo)
660 // $foo can exist multiple times in the result list, but it must have the
661 // same type.
Matthias Braunbb053162016-12-05 06:00:46 +0000662 Record *&Entry = NameClass[Result->getArgNameStr(i)];
Bob Wilsona48eacc2011-01-20 18:38:10 +0000663 if (Entry && Entry != ADI->getDef())
Matthias Braunbb053162016-12-05 06:00:46 +0000664 PrintFatalError(R->getLoc(), "result value $" + Result->getArgNameStr(i) +
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000665 " is both " + Entry->getName() + " and " +
666 ADI->getDef()->getName() + "!");
Bob Wilsona48eacc2011-01-20 18:38:10 +0000667 Entry = ADI->getDef();
668 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000669
Chris Lattner76030522010-11-06 06:54:38 +0000670 // Decode and validate the arguments of the result.
Chris Lattner8188fb22010-11-06 07:31:43 +0000671 unsigned AliasOpNo = 0;
672 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
Bob Wilsonb9b24222011-01-26 19:44:55 +0000673
Jim Grosbach29cdcda2011-11-15 01:46:57 +0000674 // Tied registers don't have an entry in the result dag unless they're part
675 // of a complex operand, in which case we include them anyways, as we
676 // don't have any other way to specify the whole operand.
677 if (ResultInst->Operands[i].MINumOperands == 1 &&
Sander de Smalen118099a2018-06-18 13:39:29 +0000678 ResultInst->Operands[i].getTiedRegister() != -1) {
679 // Tied operands of different RegisterClass should be explicit within an
680 // instruction's syntax and so cannot be skipped.
681 int TiedOpNum = ResultInst->Operands[i].getTiedRegister();
682 if (ResultInst->Operands[i].Rec->getName() ==
683 ResultInst->Operands[TiedOpNum].Rec->getName())
684 continue;
685 }
Chris Lattner8188fb22010-11-06 07:31:43 +0000686
687 if (AliasOpNo >= Result->getNumArgs())
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000688 PrintFatalError(R->getLoc(), "not enough arguments for instruction!");
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000689
Bob Wilsonb9b24222011-01-26 19:44:55 +0000690 Record *InstOpRec = ResultInst->Operands[i].Rec;
691 unsigned NumSubOps = ResultInst->Operands[i].MINumOperands;
692 ResultOperand ResOp(static_cast<int64_t>(0));
693 if (tryAliasOpMatch(Result, AliasOpNo, InstOpRec, (NumSubOps > 1),
694 R->getLoc(), T, ResOp)) {
Owen Andersonda6bd3e2012-06-08 00:25:03 +0000695 // If this is a simple operand, or a complex operand with a custom match
696 // class, then we can match is verbatim.
697 if (NumSubOps == 1 ||
698 (InstOpRec->getValue("ParserMatchClass") &&
699 InstOpRec->getValueAsDef("ParserMatchClass")
700 ->getValueAsString("Name") != "Imm")) {
701 ResultOperands.push_back(ResOp);
702 ResultInstOperandIndex.push_back(std::make_pair(i, -1));
703 ++AliasOpNo;
704
705 // Otherwise, we need to match each of the suboperands individually.
706 } else {
707 DagInit *MIOI = ResultInst->Operands[i].MIOperandInfo;
708 for (unsigned SubOp = 0; SubOp != NumSubOps; ++SubOp) {
Sean Silva88eb8dd2012-10-10 20:24:47 +0000709 Record *SubRec = cast<DefInit>(MIOI->getArg(SubOp))->getDef();
Owen Andersonda6bd3e2012-06-08 00:25:03 +0000710
711 // Take care to instantiate each of the suboperands with the correct
712 // nomenclature: $foo.bar
Matthias Braunbb053162016-12-05 06:00:46 +0000713 ResultOperands.emplace_back(
714 Result->getArgName(AliasOpNo)->getAsUnquotedString() + "." +
715 MIOI->getArgName(SubOp)->getAsUnquotedString(), SubRec);
Owen Andersonda6bd3e2012-06-08 00:25:03 +0000716 ResultInstOperandIndex.push_back(std::make_pair(i, SubOp));
717 }
718 ++AliasOpNo;
719 }
Chris Lattner76030522010-11-06 06:54:38 +0000720 continue;
721 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000722
Bob Wilsonb9b24222011-01-26 19:44:55 +0000723 // If the argument did not match the instruction operand, and the operand
724 // is composed of multiple suboperands, try matching the suboperands.
725 if (NumSubOps > 1) {
David Greeneaf8ee2c2011-07-29 22:43:06 +0000726 DagInit *MIOI = ResultInst->Operands[i].MIOperandInfo;
Bob Wilsonb9b24222011-01-26 19:44:55 +0000727 for (unsigned SubOp = 0; SubOp != NumSubOps; ++SubOp) {
728 if (AliasOpNo >= Result->getNumArgs())
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000729 PrintFatalError(R->getLoc(), "not enough arguments for instruction!");
Sean Silva88eb8dd2012-10-10 20:24:47 +0000730 Record *SubRec = cast<DefInit>(MIOI->getArg(SubOp))->getDef();
Bob Wilsonb9b24222011-01-26 19:44:55 +0000731 if (tryAliasOpMatch(Result, AliasOpNo, SubRec, false,
732 R->getLoc(), T, ResOp)) {
733 ResultOperands.push_back(ResOp);
734 ResultInstOperandIndex.push_back(std::make_pair(i, SubOp));
735 ++AliasOpNo;
736 } else {
Benjamin Kramer48e7e852014-03-29 17:17:15 +0000737 PrintFatalError(R->getLoc(), "result argument #" + Twine(AliasOpNo) +
Bob Wilsonb9b24222011-01-26 19:44:55 +0000738 " does not match instruction operand class " +
739 (SubOp == 0 ? InstOpRec->getName() :SubRec->getName()));
740 }
741 }
Chris Lattnerb6f8e822010-11-06 19:25:43 +0000742 continue;
743 }
Benjamin Kramer48e7e852014-03-29 17:17:15 +0000744 PrintFatalError(R->getLoc(), "result argument #" + Twine(AliasOpNo) +
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000745 " does not match instruction operand class " +
746 InstOpRec->getName());
Chris Lattner76030522010-11-06 06:54:38 +0000747 }
NAKAMURA Takumi9d29eff2011-01-26 02:03:37 +0000748
Chris Lattner8188fb22010-11-06 07:31:43 +0000749 if (AliasOpNo != Result->getNumArgs())
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000750 PrintFatalError(R->getLoc(), "too many operands for instruction!");
Chris Lattner488c2012010-11-01 04:05:41 +0000751}