blob: ded776c3989c7ee852eb4a5ce9dc5889661c72fa [file] [log] [blame]
Chris Lattnerdf986172009-01-02 07:01:27 +00001//===-- LLParser.h - Parser Class -------------------------------*- 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// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_ASMPARSER_LLPARSER_H
15#define LLVM_ASMPARSER_LLPARSER_H
16
17#include "LLLexer.h"
Chandler Carrutha1514e22012-12-04 07:12:27 +000018#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/StringMap.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000020#include "llvm/IR/Attributes.h"
21#include "llvm/IR/Instructions.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/Operator.h"
24#include "llvm/IR/Type.h"
Chris Lattner56608462009-12-28 08:20:46 +000025#include "llvm/Support/ValueHandle.h"
Chris Lattnere80250e2009-12-29 21:43:58 +000026#include <map>
Chris Lattnerdf986172009-01-02 07:01:27 +000027
28namespace llvm {
29 class Module;
30 class OpaqueType;
31 class Function;
32 class Value;
33 class BasicBlock;
34 class Instruction;
35 class Constant;
36 class GlobalValue;
Nick Lewycky21cc4462009-04-04 07:22:01 +000037 class MDString;
38 class MDNode;
Chris Lattner1afcace2011-07-09 17:41:24 +000039 class StructType;
Misha Brukman9ea40342009-01-02 22:46:48 +000040
Chris Lattner09d9ef42009-10-28 03:39:23 +000041 /// ValID - Represents a reference of a definition of some sort with no type.
42 /// There are several cases where we have to parse the value but where the
43 /// type can depend on later context. This may either be a numeric reference
44 /// or a symbolic (%var) reference. This is just a discriminated union.
Benjamin Kramer55c06ae2013-09-11 18:05:11 +000045 struct ValID {
Chris Lattner09d9ef42009-10-28 03:39:23 +000046 enum {
47 t_LocalID, t_GlobalID, // ID in UIntVal.
48 t_LocalName, t_GlobalName, // Name in StrVal.
49 t_APSInt, t_APFloat, // Value in APSIntVal/APFloatVal.
50 t_Null, t_Undef, t_Zero, // No value.
51 t_EmptyArray, // No value: []
52 t_Constant, // Value in ConstantVal.
53 t_InlineAsm, // Value in StrVal/StrVal2/UIntVal.
Chris Lattner287881d2009-12-30 02:11:14 +000054 t_MDNode, // Value in MDNodeVal.
Chris Lattner1afcace2011-07-09 17:41:24 +000055 t_MDString, // Value in MDStringVal.
56 t_ConstantStruct, // Value in ConstantStructElts.
57 t_PackedConstantStruct // Value in ConstantStructElts.
Chris Lattner09d9ef42009-10-28 03:39:23 +000058 } Kind;
Michael Ilseman407a6162012-11-15 22:34:00 +000059
Chris Lattner09d9ef42009-10-28 03:39:23 +000060 LLLexer::LocTy Loc;
61 unsigned UIntVal;
62 std::string StrVal, StrVal2;
63 APSInt APSIntVal;
64 APFloat APFloatVal;
65 Constant *ConstantVal;
Chris Lattner287881d2009-12-30 02:11:14 +000066 MDNode *MDNodeVal;
67 MDString *MDStringVal;
Chris Lattner1afcace2011-07-09 17:41:24 +000068 Constant **ConstantStructElts;
Michael Ilseman407a6162012-11-15 22:34:00 +000069
Chris Lattner1afcace2011-07-09 17:41:24 +000070 ValID() : Kind(t_LocalID), APFloatVal(0.0) {}
71 ~ValID() {
72 if (Kind == t_ConstantStruct || Kind == t_PackedConstantStruct)
73 delete [] ConstantStructElts;
74 }
Michael Ilseman407a6162012-11-15 22:34:00 +000075
Chris Lattner09d9ef42009-10-28 03:39:23 +000076 bool operator<(const ValID &RHS) const {
77 if (Kind == t_LocalID || Kind == t_GlobalID)
78 return UIntVal < RHS.UIntVal;
Chris Lattner1afcace2011-07-09 17:41:24 +000079 assert((Kind == t_LocalName || Kind == t_GlobalName ||
Michael Ilseman407a6162012-11-15 22:34:00 +000080 Kind == t_ConstantStruct || Kind == t_PackedConstantStruct) &&
Chris Lattner09d9ef42009-10-28 03:39:23 +000081 "Ordering not defined for this ValID kind yet");
82 return StrVal < RHS.StrVal;
83 }
84 };
Michael Ilseman407a6162012-11-15 22:34:00 +000085
Benjamin Kramer55c06ae2013-09-11 18:05:11 +000086 class LLParser {
Chris Lattnerdf986172009-01-02 07:01:27 +000087 public:
88 typedef LLLexer::LocTy LocTy;
89 private:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +000090 LLVMContext &Context;
Chris Lattnerdf986172009-01-02 07:01:27 +000091 LLLexer Lex;
92 Module *M;
Michael Ilseman407a6162012-11-15 22:34:00 +000093
Chris Lattner449c3102010-04-01 05:14:45 +000094 // Instruction metadata resolution. Each instruction can have a list of
95 // MDRef info associated with them.
Dan Gohman41d6ab42010-08-24 14:31:06 +000096 //
97 // The simpler approach of just creating temporary MDNodes and then calling
98 // RAUW on them when the definition is processed doesn't work because some
99 // instruction metadata kinds, such as dbg, get stored in the IR in an
100 // "optimized" format which doesn't participate in the normal value use
101 // lists. This means that RAUW doesn't work, even on temporary MDNodes
102 // which otherwise support RAUW. Instead, we defer resolving MDNode
103 // references until the definitions have been processed.
Chris Lattner449c3102010-04-01 05:14:45 +0000104 struct MDRef {
105 SMLoc Loc;
106 unsigned MDKind, MDSlot;
107 };
108 DenseMap<Instruction*, std::vector<MDRef> > ForwardRefInstMetadata;
Misha Brukman9ea40342009-01-02 22:46:48 +0000109
Manman Ren804f0342013-09-28 00:22:27 +0000110 SmallVector<Instruction*, 64> InstsWithTBAATag;
111
Chris Lattner1afcace2011-07-09 17:41:24 +0000112 // Type resolution handling data structures. The location is set when we
113 // have processed a use of the type but not a definition yet.
114 StringMap<std::pair<Type*, LocTy> > NamedTypes;
115 std::vector<std::pair<Type*, LocTy> > NumberedTypes;
Michael Ilseman407a6162012-11-15 22:34:00 +0000116
Chris Lattner0834e6a2009-12-30 04:51:58 +0000117 std::vector<TrackingVH<MDNode> > NumberedMetadata;
Chris Lattnere80250e2009-12-29 21:43:58 +0000118 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> > ForwardRefMDNodes;
Chris Lattnerdf986172009-01-02 07:01:27 +0000119
120 // Global Value reference information.
121 std::map<std::string, std::pair<GlobalValue*, LocTy> > ForwardRefVals;
122 std::map<unsigned, std::pair<GlobalValue*, LocTy> > ForwardRefValIDs;
123 std::vector<GlobalValue*> NumberedVals;
Michael Ilseman407a6162012-11-15 22:34:00 +0000124
Chris Lattner09d9ef42009-10-28 03:39:23 +0000125 // References to blockaddress. The key is the function ValID, the value is
126 // a list of references to blocks in that function.
127 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >
128 ForwardRefBlockAddresses;
Michael Ilseman407a6162012-11-15 22:34:00 +0000129
Bill Wendling95ce4c22013-02-06 06:52:58 +0000130 // Attribute builder reference information.
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000131 std::map<Value*, std::vector<unsigned> > ForwardRefAttrGroups;
132 std::map<unsigned, AttrBuilder> NumberedAttrBuilders;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000133
Chris Lattnerdf986172009-01-02 07:01:27 +0000134 public:
Michael Ilseman407a6162012-11-15 22:34:00 +0000135 LLParser(MemoryBuffer *F, SourceMgr &SM, SMDiagnostic &Err, Module *m) :
Victor Hernandez13ad5aa2009-10-17 00:00:19 +0000136 Context(m->getContext()), Lex(F, SM, Err, m->getContext()),
Chris Lattnerf3a789d2011-06-17 03:16:47 +0000137 M(m) {}
Chris Lattnerad7d1e22009-01-04 20:44:11 +0000138 bool Run();
Misha Brukman9ea40342009-01-02 22:46:48 +0000139
Chris Lattner1afcace2011-07-09 17:41:24 +0000140 LLVMContext &getContext() { return Context; }
Owen Andersonb43eae72009-07-02 17:04:01 +0000141
Chris Lattnerdf986172009-01-02 07:01:27 +0000142 private:
143
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000144 bool Error(LocTy L, const Twine &Msg) const {
Chris Lattnerdf986172009-01-02 07:01:27 +0000145 return Lex.Error(L, Msg);
146 }
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000147 bool TokError(const Twine &Msg) const {
Chris Lattnerdf986172009-01-02 07:01:27 +0000148 return Error(Lex.getLoc(), Msg);
149 }
Misha Brukman9ea40342009-01-02 22:46:48 +0000150
Chris Lattnerdf986172009-01-02 07:01:27 +0000151 /// GetGlobalVal - Get a value with the specified name or ID, creating a
152 /// forward reference record if needed. This can return null if the value
153 /// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000154 GlobalValue *GetGlobalVal(const std::string &N, Type *Ty, LocTy Loc);
155 GlobalValue *GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000156
Chris Lattnerdf986172009-01-02 07:01:27 +0000157 // Helper Routines.
158 bool ParseToken(lltok::Kind T, const char *ErrMsg);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000159 bool EatIfPresent(lltok::Kind T) {
160 if (Lex.getKind() != T) return false;
161 Lex.Lex();
162 return true;
163 }
Michael Ilseman15c13d32012-11-27 00:42:44 +0000164
165 FastMathFlags EatFastMathFlagsIfPresent() {
166 FastMathFlags FMF;
167 while (true)
168 switch (Lex.getKind()) {
Michael Ilseman1638b832012-12-09 21:12:04 +0000169 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue;
170 case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
171 case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
172 case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
173 case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
Michael Ilseman15c13d32012-11-27 00:42:44 +0000174 default: return FMF;
175 }
176 return FMF;
177 }
178
Rafael Espindolad72479c2011-01-13 01:30:30 +0000179 bool ParseOptionalToken(lltok::Kind T, bool &Present, LocTy *Loc = 0) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000180 if (Lex.getKind() != T) {
181 Present = false;
182 } else {
Rafael Espindolad72479c2011-01-13 01:30:30 +0000183 if (Loc)
184 *Loc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000185 Lex.Lex();
186 Present = true;
187 }
188 return false;
189 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000190 bool ParseStringConstant(std::string &Result);
191 bool ParseUInt32(unsigned &Val);
192 bool ParseUInt32(unsigned &Val, LocTy &Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000193 Loc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000194 return ParseUInt32(Val);
Chris Lattnerdf986172009-01-02 07:01:27 +0000195 }
Hans Wennborgce718ff2012-06-23 11:37:03 +0000196
197 bool ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM);
198 bool ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM);
Chris Lattnerdf986172009-01-02 07:01:27 +0000199 bool ParseOptionalAddrSpace(unsigned &AddrSpace);
Bill Wendlinge01b81b2012-12-04 23:40:58 +0000200 bool ParseOptionalParamAttrs(AttrBuilder &B);
201 bool ParseOptionalReturnAttrs(AttrBuilder &B);
Chris Lattnerdf986172009-01-02 07:01:27 +0000202 bool ParseOptionalLinkage(unsigned &Linkage, bool &HasLinkage);
203 bool ParseOptionalLinkage(unsigned &Linkage) {
204 bool HasLinkage; return ParseOptionalLinkage(Linkage, HasLinkage);
205 }
206 bool ParseOptionalVisibility(unsigned &Visibility);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000207 bool ParseOptionalCallingConv(CallingConv::ID &CC);
Chris Lattnerdf986172009-01-02 07:01:27 +0000208 bool ParseOptionalAlignment(unsigned &Alignment);
Eli Friedman47f35132011-07-25 23:16:38 +0000209 bool ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
210 AtomicOrdering &Ordering);
Charles Davis1e063d12010-02-12 00:31:15 +0000211 bool ParseOptionalStackAlignment(unsigned &Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +0000212 bool ParseOptionalCommaAlign(unsigned &Alignment, bool &AteExtraComma);
Chris Lattner628c13a2009-12-30 05:14:00 +0000213 bool ParseIndexList(SmallVectorImpl<unsigned> &Indices,bool &AteExtraComma);
214 bool ParseIndexList(SmallVectorImpl<unsigned> &Indices) {
215 bool AteExtraComma;
216 if (ParseIndexList(Indices, AteExtraComma)) return true;
217 if (AteExtraComma)
218 return TokError("expected index");
219 return false;
220 }
Misha Brukman9ea40342009-01-02 22:46:48 +0000221
Chris Lattnerdf986172009-01-02 07:01:27 +0000222 // Top-Level Entities
223 bool ParseTopLevelEntities();
224 bool ValidateEndOfModule();
225 bool ParseTargetDefinition();
Chris Lattnerdf986172009-01-02 07:01:27 +0000226 bool ParseModuleAsm();
Bill Wendling3defc0b2012-11-28 08:41:48 +0000227 bool ParseDepLibs(); // FIXME: Remove in 4.0.
Chris Lattnerdf986172009-01-02 07:01:27 +0000228 bool ParseUnnamedType();
229 bool ParseNamedType();
230 bool ParseDeclare();
231 bool ParseDefine();
Misha Brukman9ea40342009-01-02 22:46:48 +0000232
Chris Lattnerdf986172009-01-02 07:01:27 +0000233 bool ParseGlobalType(bool &IsConstant);
Dan Gohman3845e502009-08-12 23:32:33 +0000234 bool ParseUnnamedGlobal();
Chris Lattnerdf986172009-01-02 07:01:27 +0000235 bool ParseNamedGlobal();
236 bool ParseGlobal(const std::string &Name, LocTy Loc, unsigned Linkage,
237 bool HasLinkage, unsigned Visibility);
238 bool ParseAlias(const std::string &Name, LocTy Loc, unsigned Visibility);
Devang Patel923078c2009-07-01 19:21:12 +0000239 bool ParseStandaloneMetadata();
Devang Pateleff2ab62009-07-29 00:34:02 +0000240 bool ParseNamedMetadata();
Chris Lattner442ffa12009-12-29 21:53:55 +0000241 bool ParseMDString(MDString *&Result);
Chris Lattner4a72efc2009-12-30 04:15:23 +0000242 bool ParseMDNodeID(MDNode *&Result);
Chris Lattner449c3102010-04-01 05:14:45 +0000243 bool ParseMDNodeID(MDNode *&Result, unsigned &SlotNo);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000244 bool ParseUnnamedAttrGrp();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000245 bool ParseFnAttributeValuePairs(AttrBuilder &B,
246 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman2253a2f2013-06-27 00:25:01 +0000247 bool inAttrGrp, LocTy &BuiltinLoc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000248
Chris Lattnerdf986172009-01-02 07:01:27 +0000249 // Type Parsing.
Chris Lattner1afcace2011-07-09 17:41:24 +0000250 bool ParseType(Type *&Result, bool AllowVoid = false);
251 bool ParseType(Type *&Result, LocTy &Loc, bool AllowVoid = false) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000252 Loc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +0000253 return ParseType(Result, AllowVoid);
Chris Lattnerdf986172009-01-02 07:01:27 +0000254 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000255 bool ParseAnonStructType(Type *&Result, bool Packed);
256 bool ParseStructBody(SmallVectorImpl<Type*> &Body);
257 bool ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
258 std::pair<Type*, LocTy> &Entry,
259 Type *&ResultTy);
260
261 bool ParseArrayVectorType(Type *&Result, bool isVector);
262 bool ParseFunctionType(Type *&Result);
Chris Lattnerdf986172009-01-02 07:01:27 +0000263
Chris Lattnerdf986172009-01-02 07:01:27 +0000264 // Function Semantic Analysis.
265 class PerFunctionState {
266 LLParser &P;
267 Function &F;
268 std::map<std::string, std::pair<Value*, LocTy> > ForwardRefVals;
269 std::map<unsigned, std::pair<Value*, LocTy> > ForwardRefValIDs;
270 std::vector<Value*> NumberedVals;
Michael Ilseman407a6162012-11-15 22:34:00 +0000271
Chris Lattner09d9ef42009-10-28 03:39:23 +0000272 /// FunctionNumber - If this is an unnamed function, this is the slot
273 /// number of it, otherwise it is -1.
274 int FunctionNumber;
Chris Lattnerdf986172009-01-02 07:01:27 +0000275 public:
Chris Lattner09d9ef42009-10-28 03:39:23 +0000276 PerFunctionState(LLParser &p, Function &f, int FunctionNumber);
Chris Lattnerdf986172009-01-02 07:01:27 +0000277 ~PerFunctionState();
Misha Brukman9ea40342009-01-02 22:46:48 +0000278
Chris Lattnerdf986172009-01-02 07:01:27 +0000279 Function &getFunction() const { return F; }
Misha Brukman9ea40342009-01-02 22:46:48 +0000280
Chris Lattner09d9ef42009-10-28 03:39:23 +0000281 bool FinishFunction();
Misha Brukman9ea40342009-01-02 22:46:48 +0000282
Chris Lattnerdf986172009-01-02 07:01:27 +0000283 /// GetVal - Get a value with the specified name or ID, creating a
284 /// forward reference record if needed. This can return null if the value
285 /// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000286 Value *GetVal(const std::string &Name, Type *Ty, LocTy Loc);
287 Value *GetVal(unsigned ID, Type *Ty, LocTy Loc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000288
Chris Lattnerdf986172009-01-02 07:01:27 +0000289 /// SetInstName - After an instruction is parsed and inserted into its
290 /// basic block, this installs its name.
291 bool SetInstName(int NameID, const std::string &NameStr, LocTy NameLoc,
292 Instruction *Inst);
Misha Brukman9ea40342009-01-02 22:46:48 +0000293
Chris Lattnerdf986172009-01-02 07:01:27 +0000294 /// GetBB - Get a basic block with the specified name or ID, creating a
295 /// forward reference record if needed. This can return null if the value
296 /// is not a BasicBlock.
297 BasicBlock *GetBB(const std::string &Name, LocTy Loc);
298 BasicBlock *GetBB(unsigned ID, LocTy Loc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000299
Chris Lattnerdf986172009-01-02 07:01:27 +0000300 /// DefineBB - Define the specified basic block, which is either named or
301 /// unnamed. If there is an error, this returns null otherwise it returns
302 /// the block being defined.
303 BasicBlock *DefineBB(const std::string &Name, LocTy Loc);
304 };
Misha Brukman9ea40342009-01-02 22:46:48 +0000305
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000306 bool ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +0000307 PerFunctionState *PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000308
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000309 bool ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS);
310 bool ParseValue(Type *Ty, Value *&V, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +0000311 return ParseValue(Ty, V, &PFS);
312 }
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000313 bool ParseValue(Type *Ty, Value *&V, LocTy &Loc,
Chris Lattnerdf986172009-01-02 07:01:27 +0000314 PerFunctionState &PFS) {
315 Loc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +0000316 return ParseValue(Ty, V, &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000317 }
Misha Brukman9ea40342009-01-02 22:46:48 +0000318
Chris Lattner1afcace2011-07-09 17:41:24 +0000319 bool ParseTypeAndValue(Value *&V, PerFunctionState *PFS);
320 bool ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
321 return ParseTypeAndValue(V, &PFS);
322 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000323 bool ParseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) {
324 Loc = Lex.getLoc();
325 return ParseTypeAndValue(V, PFS);
326 }
Chris Lattnerf9be95f2009-10-27 19:13:16 +0000327 bool ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
328 PerFunctionState &PFS);
329 bool ParseTypeAndBasicBlock(BasicBlock *&BB, PerFunctionState &PFS) {
330 LocTy Loc;
331 return ParseTypeAndBasicBlock(BB, Loc, PFS);
332 }
Victor Hernandez19715562009-12-03 23:40:58 +0000333
Chris Lattnerfdfeb692010-02-12 20:49:41 +0000334
Chris Lattnerdf986172009-01-02 07:01:27 +0000335 struct ParamInfo {
336 LocTy Loc;
337 Value *V;
Bill Wendling73dee182013-01-31 00:29:54 +0000338 AttributeSet Attrs;
339 ParamInfo(LocTy loc, Value *v, AttributeSet attrs)
Chris Lattnerdf986172009-01-02 07:01:27 +0000340 : Loc(loc), V(v), Attrs(attrs) {}
341 };
342 bool ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
343 PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000344
Victor Hernandezbf170d42010-01-05 22:22:14 +0000345 // Constant Parsing.
346 bool ParseValID(ValID &ID, PerFunctionState *PFS = NULL);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000347 bool ParseGlobalValue(Type *Ty, Constant *&V);
Victor Hernandezbf170d42010-01-05 22:22:14 +0000348 bool ParseGlobalTypeAndValue(Constant *&V);
349 bool ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +0000350 bool ParseMetadataListValue(ValID &ID, PerFunctionState *PFS);
Dan Gohman83448032010-07-14 18:26:50 +0000351 bool ParseMetadataValue(ValID &ID, PerFunctionState *PFS);
Victor Hernandez24e64df2010-01-10 07:14:18 +0000352 bool ParseMDNodeVector(SmallVectorImpl<Value*> &, PerFunctionState *PFS);
Dan Gohman9d072f52010-08-24 02:05:17 +0000353 bool ParseInstructionMetadata(Instruction *Inst, PerFunctionState *PFS);
Victor Hernandezbf170d42010-01-05 22:22:14 +0000354
Chris Lattnerdf986172009-01-02 07:01:27 +0000355 // Function Parsing.
356 struct ArgInfo {
357 LocTy Loc;
Chris Lattner1afcace2011-07-09 17:41:24 +0000358 Type *Ty;
Bill Wendling73dee182013-01-31 00:29:54 +0000359 AttributeSet Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +0000360 std::string Name;
Bill Wendling73dee182013-01-31 00:29:54 +0000361 ArgInfo(LocTy L, Type *ty, AttributeSet Attr, const std::string &N)
Chris Lattner1afcace2011-07-09 17:41:24 +0000362 : Loc(L), Ty(ty), Attrs(Attr), Name(N) {}
Chris Lattnerdf986172009-01-02 07:01:27 +0000363 };
Chris Lattner1afcace2011-07-09 17:41:24 +0000364 bool ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList, bool &isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +0000365 bool ParseFunctionHeader(Function *&Fn, bool isDefine);
366 bool ParseFunctionBody(Function &Fn);
367 bool ParseBasicBlock(PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000368
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +0000369 // Instruction Parsing. Each instruction parsing routine can return with a
370 // normal result, an error result, or return having eaten an extra comma.
371 enum InstResult { InstNormal = 0, InstError = 1, InstExtraComma = 2 };
372 int ParseInstruction(Instruction *&Inst, BasicBlock *BB,
373 PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000374 bool ParseCmpPredicate(unsigned &Pred, unsigned Opc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000375
Chris Lattner437544f2011-06-17 06:49:41 +0000376 bool ParseRet(Instruction *&Inst, BasicBlock *BB, PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000377 bool ParseBr(Instruction *&Inst, PerFunctionState &PFS);
378 bool ParseSwitch(Instruction *&Inst, PerFunctionState &PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +0000379 bool ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000380 bool ParseInvoke(Instruction *&Inst, PerFunctionState &PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +0000381 bool ParseResume(Instruction *&Inst, PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000382
Chris Lattnere914b592009-01-05 08:24:46 +0000383 bool ParseArithmetic(Instruction *&I, PerFunctionState &PFS, unsigned Opc,
384 unsigned OperandType);
Chris Lattnerdf986172009-01-02 07:01:27 +0000385 bool ParseLogical(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
386 bool ParseCompare(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
387 bool ParseCast(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
388 bool ParseSelect(Instruction *&I, PerFunctionState &PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +0000389 bool ParseVA_Arg(Instruction *&I, PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000390 bool ParseExtractElement(Instruction *&I, PerFunctionState &PFS);
391 bool ParseInsertElement(Instruction *&I, PerFunctionState &PFS);
392 bool ParseShuffleVector(Instruction *&I, PerFunctionState &PFS);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +0000393 int ParsePHI(Instruction *&I, PerFunctionState &PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +0000394 bool ParseLandingPad(Instruction *&I, PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000395 bool ParseCall(Instruction *&I, PerFunctionState &PFS, bool isTail);
Chris Lattnerf3a789d2011-06-17 03:16:47 +0000396 int ParseAlloc(Instruction *&I, PerFunctionState &PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +0000397 int ParseLoad(Instruction *&I, PerFunctionState &PFS);
398 int ParseStore(Instruction *&I, PerFunctionState &PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +0000399 int ParseCmpXchg(Instruction *&I, PerFunctionState &PFS);
400 int ParseAtomicRMW(Instruction *&I, PerFunctionState &PFS);
Eli Friedman47f35132011-07-25 23:16:38 +0000401 int ParseFence(Instruction *&I, PerFunctionState &PFS);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +0000402 int ParseGetElementPtr(Instruction *&I, PerFunctionState &PFS);
403 int ParseExtractValue(Instruction *&I, PerFunctionState &PFS);
404 int ParseInsertValue(Instruction *&I, PerFunctionState &PFS);
Michael Ilseman407a6162012-11-15 22:34:00 +0000405
406 bool ResolveForwardRefBlockAddresses(Function *TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000407 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
408 PerFunctionState *PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000409 };
410} // End llvm namespace
411
412#endif