blob: 444bae2390eda1ee09eea63623cea02036357915 [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"
Chris Lattnerb45218f2010-04-01 05:20:21 +000020#include "llvm/ADT/DenseMap.h"
Chris Lattner56608462009-12-28 08:20:46 +000021#include "llvm/Support/ValueHandle.h"
Chris Lattnere80250e2009-12-29 21:43:58 +000022#include <map>
Chris Lattnerdf986172009-01-02 07:01:27 +000023
24namespace llvm {
25 class Module;
26 class OpaqueType;
27 class Function;
28 class Value;
29 class BasicBlock;
30 class Instruction;
31 class Constant;
32 class GlobalValue;
Nick Lewycky21cc4462009-04-04 07:22:01 +000033 class MDString;
34 class MDNode;
Chris Lattnerfdfeb692010-02-12 20:49:41 +000035 class UnionType;
Misha Brukman9ea40342009-01-02 22:46:48 +000036
Chris Lattner09d9ef42009-10-28 03:39:23 +000037 /// ValID - Represents a reference of a definition of some sort with no type.
38 /// There are several cases where we have to parse the value but where the
39 /// type can depend on later context. This may either be a numeric reference
40 /// or a symbolic (%var) reference. This is just a discriminated union.
41 struct ValID {
42 enum {
43 t_LocalID, t_GlobalID, // ID in UIntVal.
44 t_LocalName, t_GlobalName, // Name in StrVal.
45 t_APSInt, t_APFloat, // Value in APSIntVal/APFloatVal.
46 t_Null, t_Undef, t_Zero, // No value.
47 t_EmptyArray, // No value: []
48 t_Constant, // Value in ConstantVal.
49 t_InlineAsm, // Value in StrVal/StrVal2/UIntVal.
Chris Lattner287881d2009-12-30 02:11:14 +000050 t_MDNode, // Value in MDNodeVal.
51 t_MDString // Value in MDStringVal.
Chris Lattner09d9ef42009-10-28 03:39:23 +000052 } Kind;
53
54 LLLexer::LocTy Loc;
55 unsigned UIntVal;
56 std::string StrVal, StrVal2;
57 APSInt APSIntVal;
58 APFloat APFloatVal;
59 Constant *ConstantVal;
Chris Lattner287881d2009-12-30 02:11:14 +000060 MDNode *MDNodeVal;
61 MDString *MDStringVal;
Chris Lattner09d9ef42009-10-28 03:39:23 +000062 ValID() : APFloatVal(0.0) {}
63
64 bool operator<(const ValID &RHS) const {
65 if (Kind == t_LocalID || Kind == t_GlobalID)
66 return UIntVal < RHS.UIntVal;
67 assert((Kind == t_LocalName || Kind == t_GlobalName) &&
68 "Ordering not defined for this ValID kind yet");
69 return StrVal < RHS.StrVal;
70 }
71 };
72
Chris Lattnerdf986172009-01-02 07:01:27 +000073 class LLParser {
74 public:
75 typedef LLLexer::LocTy LocTy;
76 private:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +000077 LLVMContext &Context;
Chris Lattnerdf986172009-01-02 07:01:27 +000078 LLLexer Lex;
79 Module *M;
Chris Lattner449c3102010-04-01 05:14:45 +000080
81 // Instruction metadata resolution. Each instruction can have a list of
82 // MDRef info associated with them.
83 struct MDRef {
84 SMLoc Loc;
85 unsigned MDKind, MDSlot;
86 };
87 DenseMap<Instruction*, std::vector<MDRef> > ForwardRefInstMetadata;
Misha Brukman9ea40342009-01-02 22:46:48 +000088
Chris Lattnerdf986172009-01-02 07:01:27 +000089 // Type resolution handling data structures.
90 std::map<std::string, std::pair<PATypeHolder, LocTy> > ForwardRefTypes;
91 std::map<unsigned, std::pair<PATypeHolder, LocTy> > ForwardRefTypeIDs;
92 std::vector<PATypeHolder> NumberedTypes;
Chris Lattner0834e6a2009-12-30 04:51:58 +000093 std::vector<TrackingVH<MDNode> > NumberedMetadata;
Chris Lattnere80250e2009-12-29 21:43:58 +000094 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> > ForwardRefMDNodes;
Chris Lattnerdf986172009-01-02 07:01:27 +000095 struct UpRefRecord {
96 /// Loc - This is the location of the upref.
97 LocTy Loc;
Misha Brukman9ea40342009-01-02 22:46:48 +000098
Chris Lattnerdf986172009-01-02 07:01:27 +000099 /// NestingLevel - The number of nesting levels that need to be popped
100 /// before this type is resolved.
101 unsigned NestingLevel;
Misha Brukman9ea40342009-01-02 22:46:48 +0000102
Chris Lattnerdf986172009-01-02 07:01:27 +0000103 /// LastContainedTy - This is the type at the current binding level for
104 /// the type. Every time we reduce the nesting level, this gets updated.
105 const Type *LastContainedTy;
Misha Brukman9ea40342009-01-02 22:46:48 +0000106
Chris Lattnerdf986172009-01-02 07:01:27 +0000107 /// UpRefTy - This is the actual opaque type that the upreference is
108 /// represented with.
109 OpaqueType *UpRefTy;
Misha Brukman9ea40342009-01-02 22:46:48 +0000110
Chris Lattnerdf986172009-01-02 07:01:27 +0000111 UpRefRecord(LocTy L, unsigned NL, OpaqueType *URTy)
112 : Loc(L), NestingLevel(NL), LastContainedTy((Type*)URTy),
113 UpRefTy(URTy) {}
114 };
115 std::vector<UpRefRecord> UpRefs;
116
117 // Global Value reference information.
118 std::map<std::string, std::pair<GlobalValue*, LocTy> > ForwardRefVals;
119 std::map<unsigned, std::pair<GlobalValue*, LocTy> > ForwardRefValIDs;
120 std::vector<GlobalValue*> NumberedVals;
Chris Lattner09d9ef42009-10-28 03:39:23 +0000121
122 // References to blockaddress. The key is the function ValID, the value is
123 // a list of references to blocks in that function.
124 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >
125 ForwardRefBlockAddresses;
126
127 Function *MallocF;
Chris Lattnerdf986172009-01-02 07:01:27 +0000128 public:
Chris Lattnereeb4a842009-07-02 23:08:13 +0000129 LLParser(MemoryBuffer *F, SourceMgr &SM, SMDiagnostic &Err, Module *m) :
Victor Hernandez13ad5aa2009-10-17 00:00:19 +0000130 Context(m->getContext()), Lex(F, SM, Err, m->getContext()),
131 M(m), MallocF(NULL) {}
Chris Lattnerad7d1e22009-01-04 20:44:11 +0000132 bool Run();
Misha Brukman9ea40342009-01-02 22:46:48 +0000133
Owen Andersonb43eae72009-07-02 17:04:01 +0000134 LLVMContext& getContext() { return Context; }
135
Chris Lattnerdf986172009-01-02 07:01:27 +0000136 private:
137
138 bool Error(LocTy L, const std::string &Msg) const {
139 return Lex.Error(L, Msg);
140 }
141 bool TokError(const std::string &Msg) const {
142 return Error(Lex.getLoc(), Msg);
143 }
Misha Brukman9ea40342009-01-02 22:46:48 +0000144
Chris Lattnerdf986172009-01-02 07:01:27 +0000145 /// GetGlobalVal - Get a value with the specified name or ID, creating a
146 /// forward reference record if needed. This can return null if the value
147 /// exists but does not have the right type.
148 GlobalValue *GetGlobalVal(const std::string &N, const Type *Ty, LocTy Loc);
149 GlobalValue *GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000150
Chris Lattnerdf986172009-01-02 07:01:27 +0000151 // Helper Routines.
152 bool ParseToken(lltok::Kind T, const char *ErrMsg);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000153 bool EatIfPresent(lltok::Kind T) {
154 if (Lex.getKind() != T) return false;
155 Lex.Lex();
156 return true;
157 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000158 bool ParseOptionalToken(lltok::Kind T, bool &Present) {
159 if (Lex.getKind() != T) {
160 Present = false;
161 } else {
162 Lex.Lex();
163 Present = true;
164 }
165 return false;
166 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000167 bool ParseStringConstant(std::string &Result);
168 bool ParseUInt32(unsigned &Val);
169 bool ParseUInt32(unsigned &Val, LocTy &Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000170 Loc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000171 return ParseUInt32(Val);
Chris Lattnerdf986172009-01-02 07:01:27 +0000172 }
173 bool ParseOptionalAddrSpace(unsigned &AddrSpace);
174 bool ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind);
175 bool ParseOptionalLinkage(unsigned &Linkage, bool &HasLinkage);
176 bool ParseOptionalLinkage(unsigned &Linkage) {
177 bool HasLinkage; return ParseOptionalLinkage(Linkage, HasLinkage);
178 }
179 bool ParseOptionalVisibility(unsigned &Visibility);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000180 bool ParseOptionalCallingConv(CallingConv::ID &CC);
Chris Lattnerdf986172009-01-02 07:01:27 +0000181 bool ParseOptionalAlignment(unsigned &Alignment);
Charles Davis1e063d12010-02-12 00:31:15 +0000182 bool ParseOptionalStackAlignment(unsigned &Alignment);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +0000183 bool ParseOptionalCommaAlign(unsigned &Alignment, bool &AteExtraComma);
Chris Lattner628c13a2009-12-30 05:14:00 +0000184 bool ParseIndexList(SmallVectorImpl<unsigned> &Indices,bool &AteExtraComma);
185 bool ParseIndexList(SmallVectorImpl<unsigned> &Indices) {
186 bool AteExtraComma;
187 if (ParseIndexList(Indices, AteExtraComma)) return true;
188 if (AteExtraComma)
189 return TokError("expected index");
190 return false;
191 }
Misha Brukman9ea40342009-01-02 22:46:48 +0000192
Chris Lattnerdf986172009-01-02 07:01:27 +0000193 // Top-Level Entities
194 bool ParseTopLevelEntities();
195 bool ValidateEndOfModule();
196 bool ParseTargetDefinition();
197 bool ParseDepLibs();
198 bool ParseModuleAsm();
199 bool ParseUnnamedType();
200 bool ParseNamedType();
201 bool ParseDeclare();
202 bool ParseDefine();
Misha Brukman9ea40342009-01-02 22:46:48 +0000203
Chris Lattnerdf986172009-01-02 07:01:27 +0000204 bool ParseGlobalType(bool &IsConstant);
Dan Gohman3845e502009-08-12 23:32:33 +0000205 bool ParseUnnamedGlobal();
Chris Lattnerdf986172009-01-02 07:01:27 +0000206 bool ParseNamedGlobal();
207 bool ParseGlobal(const std::string &Name, LocTy Loc, unsigned Linkage,
208 bool HasLinkage, unsigned Visibility);
209 bool ParseAlias(const std::string &Name, LocTy Loc, unsigned Visibility);
Devang Patel923078c2009-07-01 19:21:12 +0000210 bool ParseStandaloneMetadata();
Devang Pateleff2ab62009-07-29 00:34:02 +0000211 bool ParseNamedMetadata();
Chris Lattner442ffa12009-12-29 21:53:55 +0000212 bool ParseMDString(MDString *&Result);
Chris Lattner4a72efc2009-12-30 04:15:23 +0000213 bool ParseMDNodeID(MDNode *&Result);
Chris Lattner449c3102010-04-01 05:14:45 +0000214 bool ParseMDNodeID(MDNode *&Result, unsigned &SlotNo);
Misha Brukman9ea40342009-01-02 22:46:48 +0000215
Chris Lattnerdf986172009-01-02 07:01:27 +0000216 // Type Parsing.
Chris Lattnera9a9e072009-03-09 04:49:14 +0000217 bool ParseType(PATypeHolder &Result, bool AllowVoid = false);
218 bool ParseType(PATypeHolder &Result, LocTy &Loc, bool AllowVoid = false) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000219 Loc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +0000220 return ParseType(Result, AllowVoid);
Chris Lattnerdf986172009-01-02 07:01:27 +0000221 }
222 bool ParseTypeRec(PATypeHolder &H);
223 bool ParseStructType(PATypeHolder &H, bool Packed);
Chris Lattnerfdfeb692010-02-12 20:49:41 +0000224 bool ParseUnionType(PATypeHolder &H);
Chris Lattnerdf986172009-01-02 07:01:27 +0000225 bool ParseArrayVectorType(PATypeHolder &H, bool isVector);
226 bool ParseFunctionType(PATypeHolder &Result);
227 PATypeHolder HandleUpRefs(const Type *Ty);
228
Chris Lattnerdf986172009-01-02 07:01:27 +0000229 // Function Semantic Analysis.
230 class PerFunctionState {
231 LLParser &P;
232 Function &F;
233 std::map<std::string, std::pair<Value*, LocTy> > ForwardRefVals;
234 std::map<unsigned, std::pair<Value*, LocTy> > ForwardRefValIDs;
235 std::vector<Value*> NumberedVals;
Chris Lattner09d9ef42009-10-28 03:39:23 +0000236
237 /// FunctionNumber - If this is an unnamed function, this is the slot
238 /// number of it, otherwise it is -1.
239 int FunctionNumber;
Chris Lattnerdf986172009-01-02 07:01:27 +0000240 public:
Chris Lattner09d9ef42009-10-28 03:39:23 +0000241 PerFunctionState(LLParser &p, Function &f, int FunctionNumber);
Chris Lattnerdf986172009-01-02 07:01:27 +0000242 ~PerFunctionState();
Misha Brukman9ea40342009-01-02 22:46:48 +0000243
Chris Lattnerdf986172009-01-02 07:01:27 +0000244 Function &getFunction() const { return F; }
Misha Brukman9ea40342009-01-02 22:46:48 +0000245
Chris Lattner09d9ef42009-10-28 03:39:23 +0000246 bool FinishFunction();
Misha Brukman9ea40342009-01-02 22:46:48 +0000247
Chris Lattnerdf986172009-01-02 07:01:27 +0000248 /// GetVal - Get a value with the specified name or ID, creating a
249 /// forward reference record if needed. This can return null if the value
250 /// exists but does not have the right type.
251 Value *GetVal(const std::string &Name, const Type *Ty, LocTy Loc);
252 Value *GetVal(unsigned ID, const Type *Ty, LocTy Loc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000253
Chris Lattnerdf986172009-01-02 07:01:27 +0000254 /// SetInstName - After an instruction is parsed and inserted into its
255 /// basic block, this installs its name.
256 bool SetInstName(int NameID, const std::string &NameStr, LocTy NameLoc,
257 Instruction *Inst);
Misha Brukman9ea40342009-01-02 22:46:48 +0000258
Chris Lattnerdf986172009-01-02 07:01:27 +0000259 /// GetBB - Get a basic block with the specified name or ID, creating a
260 /// forward reference record if needed. This can return null if the value
261 /// is not a BasicBlock.
262 BasicBlock *GetBB(const std::string &Name, LocTy Loc);
263 BasicBlock *GetBB(unsigned ID, LocTy Loc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000264
Chris Lattnerdf986172009-01-02 07:01:27 +0000265 /// DefineBB - Define the specified basic block, which is either named or
266 /// unnamed. If there is an error, this returns null otherwise it returns
267 /// the block being defined.
268 BasicBlock *DefineBB(const std::string &Name, LocTy Loc);
269 };
Misha Brukman9ea40342009-01-02 22:46:48 +0000270
Chris Lattnerdf986172009-01-02 07:01:27 +0000271 bool ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +0000272 PerFunctionState *PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000273
Chris Lattnerdf986172009-01-02 07:01:27 +0000274 bool ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS);
275 bool ParseValue(const Type *Ty, Value *&V, LocTy &Loc,
276 PerFunctionState &PFS) {
277 Loc = Lex.getLoc();
278 return ParseValue(Ty, V, PFS);
279 }
Misha Brukman9ea40342009-01-02 22:46:48 +0000280
Chris Lattnerdf986172009-01-02 07:01:27 +0000281 bool ParseTypeAndValue(Value *&V, PerFunctionState &PFS);
282 bool ParseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) {
283 Loc = Lex.getLoc();
284 return ParseTypeAndValue(V, PFS);
285 }
Chris Lattnerf9be95f2009-10-27 19:13:16 +0000286 bool ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
287 PerFunctionState &PFS);
288 bool ParseTypeAndBasicBlock(BasicBlock *&BB, PerFunctionState &PFS) {
289 LocTy Loc;
290 return ParseTypeAndBasicBlock(BB, Loc, PFS);
291 }
Victor Hernandez19715562009-12-03 23:40:58 +0000292
Chris Lattnerfdfeb692010-02-12 20:49:41 +0000293 bool ParseUnionValue(const UnionType* utype, ValID &ID, Value *&V);
294
Chris Lattnerdf986172009-01-02 07:01:27 +0000295 struct ParamInfo {
296 LocTy Loc;
297 Value *V;
298 unsigned Attrs;
Misha Brukman9ea40342009-01-02 22:46:48 +0000299 ParamInfo(LocTy loc, Value *v, unsigned attrs)
Chris Lattnerdf986172009-01-02 07:01:27 +0000300 : Loc(loc), V(v), Attrs(attrs) {}
301 };
302 bool ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
303 PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000304
Victor Hernandezbf170d42010-01-05 22:22:14 +0000305 // Constant Parsing.
306 bool ParseValID(ValID &ID, PerFunctionState *PFS = NULL);
Victor Hernandezbf170d42010-01-05 22:22:14 +0000307 bool ParseGlobalValue(const Type *Ty, Constant *&V);
308 bool ParseGlobalTypeAndValue(Constant *&V);
309 bool ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +0000310 bool ParseMetadataListValue(ValID &ID, PerFunctionState *PFS);
Dan Gohman83448032010-07-14 18:26:50 +0000311 bool ParseMetadataValue(ValID &ID, PerFunctionState *PFS);
Victor Hernandez24e64df2010-01-10 07:14:18 +0000312 bool ParseMDNodeVector(SmallVectorImpl<Value*> &, PerFunctionState *PFS);
Dan Gohman9d072f52010-08-24 02:05:17 +0000313 bool ParseInstructionMetadata(Instruction *Inst, PerFunctionState *PFS);
Victor Hernandezbf170d42010-01-05 22:22:14 +0000314
Chris Lattnerdf986172009-01-02 07:01:27 +0000315 // Function Parsing.
316 struct ArgInfo {
317 LocTy Loc;
318 PATypeHolder Type;
319 unsigned Attrs;
320 std::string Name;
321 ArgInfo(LocTy L, PATypeHolder Ty, unsigned Attr, const std::string &N)
322 : Loc(L), Type(Ty), Attrs(Attr), Name(N) {}
323 };
324 bool ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +0000325 bool &isVarArg, bool inType);
Chris Lattnerdf986172009-01-02 07:01:27 +0000326 bool ParseFunctionHeader(Function *&Fn, bool isDefine);
327 bool ParseFunctionBody(Function &Fn);
328 bool ParseBasicBlock(PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000329
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +0000330 // Instruction Parsing. Each instruction parsing routine can return with a
331 // normal result, an error result, or return having eaten an extra comma.
332 enum InstResult { InstNormal = 0, InstError = 1, InstExtraComma = 2 };
333 int ParseInstruction(Instruction *&Inst, BasicBlock *BB,
334 PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000335 bool ParseCmpPredicate(unsigned &Pred, unsigned Opc);
Misha Brukman9ea40342009-01-02 22:46:48 +0000336
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +0000337 int ParseRet(Instruction *&Inst, BasicBlock *BB, PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000338 bool ParseBr(Instruction *&Inst, PerFunctionState &PFS);
339 bool ParseSwitch(Instruction *&Inst, PerFunctionState &PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +0000340 bool ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000341 bool ParseInvoke(Instruction *&Inst, PerFunctionState &PFS);
Misha Brukman9ea40342009-01-02 22:46:48 +0000342
Chris Lattnere914b592009-01-05 08:24:46 +0000343 bool ParseArithmetic(Instruction *&I, PerFunctionState &PFS, unsigned Opc,
344 unsigned OperandType);
Chris Lattnerdf986172009-01-02 07:01:27 +0000345 bool ParseLogical(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
346 bool ParseCompare(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
347 bool ParseCast(Instruction *&I, PerFunctionState &PFS, unsigned Opc);
348 bool ParseSelect(Instruction *&I, PerFunctionState &PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +0000349 bool ParseVA_Arg(Instruction *&I, PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000350 bool ParseExtractElement(Instruction *&I, PerFunctionState &PFS);
351 bool ParseInsertElement(Instruction *&I, PerFunctionState &PFS);
352 bool ParseShuffleVector(Instruction *&I, PerFunctionState &PFS);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +0000353 int ParsePHI(Instruction *&I, PerFunctionState &PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000354 bool ParseCall(Instruction *&I, PerFunctionState &PFS, bool isTail);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +0000355 int ParseAlloc(Instruction *&I, PerFunctionState &PFS,
Victor Hernandez13ad5aa2009-10-17 00:00:19 +0000356 BasicBlock *BB = 0, bool isAlloca = true);
Victor Hernandez66284e02009-10-24 04:23:03 +0000357 bool ParseFree(Instruction *&I, PerFunctionState &PFS, BasicBlock *BB);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +0000358 int ParseLoad(Instruction *&I, PerFunctionState &PFS, bool isVolatile);
359 int ParseStore(Instruction *&I, PerFunctionState &PFS, bool isVolatile);
Chris Lattnerdf986172009-01-02 07:01:27 +0000360 bool ParseGetResult(Instruction *&I, PerFunctionState &PFS);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +0000361 int ParseGetElementPtr(Instruction *&I, PerFunctionState &PFS);
362 int ParseExtractValue(Instruction *&I, PerFunctionState &PFS);
363 int ParseInsertValue(Instruction *&I, PerFunctionState &PFS);
Chris Lattner09d9ef42009-10-28 03:39:23 +0000364
365 bool ResolveForwardRefBlockAddresses(Function *TheFn,
366 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
367 PerFunctionState *PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +0000368 };
369} // End llvm namespace
370
371#endif