blob: 3420fcf45539e62cd00d31dabfa1048e3c3b0081 [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"
Owen Andersonfba933c2009-07-01 23:57:11 +000018#include "llvm/Module.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000019#include "llvm/Type.h"
20#include <map>
21
22namespace llvm {
23 class Module;
24 class OpaqueType;
25 class Function;
26 class Value;
27 class BasicBlock;
28 class Instruction;
29 class Constant;
30 class GlobalValue;
Devang Patele54abc92009-07-22 17:43:22 +000031 class MetadataBase;
Nick Lewycky21cc4462009-04-04 07:22:01 +000032 class MDString;
33 class MDNode;
Chris Lattnerdf986172009-01-02 07:01:27 +000034 struct ValID;
Misha Brukman9ea40342009-01-02 22:46:48 +000035
Chris Lattnerdf986172009-01-02 07:01:27 +000036 class LLParser {
37 public:
38 typedef LLLexer::LocTy LocTy;
39 private:
Owen Andersonfba933c2009-07-01 23:57:11 +000040 LLVMContext& Context;
Chris Lattnerdf986172009-01-02 07:01:27 +000041 LLLexer Lex;
42 Module *M;
Misha Brukman9ea40342009-01-02 22:46:48 +000043
Chris Lattnerdf986172009-01-02 07:01:27 +000044 // Type resolution handling data structures.
45 std::map<std::string, std::pair<PATypeHolder, LocTy> > ForwardRefTypes;
46 std::map<unsigned, std::pair<PATypeHolder, LocTy> > ForwardRefTypeIDs;
47 std::vector<PATypeHolder> NumberedTypes;
Devang Patel923078c2009-07-01 19:21:12 +000048 /// MetadataCache - This map keeps track of parsed metadata constants.
Devang Patel104cf9e2009-07-23 01:07:34 +000049 std::map<unsigned, MetadataBase *> MetadataCache;
50 std::map<unsigned, std::pair<MetadataBase *, LocTy> > ForwardRefMDNodes;
Devang Patelf633a062009-09-17 23:04:48 +000051 SmallVector<std::pair<MDKindID, MDNode *>, 2> MDsOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +000052 struct UpRefRecord {
53 /// Loc - This is the location of the upref.
54 LocTy Loc;
Misha Brukman9ea40342009-01-02 22:46:48 +000055
Chris Lattnerdf986172009-01-02 07:01:27 +000056 /// NestingLevel - The number of nesting levels that need to be popped
57 /// before this type is resolved.
58 unsigned NestingLevel;
Misha Brukman9ea40342009-01-02 22:46:48 +000059
Chris Lattnerdf986172009-01-02 07:01:27 +000060 /// LastContainedTy - This is the type at the current binding level for
61 /// the type. Every time we reduce the nesting level, this gets updated.
62 const Type *LastContainedTy;
Misha Brukman9ea40342009-01-02 22:46:48 +000063
Chris Lattnerdf986172009-01-02 07:01:27 +000064 /// UpRefTy - This is the actual opaque type that the upreference is
65 /// represented with.
66 OpaqueType *UpRefTy;
Misha Brukman9ea40342009-01-02 22:46:48 +000067
Chris Lattnerdf986172009-01-02 07:01:27 +000068 UpRefRecord(LocTy L, unsigned NL, OpaqueType *URTy)
69 : Loc(L), NestingLevel(NL), LastContainedTy((Type*)URTy),
70 UpRefTy(URTy) {}
71 };
72 std::vector<UpRefRecord> UpRefs;
73
74 // Global Value reference information.
75 std::map<std::string, std::pair<GlobalValue*, LocTy> > ForwardRefVals;
76 std::map<unsigned, std::pair<GlobalValue*, LocTy> > ForwardRefValIDs;
77 std::vector<GlobalValue*> NumberedVals;
78 public:
Chris Lattnereeb4a842009-07-02 23:08:13 +000079 LLParser(MemoryBuffer *F, SourceMgr &SM, SMDiagnostic &Err, Module *m) :
Owen Andersonff6c91e2009-07-07 18:44:11 +000080 Context(m->getContext()), Lex(F, SM, Err, m->getContext()), M(m) {}
Chris Lattnerad7d1e22009-01-04 20:44:11 +000081 bool Run();
Misha Brukman9ea40342009-01-02 22:46:48 +000082
Owen Andersonb43eae72009-07-02 17:04:01 +000083 LLVMContext& getContext() { return Context; }
84
Chris Lattnerdf986172009-01-02 07:01:27 +000085 private:
86
87 bool Error(LocTy L, const std::string &Msg) const {
88 return Lex.Error(L, Msg);
89 }
90 bool TokError(const std::string &Msg) const {
91 return Error(Lex.getLoc(), Msg);
92 }
Misha Brukman9ea40342009-01-02 22:46:48 +000093
Chris Lattnerdf986172009-01-02 07:01:27 +000094 /// GetGlobalVal - Get a value with the specified name or ID, creating a
95 /// forward reference record if needed. This can return null if the value
96 /// exists but does not have the right type.
97 GlobalValue *GetGlobalVal(const std::string &N, const Type *Ty, LocTy Loc);
98 GlobalValue *GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc);
Misha Brukman9ea40342009-01-02 22:46:48 +000099
Chris Lattnerdf986172009-01-02 07:01:27 +0000100 // Helper Routines.
101 bool ParseToken(lltok::Kind T, const char *ErrMsg);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000102 bool EatIfPresent(lltok::Kind T) {
103 if (Lex.getKind() != T) return false;
104 Lex.Lex();
105 return true;
106 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000107 bool ParseOptionalToken(lltok::Kind T, bool &Present) {
108 if (Lex.getKind() != T) {
109 Present = false;
110 } else {
111 Lex.Lex();
112 Present = true;
113 }
114 return false;
115 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000116 bool ParseStringConstant(std::string &Result);
117 bool ParseUInt32(unsigned &Val);
118 bool ParseUInt32(unsigned &Val, LocTy &Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000119 Loc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000120 return ParseUInt32(Val);
Chris Lattnerdf986172009-01-02 07:01:27 +0000121 }
122 bool ParseOptionalAddrSpace(unsigned &AddrSpace);
123 bool ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind);
124 bool ParseOptionalLinkage(unsigned &Linkage, bool &HasLinkage);
125 bool ParseOptionalLinkage(unsigned &Linkage) {
126 bool HasLinkage; return ParseOptionalLinkage(Linkage, HasLinkage);
127 }
128 bool ParseOptionalVisibility(unsigned &Visibility);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000129 bool ParseOptionalCallingConv(CallingConv::ID &CC);
Chris Lattnerdf986172009-01-02 07:01:27 +0000130 bool ParseOptionalAlignment(unsigned &Alignment);
Devang Patelf633a062009-09-17 23:04:48 +0000131 bool ParseOptionalDbgInfo();
132 bool ParseOptionalInfo(unsigned &Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +0000133 bool ParseIndexList(SmallVectorImpl<unsigned> &Indices);
Misha Brukman9ea40342009-01-02 22:46:48 +0000134
Chris Lattnerdf986172009-01-02 07:01:27 +0000135 // Top-Level Entities
136 bool ParseTopLevelEntities();
137 bool ValidateEndOfModule();
138 bool ParseTargetDefinition();
139 bool ParseDepLibs();
140 bool ParseModuleAsm();
141 bool ParseUnnamedType();
142 bool ParseNamedType();
143 bool ParseDeclare();
144 bool ParseDefine();
Misha Brukman9ea40342009-01-02 22:46:48 +0000145
Chris Lattnerdf986172009-01-02 07:01:27 +0000146 bool ParseGlobalType(bool &IsConstant);
Dan Gohman3845e502009-08-12 23:32:33 +0000147 bool ParseUnnamedGlobal();
Chris Lattnerdf986172009-01-02 07:01:27 +0000148 bool ParseNamedGlobal();
149 bool ParseGlobal(const std::string &Name, LocTy Loc, unsigned Linkage,
150 bool HasLinkage, unsigned Visibility);
151 bool ParseAlias(const std::string &Name, LocTy Loc, unsigned Visibility);
Devang Patel923078c2009-07-01 19:21:12 +0000152 bool ParseStandaloneMetadata();
Devang Pateleff2ab62009-07-29 00:34:02 +0000153 bool ParseNamedMetadata();
Devang Patele54abc92009-07-22 17:43:22 +0000154 bool ParseMDString(MetadataBase *&S);
Devang Patel104cf9e2009-07-23 01:07:34 +0000155 bool ParseMDNode(MetadataBase *&N);
Misha Brukman9ea40342009-01-02 22:46:48 +0000156
Chris Lattnerdf986172009-01-02 07:01:27 +0000157 // Type Parsing.
Chris Lattnera9a9e072009-03-09 04:49:14 +0000158 bool ParseType(PATypeHolder &Result, bool AllowVoid = false);
159 bool ParseType(PATypeHolder &Result, LocTy &Loc, bool AllowVoid = false) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000160 Loc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +0000161 return ParseType(Result, AllowVoid);
Chris Lattnerdf986172009-01-02 07:01:27 +0000162 }
163 bool ParseTypeRec(PATypeHolder &H);
164 bool ParseStructType(PATypeHolder &H, bool Packed);
165 bool ParseArrayVectorType(PATypeHolder &H, bool isVector);
166 bool ParseFunctionType(PATypeHolder &Result);
167 PATypeHolder HandleUpRefs(const Type *Ty);
168
169 // Constants.
170 bool ParseValID(ValID &ID);
171 bool ConvertGlobalValIDToValue(const Type *Ty, ValID &ID, Constant *&V);
172 bool ParseGlobalValue(const Type *Ty, Constant *&V);
173 bool ParseGlobalTypeAndValue(Constant *&V);
174 bool ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts);
Nick Lewyckycb337992009-05-10 20:57:05 +0000175 bool ParseMDNodeVector(SmallVectorImpl<Value*> &);
Chris Lattnerdf986172009-01-02 07:01:27 +0000176
Misha Brukman9ea40342009-01-02 22:46:48 +0000177
Chris Lattnerdf986172009-01-02 07:01:27 +0000178 // Function Semantic Analysis.
179 class PerFunctionState {
180 LLParser &P;
181 Function &F;
182 std::map<std::string, std::pair<Value*, LocTy> > ForwardRefVals;
183 std::map<unsigned, std::pair<Value*, LocTy> > ForwardRefValIDs;
184 std::vector<Value*> NumberedVals;
185 public:
186 PerFunctionState(LLParser &p, Function &f);
187 ~PerFunctionState();
Misha Brukman9ea40342009-01-02 22:46:48 +0000188
Chris Lattnerdf986172009-01-02 07:01:27 +0000189 Function &getFunction() const { return F; }
Misha Brukman9ea40342009-01-02 22:46:48 +0000190
Chris Lattnerdf986172009-01-02 07:01:27 +0000191 bool VerifyFunctionComplete();
Misha Brukman9ea40342009-01-02 22:46:48 +0000192
Chris Lattnerdf986172009-01-02 07:01:27 +0000193 /// GetVal - Get a value with the specified name or ID, creating a
194 /// forward reference record if needed. This can return null if the value
195 /// exists but does not have the right type.
196 Value *GetVal(const std::string &Name, const Type *Ty, LocTy Loc);
197 Value *GetVal(unsigned ID, const Type *Ty, LocTy Loc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000198
Chris Lattnerdf986172009-01-02 07:01:27 +0000199 /// SetInstName - After an instruction is parsed and inserted into its
200 /// basic block, this installs its name.
201 bool SetInstName(int NameID, const std::string &NameStr, LocTy NameLoc,
202 Instruction *Inst);
Misha Brukman9ea40342009-01-02 22:46:48 +0000203
Chris Lattnerdf986172009-01-02 07:01:27 +0000204 /// GetBB - Get a basic block with the specified name or ID, creating a
205 /// forward reference record if needed. This can return null if the value
206 /// is not a BasicBlock.
207 BasicBlock *GetBB(const std::string &Name, LocTy Loc);
208 BasicBlock *GetBB(unsigned ID, LocTy Loc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000209
Chris Lattnerdf986172009-01-02 07:01:27 +0000210 /// DefineBB - Define the specified basic block, which is either named or
211 /// unnamed. If there is an error, this returns null otherwise it returns
212 /// the block being defined.
213 BasicBlock *DefineBB(const std::string &Name, LocTy Loc);
214 };
Misha Brukman9ea40342009-01-02 22:46:48 +0000215
Chris Lattnerdf986172009-01-02 07:01:27 +0000216 bool ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
217 PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000218
Chris Lattnerdf986172009-01-02 07:01:27 +0000219 bool ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS);
220 bool ParseValue(const Type *Ty, Value *&V, LocTy &Loc,
221 PerFunctionState &PFS) {
222 Loc = Lex.getLoc();
223 return ParseValue(Ty, V, PFS);
224 }
Misha Brukman9ea40342009-01-02 22:46:48 +0000225
Chris Lattnerdf986172009-01-02 07:01:27 +0000226 bool ParseTypeAndValue(Value *&V, PerFunctionState &PFS);
227 bool ParseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) {
228 Loc = Lex.getLoc();
229 return ParseTypeAndValue(V, PFS);
230 }
Misha Brukman9ea40342009-01-02 22:46:48 +0000231
Chris Lattnerdf986172009-01-02 07:01:27 +0000232 struct ParamInfo {
233 LocTy Loc;
234 Value *V;
235 unsigned Attrs;
Misha Brukman9ea40342009-01-02 22:46:48 +0000236 ParamInfo(LocTy loc, Value *v, unsigned attrs)
Chris Lattnerdf986172009-01-02 07:01:27 +0000237 : Loc(loc), V(v), Attrs(attrs) {}
238 };
239 bool ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
240 PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000241
Chris Lattnerdf986172009-01-02 07:01:27 +0000242 // Function Parsing.
243 struct ArgInfo {
244 LocTy Loc;
245 PATypeHolder Type;
246 unsigned Attrs;
247 std::string Name;
248 ArgInfo(LocTy L, PATypeHolder Ty, unsigned Attr, const std::string &N)
249 : Loc(L), Type(Ty), Attrs(Attr), Name(N) {}
250 };
251 bool ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +0000252 bool &isVarArg, bool inType);
Chris Lattnerdf986172009-01-02 07:01:27 +0000253 bool ParseFunctionHeader(Function *&Fn, bool isDefine);
254 bool ParseFunctionBody(Function &Fn);
255 bool ParseBasicBlock(PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000256
Chris Lattnerdf986172009-01-02 07:01:27 +0000257 // Instruction Parsing.
258 bool ParseInstruction(Instruction *&Inst, BasicBlock *BB,
259 PerFunctionState &PFS);
260 bool ParseCmpPredicate(unsigned &Pred, unsigned Opc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000261
Chris Lattnerdf986172009-01-02 07:01:27 +0000262 bool ParseRet(Instruction *&Inst, BasicBlock *BB, PerFunctionState &PFS);
263 bool ParseBr(Instruction *&Inst, PerFunctionState &PFS);
264 bool ParseSwitch(Instruction *&Inst, PerFunctionState &PFS);
265 bool ParseInvoke(Instruction *&Inst, PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000266
Chris Lattnere914b592009-01-05 08:24:46 +0000267 bool ParseArithmetic(Instruction *&I, PerFunctionState &PFS, unsigned Opc,
268 unsigned OperandType);
Chris Lattnerdf986172009-01-02 07:01:27 +0000269 bool ParseLogical(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
270 bool ParseCompare(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
271 bool ParseCast(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
272 bool ParseSelect(Instruction *&I, PerFunctionState &PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +0000273 bool ParseVA_Arg(Instruction *&I, PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000274 bool ParseExtractElement(Instruction *&I, PerFunctionState &PFS);
275 bool ParseInsertElement(Instruction *&I, PerFunctionState &PFS);
276 bool ParseShuffleVector(Instruction *&I, PerFunctionState &PFS);
277 bool ParsePHI(Instruction *&I, PerFunctionState &PFS);
278 bool ParseCall(Instruction *&I, PerFunctionState &PFS, bool isTail);
279 bool ParseAlloc(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
280 bool ParseFree(Instruction *&I, PerFunctionState &PFS);
281 bool ParseLoad(Instruction *&I, PerFunctionState &PFS, bool isVolatile);
282 bool ParseStore(Instruction *&I, PerFunctionState &PFS, bool isVolatile);
283 bool ParseGetResult(Instruction *&I, PerFunctionState &PFS);
284 bool ParseGetElementPtr(Instruction *&I, PerFunctionState &PFS);
285 bool ParseExtractValue(Instruction *&I, PerFunctionState &PFS);
286 bool ParseInsertValue(Instruction *&I, PerFunctionState &PFS);
287 };
288} // End llvm namespace
289
290#endif