blob: f37d3eabcd414ab6ae249cdf789b5faf625031f6 [file] [log] [blame]
Chris Lattner6cc654b2008-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 Lattner9414ae52010-03-27 20:09:24 +000015#include "CodeGenTarget.h"
Chris Lattner6cc654b2008-01-06 01:35:39 +000016#include "Record.h"
17#include "llvm/ADT/StringExtras.h"
Chris Lattner3f2c8e42010-11-06 07:06:09 +000018#include "llvm/ADT/StringMap.h"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000019#include "llvm/ADT/STLExtras.h"
Chris Lattner6cc654b2008-01-06 01:35:39 +000020#include <set>
21using namespace llvm;
22
Chris Lattnerc240bb02010-11-01 04:03:32 +000023//===----------------------------------------------------------------------===//
24// CGIOperandList Implementation
25//===----------------------------------------------------------------------===//
Jim Grosbach06801722009-12-16 19:43:02 +000026
Chris Lattnerc240bb02010-11-01 04:03:32 +000027CGIOperandList::CGIOperandList(Record *R) : TheDef(R) {
28 isPredicable = false;
Chris Lattner6cc654b2008-01-06 01:35:39 +000029 hasOptionalDef = false;
Chris Lattner8f707e12008-01-07 05:19:29 +000030 isVariadic = false;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000031
Chris Lattnerf55eed22010-03-18 21:07:39 +000032 DagInit *OutDI = R->getValueAsDag("OutOperandList");
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000033
Chris Lattnerf55eed22010-03-18 21:07:39 +000034 if (DefInit *Init = dynamic_cast<DefInit*>(OutDI->getOperator())) {
Chris Lattnerb0be4d22010-03-18 20:56:35 +000035 if (Init->getDef()->getName() != "outs")
Chris Lattnercedef1c2010-03-18 20:50:52 +000036 throw R->getName() + ": invalid def name for output list: use 'outs'";
37 } else
38 throw R->getName() + ": invalid output list: use 'outs'";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000039
Chris Lattnerf55eed22010-03-18 21:07:39 +000040 NumDefs = OutDI->getNumArgs();
Chris Lattnerc240bb02010-11-01 04:03:32 +000041
Chris Lattnerf55eed22010-03-18 21:07:39 +000042 DagInit *InDI = R->getValueAsDag("InOperandList");
43 if (DefInit *Init = dynamic_cast<DefInit*>(InDI->getOperator())) {
Chris Lattnerb0be4d22010-03-18 20:56:35 +000044 if (Init->getDef()->getName() != "ins")
Chris Lattnercedef1c2010-03-18 20:50:52 +000045 throw R->getName() + ": invalid def name for input list: use 'ins'";
46 } else
47 throw R->getName() + ": invalid input list: use 'ins'";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000048
Chris Lattner6cc654b2008-01-06 01:35:39 +000049 unsigned MIOperandNo = 0;
50 std::set<std::string> OperandNames;
Chris Lattnerf55eed22010-03-18 21:07:39 +000051 for (unsigned i = 0, e = InDI->getNumArgs()+OutDI->getNumArgs(); i != e; ++i){
52 Init *ArgInit;
53 std::string ArgName;
54 if (i < NumDefs) {
55 ArgInit = OutDI->getArg(i);
56 ArgName = OutDI->getArgName(i);
57 } else {
58 ArgInit = InDI->getArg(i-NumDefs);
59 ArgName = InDI->getArgName(i-NumDefs);
60 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000061
Chris Lattnerf55eed22010-03-18 21:07:39 +000062 DefInit *Arg = dynamic_cast<DefInit*>(ArgInit);
Chris Lattner6cc654b2008-01-06 01:35:39 +000063 if (!Arg)
64 throw "Illegal operand for the '" + R->getName() + "' instruction!";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000065
Chris Lattner6cc654b2008-01-06 01:35:39 +000066 Record *Rec = Arg->getDef();
67 std::string PrintMethod = "printOperand";
Jim Grosbach5013f742010-10-12 22:21:57 +000068 std::string EncoderMethod;
Chris Lattner6cc654b2008-01-06 01:35:39 +000069 unsigned NumOps = 1;
70 DagInit *MIOpInfo = 0;
71 if (Rec->isSubClassOf("Operand")) {
72 PrintMethod = Rec->getValueAsString("PrintMethod");
Jim Grosbach5013f742010-10-12 22:21:57 +000073 // If there is an explicit encoder method, use it.
Chris Lattner2ac19022010-11-15 05:19:05 +000074 EncoderMethod = Rec->getValueAsString("EncoderMethod");
Chris Lattner6cc654b2008-01-06 01:35:39 +000075 MIOpInfo = Rec->getValueAsDag("MIOperandInfo");
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000076
Chris Lattner6cc654b2008-01-06 01:35:39 +000077 // Verify that MIOpInfo has an 'ops' root value.
78 if (!dynamic_cast<DefInit*>(MIOpInfo->getOperator()) ||
79 dynamic_cast<DefInit*>(MIOpInfo->getOperator())
Chris Lattnerc240bb02010-11-01 04:03:32 +000080 ->getDef()->getName() != "ops")
Chris Lattner6cc654b2008-01-06 01:35:39 +000081 throw "Bad value for MIOperandInfo in operand '" + Rec->getName() +
Chris Lattnerc240bb02010-11-01 04:03:32 +000082 "'\n";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000083
Chris Lattner6cc654b2008-01-06 01:35:39 +000084 // If we have MIOpInfo, then we have #operands equal to number of entries
85 // in MIOperandInfo.
86 if (unsigned NumArgs = MIOpInfo->getNumArgs())
87 NumOps = NumArgs;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000088
Chris Lattner6cc654b2008-01-06 01:35:39 +000089 if (Rec->isSubClassOf("PredicateOperand"))
90 isPredicable = true;
91 else if (Rec->isSubClassOf("OptionalDefOperand"))
92 hasOptionalDef = true;
93 } else if (Rec->getName() == "variable_ops") {
Chris Lattner8f707e12008-01-07 05:19:29 +000094 isVariadic = true;
Chris Lattner6cc654b2008-01-06 01:35:39 +000095 continue;
Jim Grosbachf0a4fad2009-12-15 19:28:13 +000096 } else if (!Rec->isSubClassOf("RegisterClass") &&
NAKAMURA Takumi36c3bc42011-01-26 02:03:48 +000097 !Rec->isSubClassOf("PointerLikeRegClass") &&
98 Rec->getName() != "unknown")
Chris Lattner6cc654b2008-01-06 01:35:39 +000099 throw "Unknown operand class '" + Rec->getName() +
Chris Lattnerc240bb02010-11-01 04:03:32 +0000100 "' in '" + R->getName() + "' instruction!";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000101
Chris Lattner6cc654b2008-01-06 01:35:39 +0000102 // Check that the operand has a name and that it's unique.
Chris Lattnerf55eed22010-03-18 21:07:39 +0000103 if (ArgName.empty())
Chris Lattner6cc654b2008-01-06 01:35:39 +0000104 throw "In instruction '" + R->getName() + "', operand #" + utostr(i) +
Chris Lattnerc240bb02010-11-01 04:03:32 +0000105 " has no name!";
Chris Lattnerf55eed22010-03-18 21:07:39 +0000106 if (!OperandNames.insert(ArgName).second)
Chris Lattner6cc654b2008-01-06 01:35:39 +0000107 throw "In instruction '" + R->getName() + "', operand #" + utostr(i) +
Chris Lattnerc240bb02010-11-01 04:03:32 +0000108 " has the same name as a previous operand!";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000109
Jim Grosbach5013f742010-10-12 22:21:57 +0000110 OperandList.push_back(OperandInfo(Rec, ArgName, PrintMethod, EncoderMethod,
Chris Lattner6cc654b2008-01-06 01:35:39 +0000111 MIOperandNo, NumOps, MIOpInfo));
112 MIOperandNo += NumOps;
113 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000114
115
Chris Lattnerb501d4f2010-11-01 05:34:34 +0000116 // Make sure the constraints list for each operand is large enough to hold
117 // constraint info, even if none is present.
118 for (unsigned i = 0, e = OperandList.size(); i != e; ++i)
119 OperandList[i].Constraints.resize(OperandList[i].MINumOperands);
Chris Lattner6cc654b2008-01-06 01:35:39 +0000120}
121
Chris Lattnerc240bb02010-11-01 04:03:32 +0000122
Chris Lattner6cc654b2008-01-06 01:35:39 +0000123/// getOperandNamed - Return the index of the operand with the specified
124/// non-empty name. If the instruction does not have an operand with the
125/// specified name, throw an exception.
126///
Chris Lattnerc240bb02010-11-01 04:03:32 +0000127unsigned CGIOperandList::getOperandNamed(StringRef Name) const {
Jim Grosbach01855072010-10-11 18:25:51 +0000128 unsigned OpIdx;
129 if (hasOperandNamed(Name, OpIdx)) return OpIdx;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000130 throw "'" + TheDef->getName() + "' does not have an operand named '$" +
Chris Lattnerc240bb02010-11-01 04:03:32 +0000131 Name.str() + "'!";
Chris Lattner6cc654b2008-01-06 01:35:39 +0000132}
133
Jim Grosbach01855072010-10-11 18:25:51 +0000134/// hasOperandNamed - Query whether the instruction has an operand of the
135/// given name. If so, return true and set OpIdx to the index of the
136/// operand. Otherwise, return false.
Chris Lattnerc240bb02010-11-01 04:03:32 +0000137bool CGIOperandList::hasOperandNamed(StringRef Name, unsigned &OpIdx) const {
Jim Grosbach01855072010-10-11 18:25:51 +0000138 assert(!Name.empty() && "Cannot search for operand with no name!");
139 for (unsigned i = 0, e = OperandList.size(); i != e; ++i)
140 if (OperandList[i].Name == Name) {
141 OpIdx = i;
142 return true;
143 }
144 return false;
145}
146
Jim Grosbachf0a4fad2009-12-15 19:28:13 +0000147std::pair<unsigned,unsigned>
Chris Lattnerc240bb02010-11-01 04:03:32 +0000148CGIOperandList::ParseOperandName(const std::string &Op, bool AllowWholeOp) {
Chris Lattner6cc654b2008-01-06 01:35:39 +0000149 if (Op.empty() || Op[0] != '$')
150 throw TheDef->getName() + ": Illegal operand name: '" + Op + "'";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000151
Chris Lattner6cc654b2008-01-06 01:35:39 +0000152 std::string OpName = Op.substr(1);
153 std::string SubOpName;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000154
Chris Lattner6cc654b2008-01-06 01:35:39 +0000155 // Check to see if this is $foo.bar.
156 std::string::size_type DotIdx = OpName.find_first_of(".");
157 if (DotIdx != std::string::npos) {
158 SubOpName = OpName.substr(DotIdx+1);
159 if (SubOpName.empty())
160 throw TheDef->getName() + ": illegal empty suboperand name in '" +Op +"'";
161 OpName = OpName.substr(0, DotIdx);
162 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000163
Chris Lattner6cc654b2008-01-06 01:35:39 +0000164 unsigned OpIdx = getOperandNamed(OpName);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000165
Chris Lattner6cc654b2008-01-06 01:35:39 +0000166 if (SubOpName.empty()) { // If no suboperand name was specified:
167 // If one was needed, throw.
168 if (OperandList[OpIdx].MINumOperands > 1 && !AllowWholeOp &&
169 SubOpName.empty())
170 throw TheDef->getName() + ": Illegal to refer to"
Chris Lattnerc240bb02010-11-01 04:03:32 +0000171 " whole operand part of complex operand '" + Op + "'";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000172
Chris Lattner6cc654b2008-01-06 01:35:39 +0000173 // Otherwise, return the operand.
174 return std::make_pair(OpIdx, 0U);
175 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000176
Chris Lattner6cc654b2008-01-06 01:35:39 +0000177 // Find the suboperand number involved.
178 DagInit *MIOpInfo = OperandList[OpIdx].MIOperandInfo;
179 if (MIOpInfo == 0)
180 throw TheDef->getName() + ": unknown suboperand name in '" + Op + "'";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000181
Chris Lattner6cc654b2008-01-06 01:35:39 +0000182 // Find the operand with the right name.
183 for (unsigned i = 0, e = MIOpInfo->getNumArgs(); i != e; ++i)
184 if (MIOpInfo->getArgName(i) == SubOpName)
185 return std::make_pair(OpIdx, i);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000186
Chris Lattner6cc654b2008-01-06 01:35:39 +0000187 // Otherwise, didn't find it!
188 throw TheDef->getName() + ": unknown suboperand name in '" + Op + "'";
189}
Chris Lattner9414ae52010-03-27 20:09:24 +0000190
Chris Lattnerc240bb02010-11-01 04:03:32 +0000191static void ParseConstraint(const std::string &CStr, CGIOperandList &Ops) {
192 // EARLY_CLOBBER: @early $reg
193 std::string::size_type wpos = CStr.find_first_of(" \t");
194 std::string::size_type start = CStr.find_first_not_of(" \t");
195 std::string Tok = CStr.substr(start, wpos - start);
196 if (Tok == "@earlyclobber") {
197 std::string Name = CStr.substr(wpos+1);
198 wpos = Name.find_first_not_of(" \t");
199 if (wpos == std::string::npos)
200 throw "Illegal format for @earlyclobber constraint: '" + CStr + "'";
201 Name = Name.substr(wpos);
202 std::pair<unsigned,unsigned> Op = Ops.ParseOperandName(Name, false);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000203
Chris Lattnerc240bb02010-11-01 04:03:32 +0000204 // Build the string for the operand
205 if (!Ops[Op.first].Constraints[Op.second].isNone())
206 throw "Operand '" + Name + "' cannot have multiple constraints!";
207 Ops[Op.first].Constraints[Op.second] =
208 CGIOperandList::ConstraintInfo::getEarlyClobber();
209 return;
210 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000211
Chris Lattnerc240bb02010-11-01 04:03:32 +0000212 // Only other constraint is "TIED_TO" for now.
213 std::string::size_type pos = CStr.find_first_of('=');
214 assert(pos != std::string::npos && "Unrecognized constraint");
215 start = CStr.find_first_not_of(" \t");
216 std::string Name = CStr.substr(start, pos - start);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000217
Chris Lattnerc240bb02010-11-01 04:03:32 +0000218 // TIED_TO: $src1 = $dst
219 wpos = Name.find_first_of(" \t");
220 if (wpos == std::string::npos)
221 throw "Illegal format for tied-to constraint: '" + CStr + "'";
222 std::string DestOpName = Name.substr(0, wpos);
223 std::pair<unsigned,unsigned> DestOp = Ops.ParseOperandName(DestOpName, false);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000224
Chris Lattnerc240bb02010-11-01 04:03:32 +0000225 Name = CStr.substr(pos+1);
226 wpos = Name.find_first_not_of(" \t");
227 if (wpos == std::string::npos)
228 throw "Illegal format for tied-to constraint: '" + CStr + "'";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000229
Chris Lattnerc240bb02010-11-01 04:03:32 +0000230 std::pair<unsigned,unsigned> SrcOp =
231 Ops.ParseOperandName(Name.substr(wpos), false);
232 if (SrcOp > DestOp)
233 throw "Illegal tied-to operand constraint '" + CStr + "'";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000234
235
Chris Lattnerc240bb02010-11-01 04:03:32 +0000236 unsigned FlatOpNo = Ops.getFlattenedOperandNumber(SrcOp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000237
Chris Lattnerc240bb02010-11-01 04:03:32 +0000238 if (!Ops[DestOp.first].Constraints[DestOp.second].isNone())
239 throw "Operand '" + DestOpName + "' cannot have multiple constraints!";
240 Ops[DestOp.first].Constraints[DestOp.second] =
241 CGIOperandList::ConstraintInfo::getTied(FlatOpNo);
242}
243
244static void ParseConstraints(const std::string &CStr, CGIOperandList &Ops) {
Chris Lattnerc240bb02010-11-01 04:03:32 +0000245 if (CStr.empty()) return;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000246
Chris Lattnerc240bb02010-11-01 04:03:32 +0000247 const std::string delims(",");
248 std::string::size_type bidx, eidx;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000249
Chris Lattnerc240bb02010-11-01 04:03:32 +0000250 bidx = CStr.find_first_not_of(delims);
251 while (bidx != std::string::npos) {
252 eidx = CStr.find_first_of(delims, bidx);
253 if (eidx == std::string::npos)
254 eidx = CStr.length();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000255
Chris Lattnerc240bb02010-11-01 04:03:32 +0000256 ParseConstraint(CStr.substr(bidx, eidx - bidx), Ops);
257 bidx = CStr.find_first_not_of(delims, eidx);
258 }
259}
260
261void CGIOperandList::ProcessDisableEncoding(std::string DisableEncoding) {
262 while (1) {
263 std::string OpName;
264 tie(OpName, DisableEncoding) = getToken(DisableEncoding, " ,\t");
265 if (OpName.empty()) break;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000266
Chris Lattnerc240bb02010-11-01 04:03:32 +0000267 // Figure out which operand this is.
268 std::pair<unsigned,unsigned> Op = ParseOperandName(OpName, false);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000269
Chris Lattnerc240bb02010-11-01 04:03:32 +0000270 // Mark the operand as not-to-be encoded.
271 if (Op.second >= OperandList[Op.first].DoNotEncode.size())
272 OperandList[Op.first].DoNotEncode.resize(Op.second+1);
273 OperandList[Op.first].DoNotEncode[Op.second] = true;
274 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000275
Chris Lattnerc240bb02010-11-01 04:03:32 +0000276}
277
278//===----------------------------------------------------------------------===//
279// CodeGenInstruction Implementation
280//===----------------------------------------------------------------------===//
281
282CodeGenInstruction::CodeGenInstruction(Record *R) : TheDef(R), Operands(R) {
283 Namespace = R->getValueAsString("Namespace");
284 AsmString = R->getValueAsString("AsmString");
285
286 isReturn = R->getValueAsBit("isReturn");
287 isBranch = R->getValueAsBit("isBranch");
288 isIndirectBranch = R->getValueAsBit("isIndirectBranch");
289 isCompare = R->getValueAsBit("isCompare");
Evan Chengc4af4632010-11-17 20:13:28 +0000290 isMoveImm = R->getValueAsBit("isMoveImm");
Chris Lattnerc240bb02010-11-01 04:03:32 +0000291 isBarrier = R->getValueAsBit("isBarrier");
292 isCall = R->getValueAsBit("isCall");
293 canFoldAsLoad = R->getValueAsBit("canFoldAsLoad");
294 mayLoad = R->getValueAsBit("mayLoad");
295 mayStore = R->getValueAsBit("mayStore");
296 isPredicable = Operands.isPredicable || R->getValueAsBit("isPredicable");
297 isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress");
298 isCommutable = R->getValueAsBit("isCommutable");
299 isTerminator = R->getValueAsBit("isTerminator");
300 isReMaterializable = R->getValueAsBit("isReMaterializable");
301 hasDelaySlot = R->getValueAsBit("hasDelaySlot");
302 usesCustomInserter = R->getValueAsBit("usesCustomInserter");
303 hasCtrlDep = R->getValueAsBit("hasCtrlDep");
304 isNotDuplicable = R->getValueAsBit("isNotDuplicable");
305 hasSideEffects = R->getValueAsBit("hasSideEffects");
306 neverHasSideEffects = R->getValueAsBit("neverHasSideEffects");
307 isAsCheapAsAMove = R->getValueAsBit("isAsCheapAsAMove");
308 hasExtraSrcRegAllocReq = R->getValueAsBit("hasExtraSrcRegAllocReq");
309 hasExtraDefRegAllocReq = R->getValueAsBit("hasExtraDefRegAllocReq");
310 ImplicitDefs = R->getValueAsListOfDefs("Defs");
311 ImplicitUses = R->getValueAsListOfDefs("Uses");
312
313 if (neverHasSideEffects + hasSideEffects > 1)
314 throw R->getName() + ": multiple conflicting side-effect flags set!";
315
316 // Parse Constraints.
317 ParseConstraints(R->getValueAsString("Constraints"), Operands);
318
319 // Parse the DisableEncoding field.
320 Operands.ProcessDisableEncoding(R->getValueAsString("DisableEncoding"));
321}
Chris Lattner9414ae52010-03-27 20:09:24 +0000322
323/// HasOneImplicitDefWithKnownVT - If the instruction has at least one
324/// implicit def and it has a known VT, return the VT, otherwise return
325/// MVT::Other.
326MVT::SimpleValueType CodeGenInstruction::
327HasOneImplicitDefWithKnownVT(const CodeGenTarget &TargetInfo) const {
328 if (ImplicitDefs.empty()) return MVT::Other;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000329
Chris Lattner9414ae52010-03-27 20:09:24 +0000330 // Check to see if the first implicit def has a resolvable type.
331 Record *FirstImplicitDef = ImplicitDefs[0];
332 assert(FirstImplicitDef->isSubClassOf("Register"));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000333 const std::vector<MVT::SimpleValueType> &RegVTs =
Chris Lattner9414ae52010-03-27 20:09:24 +0000334 TargetInfo.getRegisterVTs(FirstImplicitDef);
335 if (RegVTs.size() == 1)
336 return RegVTs[0];
337 return MVT::Other;
338}
339
Chris Lattner4d43d0f2010-11-01 01:07:14 +0000340
341/// FlattenAsmStringVariants - Flatten the specified AsmString to only
342/// include text from the specified variant, returning the new string.
343std::string CodeGenInstruction::
344FlattenAsmStringVariants(StringRef Cur, unsigned Variant) {
345 std::string Res = "";
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000346
Chris Lattner4d43d0f2010-11-01 01:07:14 +0000347 for (;;) {
348 // Find the start of the next variant string.
349 size_t VariantsStart = 0;
350 for (size_t e = Cur.size(); VariantsStart != e; ++VariantsStart)
351 if (Cur[VariantsStart] == '{' &&
352 (VariantsStart == 0 || (Cur[VariantsStart-1] != '$' &&
353 Cur[VariantsStart-1] != '\\')))
354 break;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000355
Chris Lattner4d43d0f2010-11-01 01:07:14 +0000356 // Add the prefix to the result.
357 Res += Cur.slice(0, VariantsStart);
358 if (VariantsStart == Cur.size())
359 break;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000360
Chris Lattner4d43d0f2010-11-01 01:07:14 +0000361 ++VariantsStart; // Skip the '{'.
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000362
Chris Lattner4d43d0f2010-11-01 01:07:14 +0000363 // Scan to the end of the variants string.
364 size_t VariantsEnd = VariantsStart;
365 unsigned NestedBraces = 1;
366 for (size_t e = Cur.size(); VariantsEnd != e; ++VariantsEnd) {
367 if (Cur[VariantsEnd] == '}' && Cur[VariantsEnd-1] != '\\') {
368 if (--NestedBraces == 0)
369 break;
370 } else if (Cur[VariantsEnd] == '{')
371 ++NestedBraces;
372 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000373
Chris Lattner4d43d0f2010-11-01 01:07:14 +0000374 // Select the Nth variant (or empty).
375 StringRef Selection = Cur.slice(VariantsStart, VariantsEnd);
376 for (unsigned i = 0; i != Variant; ++i)
377 Selection = Selection.split('|').second;
378 Res += Selection.split('|').first;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000379
Chris Lattner4d43d0f2010-11-01 01:07:14 +0000380 assert(VariantsEnd != Cur.size() &&
381 "Unterminated variants in assembly string!");
382 Cur = Cur.substr(VariantsEnd + 1);
383 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000384
Chris Lattner4d43d0f2010-11-01 01:07:14 +0000385 return Res;
386}
387
Chris Lattnerc76e80d2010-11-01 04:05:41 +0000388
389//===----------------------------------------------------------------------===//
390/// CodeGenInstAlias Implementation
391//===----------------------------------------------------------------------===//
392
Bob Wilsona49c7df2011-01-26 19:44:55 +0000393/// tryAliasOpMatch - This is a helper function for the CodeGenInstAlias
394/// constructor. It checks if an argument in an InstAlias pattern matches
395/// the corresponding operand of the instruction. It returns true on a
396/// successful match, with ResOp set to the result operand to be used.
397bool CodeGenInstAlias::tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo,
398 Record *InstOpRec, bool hasSubOps,
399 SMLoc Loc, CodeGenTarget &T,
400 ResultOperand &ResOp) {
401 Init *Arg = Result->getArg(AliasOpNo);
402 DefInit *ADI = dynamic_cast<DefInit*>(Arg);
403
404 if (ADI && ADI->getDef() == InstOpRec) {
405 // If the operand is a record, it must have a name, and the record type
406 // must match up with the instruction's argument type.
407 if (Result->getArgName(AliasOpNo).empty())
408 throw TGError(Loc, "result argument #" + utostr(AliasOpNo) +
409 " must have a name!");
410 ResOp = ResultOperand(Result->getArgName(AliasOpNo), ADI->getDef());
411 return true;
412 }
413
414 // Handle explicit registers.
415 if (ADI && ADI->getDef()->isSubClassOf("Register")) {
416 if (!InstOpRec->isSubClassOf("RegisterClass"))
417 return false;
418
419 if (!T.getRegisterClass(InstOpRec).containsRegister(ADI->getDef()))
420 throw TGError(Loc, "fixed register " +ADI->getDef()->getName()
421 + " is not a member of the " + InstOpRec->getName() +
422 " register class!");
423
424 if (!Result->getArgName(AliasOpNo).empty())
425 throw TGError(Loc, "result fixed register argument must "
426 "not have a name!");
427
428 ResOp = ResultOperand(ADI->getDef());
429 return true;
430 }
431
432 // Handle "zero_reg" for optional def operands.
433 if (ADI && ADI->getDef()->getName() == "zero_reg") {
434
435 // Check if this is an optional def.
436 if (!InstOpRec->isSubClassOf("OptionalDefOperand"))
437 throw TGError(Loc, "reg0 used for result that is not an "
438 "OptionalDefOperand!");
439
440 ResOp = ResultOperand(static_cast<Record*>(0));
441 return true;
442 }
443
444 if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
445 if (hasSubOps || !InstOpRec->isSubClassOf("Operand"))
446 return false;
447 // Integer arguments can't have names.
448 if (!Result->getArgName(AliasOpNo).empty())
449 throw TGError(Loc, "result argument #" + utostr(AliasOpNo) +
450 " must not have a name!");
451 ResOp = ResultOperand(II->getValue());
452 return true;
453 }
454
455 return false;
456}
457
Chris Lattner662e5a32010-11-06 07:14:44 +0000458CodeGenInstAlias::CodeGenInstAlias(Record *R, CodeGenTarget &T) : TheDef(R) {
Chris Lattnerc76e80d2010-11-01 04:05:41 +0000459 AsmString = R->getValueAsString("AsmString");
Chris Lattnerb501d4f2010-11-01 05:34:34 +0000460 Result = R->getValueAsDag("ResultInst");
Chris Lattner225549f2010-11-06 06:39:47 +0000461
462 // Verify that the root of the result is an instruction.
463 DefInit *DI = dynamic_cast<DefInit*>(Result->getOperator());
464 if (DI == 0 || !DI->getDef()->isSubClassOf("Instruction"))
465 throw TGError(R->getLoc(), "result of inst alias should be an instruction");
466
467 ResultInst = &T.getInstruction(DI->getDef());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000468
Chris Lattner3f2c8e42010-11-06 07:06:09 +0000469 // NameClass - If argument names are repeated, we need to verify they have
470 // the same class.
471 StringMap<Record*> NameClass;
Bob Wilson55931ab2011-01-20 18:38:10 +0000472 for (unsigned i = 0, e = Result->getNumArgs(); i != e; ++i) {
473 DefInit *ADI = dynamic_cast<DefInit*>(Result->getArg(i));
474 if (!ADI || Result->getArgName(i).empty())
475 continue;
476 // Verify we don't have something like: (someinst GR16:$foo, GR32:$foo)
477 // $foo can exist multiple times in the result list, but it must have the
478 // same type.
479 Record *&Entry = NameClass[Result->getArgName(i)];
480 if (Entry && Entry != ADI->getDef())
481 throw TGError(R->getLoc(), "result value $" + Result->getArgName(i) +
482 " is both " + Entry->getName() + " and " +
483 ADI->getDef()->getName() + "!");
484 Entry = ADI->getDef();
485 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000486
Chris Lattnerd0f225c2010-11-06 06:54:38 +0000487 // Decode and validate the arguments of the result.
Chris Lattner41409852010-11-06 07:31:43 +0000488 unsigned AliasOpNo = 0;
489 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
Bob Wilsona49c7df2011-01-26 19:44:55 +0000490
Chris Lattner41409852010-11-06 07:31:43 +0000491 // Tied registers don't have an entry in the result dag.
492 if (ResultInst->Operands[i].getTiedRegister() != -1)
493 continue;
494
495 if (AliasOpNo >= Result->getNumArgs())
Bob Wilsona49c7df2011-01-26 19:44:55 +0000496 throw TGError(R->getLoc(), "not enough arguments for instruction!");
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000497
Bob Wilsona49c7df2011-01-26 19:44:55 +0000498 Record *InstOpRec = ResultInst->Operands[i].Rec;
499 unsigned NumSubOps = ResultInst->Operands[i].MINumOperands;
500 ResultOperand ResOp(static_cast<int64_t>(0));
501 if (tryAliasOpMatch(Result, AliasOpNo, InstOpRec, (NumSubOps > 1),
502 R->getLoc(), T, ResOp)) {
503 ResultOperands.push_back(ResOp);
504 ResultInstOperandIndex.push_back(std::make_pair(i, -1));
Chris Lattner41409852010-11-06 07:31:43 +0000505 ++AliasOpNo;
Chris Lattnerd0f225c2010-11-06 06:54:38 +0000506 continue;
507 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000508
Bob Wilsona49c7df2011-01-26 19:44:55 +0000509 // If the argument did not match the instruction operand, and the operand
510 // is composed of multiple suboperands, try matching the suboperands.
511 if (NumSubOps > 1) {
512 DagInit *MIOI = ResultInst->Operands[i].MIOperandInfo;
513 for (unsigned SubOp = 0; SubOp != NumSubOps; ++SubOp) {
514 if (AliasOpNo >= Result->getNumArgs())
515 throw TGError(R->getLoc(), "not enough arguments for instruction!");
516 Record *SubRec = dynamic_cast<DefInit*>(MIOI->getArg(SubOp))->getDef();
517 if (tryAliasOpMatch(Result, AliasOpNo, SubRec, false,
518 R->getLoc(), T, ResOp)) {
519 ResultOperands.push_back(ResOp);
520 ResultInstOperandIndex.push_back(std::make_pair(i, SubOp));
521 ++AliasOpNo;
522 } else {
523 throw TGError(R->getLoc(), "result argument #" + utostr(AliasOpNo) +
524 " does not match instruction operand class " +
525 (SubOp == 0 ? InstOpRec->getName() :SubRec->getName()));
526 }
527 }
Chris Lattner98c870f2010-11-06 19:25:43 +0000528 continue;
529 }
Bob Wilsona49c7df2011-01-26 19:44:55 +0000530 throw TGError(R->getLoc(), "result argument #" + utostr(AliasOpNo) +
531 " does not match instruction operand class " +
532 InstOpRec->getName());
Chris Lattnerd0f225c2010-11-06 06:54:38 +0000533 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000534
Chris Lattner41409852010-11-06 07:31:43 +0000535 if (AliasOpNo != Result->getNumArgs())
Bob Wilsona49c7df2011-01-26 19:44:55 +0000536 throw TGError(R->getLoc(), "too many operands for instruction!");
Chris Lattnerc76e80d2010-11-01 04:05:41 +0000537}