blob: 5f05137459899aa22a47d50dfa3358896ecdacfb [file] [log] [blame]
Chris Lattnereef2fe72006-01-24 04:13:11 +00001//===-- InlineAsm.cpp - Implement the InlineAsm class ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the InlineAsm class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/InlineAsm.h"
15#include "llvm/DerivedTypes.h"
Jeff Cohenb24b66f2006-02-01 04:37:04 +000016#include <algorithm>
Chris Lattner8547e3a2006-01-26 00:48:33 +000017#include <cctype>
Chris Lattnereef2fe72006-01-24 04:13:11 +000018using namespace llvm;
19
Chris Lattner5bd30fa2006-06-07 22:47:44 +000020// Implement the first virtual method in this class in this file so the
21// InlineAsm vtable is emitted here.
22InlineAsm::~InlineAsm() {
23}
24
25
Chris Lattnera2d810d2006-01-25 22:26:05 +000026// NOTE: when memoizing the function type, we have to be careful to handle the
27// case when the type gets refined.
28
29InlineAsm *InlineAsm::get(const FunctionType *Ty, const std::string &AsmString,
30 const std::string &Constraints, bool hasSideEffects) {
31 // FIXME: memoize!
32 return new InlineAsm(Ty, AsmString, Constraints, hasSideEffects);
33}
34
Chris Lattnereef2fe72006-01-24 04:13:11 +000035InlineAsm::InlineAsm(const FunctionType *Ty, const std::string &asmString,
Chris Lattner8bbcda22006-01-25 18:57:27 +000036 const std::string &constraints, bool hasSideEffects)
37 : Value(PointerType::get(Ty), Value::InlineAsmVal), AsmString(asmString),
38 Constraints(constraints), HasSideEffects(hasSideEffects) {
Chris Lattnereef2fe72006-01-24 04:13:11 +000039
Chris Lattnera2d810d2006-01-25 22:26:05 +000040 // Do various checks on the constraint string and type.
41 assert(Verify(Ty, constraints) && "Function type not legal for constraints!");
Chris Lattnereef2fe72006-01-24 04:13:11 +000042}
43
44const FunctionType *InlineAsm::getFunctionType() const {
45 return cast<FunctionType>(getType()->getElementType());
46}
Chris Lattnera2d810d2006-01-25 22:26:05 +000047
Chris Lattner7ed31012006-02-01 01:29:47 +000048/// Parse - Analyze the specified string (e.g. "==&{eax}") and fill in the
49/// fields in this structure. If the constraint string is not understood,
50/// return true, otherwise return false.
Chris Lattner2f34a9e2006-02-02 00:23:53 +000051bool InlineAsm::ConstraintInfo::Parse(const std::string &Str,
52 std::vector<InlineAsm::ConstraintInfo> &ConstraintsSoFar) {
Chris Lattner7ed31012006-02-01 01:29:47 +000053 std::string::const_iterator I = Str.begin(), E = Str.end();
54
55 // Initialize
56 Type = isInput;
57 isEarlyClobber = false;
Chris Lattner2f34a9e2006-02-02 00:23:53 +000058 isIndirectOutput = false;
59 hasMatchingInput = false;
Chris Lattnerde5a9f42006-02-23 23:36:53 +000060 isCommutative = false;
Chris Lattner7ed31012006-02-01 01:29:47 +000061
62 // Parse the prefix.
63 if (*I == '~') {
64 Type = isClobber;
65 ++I;
66 } else if (*I == '=') {
67 ++I;
68 Type = isOutput;
69 if (I != E && *I == '=') {
70 isIndirectOutput = true;
71 ++I;
72 }
73 }
74
75 if (I == E) return true; // Just a prefix, like "==" or "~".
76
77 // Parse the modifiers.
78 bool DoneWithModifiers = false;
79 while (!DoneWithModifiers) {
80 switch (*I) {
81 default:
82 DoneWithModifiers = true;
83 break;
Chris Lattnerde5a9f42006-02-23 23:36:53 +000084 case '&': // Early clobber.
Chris Lattner7ed31012006-02-01 01:29:47 +000085 if (Type != isOutput || // Cannot early clobber anything but output.
86 isEarlyClobber) // Reject &&&&&&
87 return true;
88 isEarlyClobber = true;
89 break;
Chris Lattnerde5a9f42006-02-23 23:36:53 +000090 case '%': // Commutative.
91 if (Type == isClobber || // Cannot commute clobbers.
92 isCommutative) // Reject %%%%%
93 return true;
94 isCommutative = true;
95 break;
96 case '#': // Comment.
97 case '*': // Register preferencing.
98 return true; // Not supported.
Chris Lattner7ed31012006-02-01 01:29:47 +000099 }
100
101 if (!DoneWithModifiers) {
102 ++I;
103 if (I == E) return true; // Just prefixes and modifiers!
104 }
105 }
106
107 // Parse the various constraints.
108 while (I != E) {
109 if (*I == '{') { // Physical register reference.
110 // Find the end of the register name.
111 std::string::const_iterator ConstraintEnd = std::find(I+1, E, '}');
112 if (ConstraintEnd == E) return true; // "{foo"
113 Codes.push_back(std::string(I, ConstraintEnd+1));
114 I = ConstraintEnd+1;
Chris Lattner2f34a9e2006-02-02 00:23:53 +0000115 } else if (isdigit(*I)) { // Matching Constraint
Chris Lattner7ed31012006-02-01 01:29:47 +0000116 // Maximal munch numbers.
117 std::string::const_iterator NumStart = I;
118 while (I != E && isdigit(*I))
119 ++I;
120 Codes.push_back(std::string(NumStart, I));
Chris Lattner2f34a9e2006-02-02 00:23:53 +0000121 unsigned N = atoi(Codes.back().c_str());
122 // Check that this is a valid matching constraint!
123 if (N >= ConstraintsSoFar.size() || ConstraintsSoFar[N].Type != isOutput||
124 Type != isInput)
125 return true; // Invalid constraint number.
126
127 // Note that operand #n has a matching input.
128 ConstraintsSoFar[N].hasMatchingInput = true;
Chris Lattner7ed31012006-02-01 01:29:47 +0000129 } else {
130 // Single letter constraint.
131 Codes.push_back(std::string(I, I+1));
132 ++I;
133 }
134 }
135
136 return false;
137}
138
139std::vector<InlineAsm::ConstraintInfo>
Chris Lattnerc981b8e2006-01-26 02:21:59 +0000140InlineAsm::ParseConstraints(const std::string &Constraints) {
Chris Lattner7ed31012006-02-01 01:29:47 +0000141 std::vector<ConstraintInfo> Result;
Chris Lattner8547e3a2006-01-26 00:48:33 +0000142
143 // Scan the constraints string.
144 for (std::string::const_iterator I = Constraints.begin(),
Chris Lattnerc981b8e2006-01-26 02:21:59 +0000145 E = Constraints.end(); I != E; ) {
Chris Lattner7ed31012006-02-01 01:29:47 +0000146 ConstraintInfo Info;
147
148 // Find the end of this constraint.
149 std::string::const_iterator ConstraintEnd = std::find(I, E, ',');
150
151 if (ConstraintEnd == I || // Empty constraint like ",,"
Chris Lattner2f34a9e2006-02-02 00:23:53 +0000152 Info.Parse(std::string(I, ConstraintEnd), Result)) {
153 Result.clear(); // Erroneous constraint?
Chris Lattnerc981b8e2006-01-26 02:21:59 +0000154 break;
155 }
Chris Lattner7ed31012006-02-01 01:29:47 +0000156
157 Result.push_back(Info);
Chris Lattnerc981b8e2006-01-26 02:21:59 +0000158
Chris Lattner7ed31012006-02-01 01:29:47 +0000159 // ConstraintEnd may be either the next comma or the end of the string. In
160 // the former case, we skip the comma.
161 I = ConstraintEnd;
Chris Lattnerc981b8e2006-01-26 02:21:59 +0000162 if (I != E) {
Chris Lattnerc981b8e2006-01-26 02:21:59 +0000163 ++I;
164 if (I == E) { Result.clear(); break; } // don't allow "xyz,"
165 }
166 }
167
168 return Result;
169}
170
171
172/// Verify - Verify that the specified constraint string is reasonable for the
173/// specified function type, and otherwise validate the constraint string.
174bool InlineAsm::Verify(const FunctionType *Ty, const std::string &ConstStr) {
175 if (Ty->isVarArg()) return false;
176
Chris Lattner7ed31012006-02-01 01:29:47 +0000177 std::vector<ConstraintInfo> Constraints = ParseConstraints(ConstStr);
Chris Lattnerc981b8e2006-01-26 02:21:59 +0000178
179 // Error parsing constraints.
180 if (Constraints.empty() && !ConstStr.empty()) return false;
181
182 unsigned NumOutputs = 0, NumInputs = 0, NumClobbers = 0;
183
184 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
Chris Lattner7ed31012006-02-01 01:29:47 +0000185 switch (Constraints[i].Type) {
186 case InlineAsm::isOutput:
187 if (!Constraints[i].isIndirectOutput) {
188 if (NumInputs || NumClobbers) return false; // outputs come first.
189 ++NumOutputs;
190 break;
191 }
192 // FALLTHROUGH for IndirectOutputs.
193 case InlineAsm::isInput:
Chris Lattner8547e3a2006-01-26 00:48:33 +0000194 if (NumClobbers) return false; // inputs before clobbers.
195 ++NumInputs;
196 break;
Chris Lattner7ed31012006-02-01 01:29:47 +0000197 case InlineAsm::isClobber:
Chris Lattner8547e3a2006-01-26 00:48:33 +0000198 ++NumClobbers;
199 break;
200 }
Chris Lattner8547e3a2006-01-26 00:48:33 +0000201 }
Chris Lattnerc981b8e2006-01-26 02:21:59 +0000202
203 if (NumOutputs > 1) return false; // Only one result allowed so far.
Chris Lattner8547e3a2006-01-26 00:48:33 +0000204
205 if ((Ty->getReturnType() != Type::VoidTy) != NumOutputs)
206 return false; // NumOutputs = 1 iff has a result type.
207
208 if (Ty->getNumParams() != NumInputs) return false;
Chris Lattnera2d810d2006-01-25 22:26:05 +0000209 return true;
210}
Reid Spencer5113dc52006-06-07 23:03:13 +0000211
212DEFINING_FILE_FOR(InlineAsm)