LLVM 19.0.0git
LLParser.h
Go to the documentation of this file.
1//===-- LLParser.h - Parser Class -------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the parser class for .ll files.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_ASMPARSER_LLPARSER_H
14#define LLVM_ASMPARSER_LLPARSER_H
15
16#include "LLLexer.h"
17#include "llvm/ADT/StringMap.h"
20#include "llvm/IR/Attributes.h"
21#include "llvm/IR/FMF.h"
24#include "llvm/Support/ModRef.h"
25#include <map>
26#include <optional>
27
28namespace llvm {
29 class Module;
30 class ConstantRange;
31 class FunctionType;
32 class GlobalObject;
33 class SMDiagnostic;
34 class SMLoc;
35 class SourceMgr;
36 class Type;
37 struct MaybeAlign;
38 class Function;
39 class Value;
40 class BasicBlock;
41 class Instruction;
42 class Constant;
43 class GlobalValue;
44 class Comdat;
45 class MDString;
46 class MDNode;
47 struct SlotMapping;
48
49 /// ValID - Represents a reference of a definition of some sort with no type.
50 /// There are several cases where we have to parse the value but where the
51 /// type can depend on later context. This may either be a numeric reference
52 /// or a symbolic (%var) reference. This is just a discriminated union.
53 struct ValID {
54 enum {
55 t_LocalID, // ID in UIntVal.
56 t_GlobalID, // ID in UIntVal.
57 t_LocalName, // Name in StrVal.
58 t_GlobalName, // Name in StrVal.
59 t_APSInt, // Value in APSIntVal.
60 t_APFloat, // Value in APFloatVal.
61 t_Null, // No value.
62 t_Undef, // No value.
63 t_Zero, // No value.
64 t_None, // No value.
65 t_Poison, // No value.
66 t_EmptyArray, // No value: []
67 t_Constant, // Value in ConstantVal.
68 t_ConstantSplat, // Value in ConstantVal.
69 t_InlineAsm, // Value in FTy/StrVal/StrVal2/UIntVal.
70 t_ConstantStruct, // Value in ConstantStructElts.
71 t_PackedConstantStruct // Value in ConstantStructElts.
73
75 unsigned UIntVal;
76 FunctionType *FTy = nullptr;
77 std::string StrVal, StrVal2;
81 std::unique_ptr<Constant *[]> ConstantStructElts;
82 bool NoCFI = false;
83
84 ValID() = default;
85 ValID(const ValID &RHS)
89 NoCFI(RHS.NoCFI) {
90 assert(!RHS.ConstantStructElts);
91 }
92
93 bool operator<(const ValID &RHS) const {
94 assert(Kind == RHS.Kind && "Comparing ValIDs of different kinds");
95 if (Kind == t_LocalID || Kind == t_GlobalID)
96 return UIntVal < RHS.UIntVal;
99 "Ordering not defined for this ValID kind yet");
100 return StrVal < RHS.StrVal;
101 }
102 };
103
104 class LLParser {
105 public:
107 private:
108 LLVMContext &Context;
109 // Lexer to determine whether to use opaque pointers or not.
110 LLLexer OPLex;
111 LLLexer Lex;
112 // Module being parsed, null if we are only parsing summary index.
113 Module *M;
114 // Summary index being parsed, null if we are only parsing Module.
116 SlotMapping *Slots;
117
118 SmallVector<Instruction*, 64> InstsWithTBAATag;
119
120 /// DIAssignID metadata does not support temporary RAUW so we cannot use
121 /// the normal metadata forward reference resolution method. Instead,
122 /// non-temporary DIAssignID are attached to instructions (recorded here)
123 /// then replaced later.
124 DenseMap<MDNode *, SmallVector<Instruction *, 2>> TempDIAssignIDAttachments;
125
126 // Type resolution handling data structures. The location is set when we
127 // have processed a use of the type but not a definition yet.
129 std::map<unsigned, std::pair<Type*, LocTy> > NumberedTypes;
130
131 std::map<unsigned, TrackingMDNodeRef> NumberedMetadata;
132 std::map<unsigned, std::pair<TempMDTuple, LocTy>> ForwardRefMDNodes;
133
134 // Global Value reference information.
135 std::map<std::string, std::pair<GlobalValue*, LocTy> > ForwardRefVals;
136 std::map<unsigned, std::pair<GlobalValue*, LocTy> > ForwardRefValIDs;
138
139 // Comdat forward reference information.
140 std::map<std::string, LocTy> ForwardRefComdats;
141
142 // References to blockaddress. The key is the function ValID, the value is
143 // a list of references to blocks in that function.
144 std::map<ValID, std::map<ValID, GlobalValue *>> ForwardRefBlockAddresses;
145 class PerFunctionState;
146 /// Reference to per-function state to allow basic blocks to be
147 /// forward-referenced by blockaddress instructions within the same
148 /// function.
149 PerFunctionState *BlockAddressPFS;
150
151 // References to dso_local_equivalent. The key is the global's ValID, the
152 // value is a placeholder value that will be replaced. Note there are two
153 // maps for tracking ValIDs that are GlobalNames and ValIDs that are
154 // GlobalIDs. These are needed because "operator<" doesn't discriminate
155 // between the two.
156 std::map<ValID, GlobalValue *> ForwardRefDSOLocalEquivalentNames;
157 std::map<ValID, GlobalValue *> ForwardRefDSOLocalEquivalentIDs;
158
159 // Attribute builder reference information.
160 std::map<Value*, std::vector<unsigned> > ForwardRefAttrGroups;
161 std::map<unsigned, AttrBuilder> NumberedAttrBuilders;
162
163 // Summary global value reference information.
164 std::map<unsigned, std::vector<std::pair<ValueInfo *, LocTy>>>
165 ForwardRefValueInfos;
166 std::map<unsigned, std::vector<std::pair<AliasSummary *, LocTy>>>
167 ForwardRefAliasees;
168 std::vector<ValueInfo> NumberedValueInfos;
169
170 // Summary type id reference information.
171 std::map<unsigned, std::vector<std::pair<GlobalValue::GUID *, LocTy>>>
172 ForwardRefTypeIds;
173
174 // Map of module ID to path.
175 std::map<unsigned, StringRef> ModuleIdMap;
176
177 /// Only the llvm-as tool may set this to false to bypass
178 /// UpgradeDebuginfo so it can generate broken bitcode.
179 bool UpgradeDebugInfo;
180
181 bool SeenNewDbgInfoFormat = false;
182 bool SeenOldDbgInfoFormat = false;
183
184 std::string SourceFileName;
185
186 public:
189 SlotMapping *Slots = nullptr)
190 : Context(Context), OPLex(F, SM, Err, Context),
191 Lex(F, SM, Err, Context), M(M), Index(Index), Slots(Slots),
192 BlockAddressPFS(nullptr) {}
193 bool Run(
194 bool UpgradeDebugInfo,
195 DataLayoutCallbackTy DataLayoutCallback = [](StringRef, StringRef) {
196 return std::nullopt;
197 });
198
199 bool parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots);
200
201 bool parseTypeAtBeginning(Type *&Ty, unsigned &Read,
202 const SlotMapping *Slots);
203
205
206 private:
207 bool error(LocTy L, const Twine &Msg) const { return Lex.Error(L, Msg); }
208 bool tokError(const Twine &Msg) const { return error(Lex.getLoc(), Msg); }
209
210 bool checkValueID(LocTy L, StringRef Kind, StringRef Prefix,
211 unsigned NextID, unsigned ID) const;
212
213 /// Restore the internal name and slot mappings using the mappings that
214 /// were created at an earlier parsing stage.
215 void restoreParsingState(const SlotMapping *Slots);
216
217 /// getGlobalVal - Get a value with the specified name or ID, creating a
218 /// forward reference record if needed. This can return null if the value
219 /// exists but does not have the right type.
220 GlobalValue *getGlobalVal(const std::string &N, Type *Ty, LocTy Loc);
221 GlobalValue *getGlobalVal(unsigned ID, Type *Ty, LocTy Loc);
222
223 /// Get a Comdat with the specified name, creating a forward reference
224 /// record if needed.
225 Comdat *getComdat(const std::string &Name, LocTy Loc);
226
227 // Helper Routines.
228 bool parseToken(lltok::Kind T, const char *ErrMsg);
229 bool EatIfPresent(lltok::Kind T) {
230 if (Lex.getKind() != T) return false;
231 Lex.Lex();
232 return true;
233 }
234
235 FastMathFlags EatFastMathFlagsIfPresent() {
236 FastMathFlags FMF;
237 while (true)
238 switch (Lex.getKind()) {
239 case lltok::kw_fast: FMF.setFast(); Lex.Lex(); continue;
240 case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
241 case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
242 case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
243 case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
245 FMF.setAllowContract(true);
246 Lex.Lex();
247 continue;
248 case lltok::kw_reassoc: FMF.setAllowReassoc(); Lex.Lex(); continue;
249 case lltok::kw_afn: FMF.setApproxFunc(); Lex.Lex(); continue;
250 default: return FMF;
251 }
252 return FMF;
253 }
254
255 bool parseOptionalToken(lltok::Kind T, bool &Present,
256 LocTy *Loc = nullptr) {
257 if (Lex.getKind() != T) {
258 Present = false;
259 } else {
260 if (Loc)
261 *Loc = Lex.getLoc();
262 Lex.Lex();
263 Present = true;
264 }
265 return false;
266 }
267 bool parseStringConstant(std::string &Result);
268 bool parseUInt32(unsigned &Val);
269 bool parseUInt32(unsigned &Val, LocTy &Loc) {
270 Loc = Lex.getLoc();
271 return parseUInt32(Val);
272 }
273 bool parseUInt64(uint64_t &Val);
274 bool parseUInt64(uint64_t &Val, LocTy &Loc) {
275 Loc = Lex.getLoc();
276 return parseUInt64(Val);
277 }
278 bool parseFlag(unsigned &Val);
279
280 bool parseStringAttribute(AttrBuilder &B);
281
282 bool parseTLSModel(GlobalVariable::ThreadLocalMode &TLM);
283 bool parseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM);
284 bool parseOptionalUnnamedAddr(GlobalVariable::UnnamedAddr &UnnamedAddr);
285 bool parseOptionalAddrSpace(unsigned &AddrSpace, unsigned DefaultAS = 0);
286 bool parseOptionalProgramAddrSpace(unsigned &AddrSpace) {
287 return parseOptionalAddrSpace(
288 AddrSpace, M->getDataLayout().getProgramAddressSpace());
289 };
290 bool parseEnumAttribute(Attribute::AttrKind Attr, AttrBuilder &B,
291 bool InAttrGroup);
292 bool parseOptionalParamOrReturnAttrs(AttrBuilder &B, bool IsParam);
293 bool parseOptionalParamAttrs(AttrBuilder &B) {
294 return parseOptionalParamOrReturnAttrs(B, true);
295 }
296 bool parseOptionalReturnAttrs(AttrBuilder &B) {
297 return parseOptionalParamOrReturnAttrs(B, false);
298 }
299 bool parseOptionalLinkage(unsigned &Res, bool &HasLinkage,
300 unsigned &Visibility, unsigned &DLLStorageClass,
301 bool &DSOLocal);
302 void parseOptionalDSOLocal(bool &DSOLocal);
303 void parseOptionalVisibility(unsigned &Res);
304 void parseOptionalDLLStorageClass(unsigned &Res);
305 bool parseOptionalCallingConv(unsigned &CC);
306 bool parseOptionalAlignment(MaybeAlign &Alignment,
307 bool AllowParens = false);
308 bool parseOptionalCodeModel(CodeModel::Model &model);
309 bool parseOptionalDerefAttrBytes(lltok::Kind AttrKind, uint64_t &Bytes);
310 bool parseOptionalUWTableKind(UWTableKind &Kind);
311 bool parseAllocKind(AllocFnKind &Kind);
312 std::optional<MemoryEffects> parseMemoryAttr();
313 unsigned parseNoFPClassAttr();
314 bool parseScopeAndOrdering(bool IsAtomic, SyncScope::ID &SSID,
315 AtomicOrdering &Ordering);
316 bool parseScope(SyncScope::ID &SSID);
317 bool parseOrdering(AtomicOrdering &Ordering);
318 bool parseOptionalStackAlignment(unsigned &Alignment);
319 bool parseOptionalCommaAlign(MaybeAlign &Alignment, bool &AteExtraComma);
320 bool parseOptionalCommaAddrSpace(unsigned &AddrSpace, LocTy &Loc,
321 bool &AteExtraComma);
322 bool parseAllocSizeArguments(unsigned &BaseSizeArg,
323 std::optional<unsigned> &HowManyArg);
324 bool parseVScaleRangeArguments(unsigned &MinValue, unsigned &MaxValue);
325 bool parseIndexList(SmallVectorImpl<unsigned> &Indices,
326 bool &AteExtraComma);
327 bool parseIndexList(SmallVectorImpl<unsigned> &Indices) {
328 bool AteExtraComma;
329 if (parseIndexList(Indices, AteExtraComma))
330 return true;
331 if (AteExtraComma)
332 return tokError("expected index");
333 return false;
334 }
335
336 // Top-Level Entities
337 bool parseTopLevelEntities();
338 void dropUnknownMetadataReferences();
339 bool validateEndOfModule(bool UpgradeDebugInfo);
340 bool validateEndOfIndex();
341 bool parseTargetDefinitions(DataLayoutCallbackTy DataLayoutCallback);
342 bool parseTargetDefinition(std::string &TentativeDLStr, LocTy &DLStrLoc);
343 bool parseModuleAsm();
344 bool parseSourceFileName();
345 bool parseUnnamedType();
346 bool parseNamedType();
347 bool parseDeclare();
348 bool parseDefine();
349
350 bool parseGlobalType(bool &IsConstant);
351 bool parseUnnamedGlobal();
352 bool parseNamedGlobal();
353 bool parseGlobal(const std::string &Name, unsigned NameID, LocTy NameLoc,
354 unsigned Linkage, bool HasLinkage, unsigned Visibility,
355 unsigned DLLStorageClass, bool DSOLocal,
357 GlobalVariable::UnnamedAddr UnnamedAddr);
358 bool parseAliasOrIFunc(const std::string &Name, unsigned NameID,
359 LocTy NameLoc, unsigned L, unsigned Visibility,
360 unsigned DLLStorageClass, bool DSOLocal,
362 GlobalVariable::UnnamedAddr UnnamedAddr);
363 bool parseComdat();
364 bool parseStandaloneMetadata();
365 bool parseNamedMetadata();
366 bool parseMDString(MDString *&Result);
367 bool parseMDNodeID(MDNode *&Result);
368 bool parseUnnamedAttrGrp();
369 bool parseFnAttributeValuePairs(AttrBuilder &B,
370 std::vector<unsigned> &FwdRefAttrGrps,
371 bool inAttrGrp, LocTy &BuiltinLoc);
372 bool parseRangeAttr(AttrBuilder &B);
373 bool parseRequiredTypeAttr(AttrBuilder &B, lltok::Kind AttrToken,
374 Attribute::AttrKind AttrKind);
375
376 // Module Summary Index Parsing.
377 bool skipModuleSummaryEntry();
378 bool parseSummaryEntry();
379 bool parseModuleEntry(unsigned ID);
380 bool parseModuleReference(StringRef &ModulePath);
381 bool parseGVReference(ValueInfo &VI, unsigned &GVId);
382 bool parseSummaryIndexFlags();
383 bool parseBlockCount();
384 bool parseGVEntry(unsigned ID);
385 bool parseFunctionSummary(std::string Name, GlobalValue::GUID, unsigned ID);
386 bool parseVariableSummary(std::string Name, GlobalValue::GUID, unsigned ID);
387 bool parseAliasSummary(std::string Name, GlobalValue::GUID, unsigned ID);
388 bool parseGVFlags(GlobalValueSummary::GVFlags &GVFlags);
389 bool parseGVarFlags(GlobalVarSummary::GVarFlags &GVarFlags);
390 bool parseOptionalFFlags(FunctionSummary::FFlags &FFlags);
391 bool parseOptionalCalls(std::vector<FunctionSummary::EdgeTy> &Calls);
392 bool parseHotness(CalleeInfo::HotnessType &Hotness);
393 bool parseOptionalTypeIdInfo(FunctionSummary::TypeIdInfo &TypeIdInfo);
394 bool parseTypeTests(std::vector<GlobalValue::GUID> &TypeTests);
395 bool parseVFuncIdList(lltok::Kind Kind,
396 std::vector<FunctionSummary::VFuncId> &VFuncIdList);
397 bool parseConstVCallList(
398 lltok::Kind Kind,
399 std::vector<FunctionSummary::ConstVCall> &ConstVCallList);
400 using IdToIndexMapType =
401 std::map<unsigned, std::vector<std::pair<unsigned, LocTy>>>;
402 bool parseConstVCall(FunctionSummary::ConstVCall &ConstVCall,
403 IdToIndexMapType &IdToIndexMap, unsigned Index);
404 bool parseVFuncId(FunctionSummary::VFuncId &VFuncId,
405 IdToIndexMapType &IdToIndexMap, unsigned Index);
406 bool parseOptionalVTableFuncs(VTableFuncList &VTableFuncs);
407 bool parseOptionalParamAccesses(
408 std::vector<FunctionSummary::ParamAccess> &Params);
409 bool parseParamNo(uint64_t &ParamNo);
410 using IdLocListType = std::vector<std::pair<unsigned, LocTy>>;
411 bool parseParamAccess(FunctionSummary::ParamAccess &Param,
412 IdLocListType &IdLocList);
413 bool parseParamAccessCall(FunctionSummary::ParamAccess::Call &Call,
414 IdLocListType &IdLocList);
415 bool parseParamAccessOffset(ConstantRange &Range);
416 bool parseOptionalRefs(std::vector<ValueInfo> &Refs);
417 bool parseTypeIdEntry(unsigned ID);
418 bool parseTypeIdSummary(TypeIdSummary &TIS);
419 bool parseTypeIdCompatibleVtableEntry(unsigned ID);
420 bool parseTypeTestResolution(TypeTestResolution &TTRes);
421 bool parseOptionalWpdResolutions(
422 std::map<uint64_t, WholeProgramDevirtResolution> &WPDResMap);
423 bool parseWpdRes(WholeProgramDevirtResolution &WPDRes);
424 bool parseOptionalResByArg(
425 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>
426 &ResByArg);
427 bool parseArgs(std::vector<uint64_t> &Args);
428 bool addGlobalValueToIndex(std::string Name, GlobalValue::GUID,
429 GlobalValue::LinkageTypes Linkage, unsigned ID,
430 std::unique_ptr<GlobalValueSummary> Summary,
431 LocTy Loc);
432 bool parseOptionalAllocs(std::vector<AllocInfo> &Allocs);
433 bool parseMemProfs(std::vector<MIBInfo> &MIBs);
434 bool parseAllocType(uint8_t &AllocType);
435 bool parseOptionalCallsites(std::vector<CallsiteInfo> &Callsites);
436
437 // Type Parsing.
438 bool parseType(Type *&Result, const Twine &Msg, bool AllowVoid = false);
439 bool parseType(Type *&Result, bool AllowVoid = false) {
440 return parseType(Result, "expected type", AllowVoid);
441 }
442 bool parseType(Type *&Result, const Twine &Msg, LocTy &Loc,
443 bool AllowVoid = false) {
444 Loc = Lex.getLoc();
445 return parseType(Result, Msg, AllowVoid);
446 }
447 bool parseType(Type *&Result, LocTy &Loc, bool AllowVoid = false) {
448 Loc = Lex.getLoc();
449 return parseType(Result, AllowVoid);
450 }
451 bool parseAnonStructType(Type *&Result, bool Packed);
452 bool parseStructBody(SmallVectorImpl<Type *> &Body);
453 bool parseStructDefinition(SMLoc TypeLoc, StringRef Name,
454 std::pair<Type *, LocTy> &Entry,
455 Type *&ResultTy);
456
457 bool parseArrayVectorType(Type *&Result, bool IsVector);
458 bool parseFunctionType(Type *&Result);
459 bool parseTargetExtType(Type *&Result);
460
461 // Function Semantic Analysis.
462 class PerFunctionState {
463 LLParser &P;
464 Function &F;
465 std::map<std::string, std::pair<Value*, LocTy> > ForwardRefVals;
466 std::map<unsigned, std::pair<Value*, LocTy> > ForwardRefValIDs;
467 NumberedValues<Value *> NumberedVals;
468
469 /// FunctionNumber - If this is an unnamed function, this is the slot
470 /// number of it, otherwise it is -1.
471 int FunctionNumber;
472
473 public:
474 PerFunctionState(LLParser &p, Function &f, int functionNumber,
475 ArrayRef<unsigned> UnnamedArgNums);
476 ~PerFunctionState();
477
478 Function &getFunction() const { return F; }
479
480 bool finishFunction();
481
482 /// GetVal - Get a value with the specified name or ID, creating a
483 /// forward reference record if needed. This can return null if the value
484 /// exists but does not have the right type.
485 Value *getVal(const std::string &Name, Type *Ty, LocTy Loc);
486 Value *getVal(unsigned ID, Type *Ty, LocTy Loc);
487
488 /// setInstName - After an instruction is parsed and inserted into its
489 /// basic block, this installs its name.
490 bool setInstName(int NameID, const std::string &NameStr, LocTy NameLoc,
491 Instruction *Inst);
492
493 /// GetBB - Get a basic block with the specified name or ID, creating a
494 /// forward reference record if needed. This can return null if the value
495 /// is not a BasicBlock.
496 BasicBlock *getBB(const std::string &Name, LocTy Loc);
497 BasicBlock *getBB(unsigned ID, LocTy Loc);
498
499 /// DefineBB - Define the specified basic block, which is either named or
500 /// unnamed. If there is an error, this returns null otherwise it returns
501 /// the block being defined.
502 BasicBlock *defineBB(const std::string &Name, int NameID, LocTy Loc);
503
504 bool resolveForwardRefBlockAddresses();
505 };
506
507 bool convertValIDToValue(Type *Ty, ValID &ID, Value *&V,
508 PerFunctionState *PFS);
509
510 Value *checkValidVariableType(LocTy Loc, const Twine &Name, Type *Ty,
511 Value *Val);
512
513 bool parseConstantValue(Type *Ty, Constant *&C);
514 bool parseValue(Type *Ty, Value *&V, PerFunctionState *PFS);
515 bool parseValue(Type *Ty, Value *&V, PerFunctionState &PFS) {
516 return parseValue(Ty, V, &PFS);
517 }
518
519 bool parseValue(Type *Ty, Value *&V, LocTy &Loc, PerFunctionState &PFS) {
520 Loc = Lex.getLoc();
521 return parseValue(Ty, V, &PFS);
522 }
523
524 bool parseTypeAndValue(Value *&V, PerFunctionState *PFS);
525 bool parseTypeAndValue(Value *&V, PerFunctionState &PFS) {
526 return parseTypeAndValue(V, &PFS);
527 }
528 bool parseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) {
529 Loc = Lex.getLoc();
530 return parseTypeAndValue(V, PFS);
531 }
532 bool parseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
533 PerFunctionState &PFS);
534 bool parseTypeAndBasicBlock(BasicBlock *&BB, PerFunctionState &PFS) {
535 LocTy Loc;
536 return parseTypeAndBasicBlock(BB, Loc, PFS);
537 }
538
539 struct ParamInfo {
540 LocTy Loc;
541 Value *V;
542 AttributeSet Attrs;
543 ParamInfo(LocTy loc, Value *v, AttributeSet attrs)
544 : Loc(loc), V(v), Attrs(attrs) {}
545 };
546 bool parseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
547 PerFunctionState &PFS, bool IsMustTailCall = false,
548 bool InVarArgsFunc = false);
549
550 bool
551 parseOptionalOperandBundles(SmallVectorImpl<OperandBundleDef> &BundleList,
552 PerFunctionState &PFS);
553
554 bool parseExceptionArgs(SmallVectorImpl<Value *> &Args,
555 PerFunctionState &PFS);
556
557 bool resolveFunctionType(Type *RetType,
558 const SmallVector<ParamInfo, 16> &ArgList,
559 FunctionType *&FuncTy);
560
561 // Constant Parsing.
562 bool parseValID(ValID &ID, PerFunctionState *PFS,
563 Type *ExpectedTy = nullptr);
564 bool parseGlobalValue(Type *Ty, Constant *&C);
565 bool parseGlobalTypeAndValue(Constant *&V);
566 bool parseGlobalValueVector(SmallVectorImpl<Constant *> &Elts);
567 bool parseOptionalComdat(StringRef GlobalName, Comdat *&C);
568 bool parseSanitizer(GlobalVariable *GV);
569 bool parseMetadataAsValue(Value *&V, PerFunctionState &PFS);
570 bool parseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
571 PerFunctionState *PFS);
572 bool parseDIArgList(Metadata *&MD, PerFunctionState *PFS);
573 bool parseMetadata(Metadata *&MD, PerFunctionState *PFS);
574 bool parseMDTuple(MDNode *&MD, bool IsDistinct = false);
575 bool parseMDNode(MDNode *&N);
576 bool parseMDNodeTail(MDNode *&N);
577 bool parseMDNodeVector(SmallVectorImpl<Metadata *> &Elts);
578 bool parseMetadataAttachment(unsigned &Kind, MDNode *&MD);
579 bool parseDebugRecord(DbgRecord *&DR, PerFunctionState &PFS);
580 bool parseInstructionMetadata(Instruction &Inst);
581 bool parseGlobalObjectMetadataAttachment(GlobalObject &GO);
582 bool parseOptionalFunctionMetadata(Function &F);
583
584 template <class FieldTy>
585 bool parseMDField(LocTy Loc, StringRef Name, FieldTy &Result);
586 template <class FieldTy> bool parseMDField(StringRef Name, FieldTy &Result);
587 template <class ParserTy> bool parseMDFieldsImplBody(ParserTy ParseField);
588 template <class ParserTy>
589 bool parseMDFieldsImpl(ParserTy ParseField, LocTy &ClosingLoc);
590 bool parseSpecializedMDNode(MDNode *&N, bool IsDistinct = false);
591
592#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
593 bool parse##CLASS(MDNode *&Result, bool IsDistinct);
594#include "llvm/IR/Metadata.def"
595
596 // Function Parsing.
597 struct ArgInfo {
598 LocTy Loc;
599 Type *Ty;
600 AttributeSet Attrs;
601 std::string Name;
602 ArgInfo(LocTy L, Type *ty, AttributeSet Attr, const std::string &N)
603 : Loc(L), Ty(ty), Attrs(Attr), Name(N) {}
604 };
605 bool parseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
606 SmallVectorImpl<unsigned> &UnnamedArgNums,
607 bool &IsVarArg);
608 bool parseFunctionHeader(Function *&Fn, bool IsDefine,
609 unsigned &FunctionNumber,
610 SmallVectorImpl<unsigned> &UnnamedArgNums);
611 bool parseFunctionBody(Function &Fn, unsigned FunctionNumber,
612 ArrayRef<unsigned> UnnamedArgNums);
613 bool parseBasicBlock(PerFunctionState &PFS);
614
615 enum TailCallType { TCT_None, TCT_Tail, TCT_MustTail };
616
617 // Instruction Parsing. Each instruction parsing routine can return with a
618 // normal result, an error result, or return having eaten an extra comma.
619 enum InstResult { InstNormal = 0, InstError = 1, InstExtraComma = 2 };
620 int parseInstruction(Instruction *&Inst, BasicBlock *BB,
621 PerFunctionState &PFS);
622 bool parseCmpPredicate(unsigned &P, unsigned Opc);
623
624 bool parseRet(Instruction *&Inst, BasicBlock *BB, PerFunctionState &PFS);
625 bool parseBr(Instruction *&Inst, PerFunctionState &PFS);
626 bool parseSwitch(Instruction *&Inst, PerFunctionState &PFS);
627 bool parseIndirectBr(Instruction *&Inst, PerFunctionState &PFS);
628 bool parseInvoke(Instruction *&Inst, PerFunctionState &PFS);
629 bool parseResume(Instruction *&Inst, PerFunctionState &PFS);
630 bool parseCleanupRet(Instruction *&Inst, PerFunctionState &PFS);
631 bool parseCatchRet(Instruction *&Inst, PerFunctionState &PFS);
632 bool parseCatchSwitch(Instruction *&Inst, PerFunctionState &PFS);
633 bool parseCatchPad(Instruction *&Inst, PerFunctionState &PFS);
634 bool parseCleanupPad(Instruction *&Inst, PerFunctionState &PFS);
635 bool parseCallBr(Instruction *&Inst, PerFunctionState &PFS);
636
637 bool parseUnaryOp(Instruction *&Inst, PerFunctionState &PFS, unsigned Opc,
638 bool IsFP);
639 bool parseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
640 unsigned Opc, bool IsFP);
641 bool parseLogical(Instruction *&Inst, PerFunctionState &PFS, unsigned Opc);
642 bool parseCompare(Instruction *&Inst, PerFunctionState &PFS, unsigned Opc);
643 bool parseCast(Instruction *&Inst, PerFunctionState &PFS, unsigned Opc);
644 bool parseSelect(Instruction *&Inst, PerFunctionState &PFS);
645 bool parseVAArg(Instruction *&Inst, PerFunctionState &PFS);
646 bool parseExtractElement(Instruction *&Inst, PerFunctionState &PFS);
647 bool parseInsertElement(Instruction *&Inst, PerFunctionState &PFS);
648 bool parseShuffleVector(Instruction *&Inst, PerFunctionState &PFS);
649 int parsePHI(Instruction *&Inst, PerFunctionState &PFS);
650 bool parseLandingPad(Instruction *&Inst, PerFunctionState &PFS);
651 bool parseCall(Instruction *&Inst, PerFunctionState &PFS,
653 int parseAlloc(Instruction *&Inst, PerFunctionState &PFS);
654 int parseLoad(Instruction *&Inst, PerFunctionState &PFS);
655 int parseStore(Instruction *&Inst, PerFunctionState &PFS);
656 int parseCmpXchg(Instruction *&Inst, PerFunctionState &PFS);
657 int parseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS);
658 int parseFence(Instruction *&Inst, PerFunctionState &PFS);
659 int parseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS);
660 int parseExtractValue(Instruction *&Inst, PerFunctionState &PFS);
661 int parseInsertValue(Instruction *&Inst, PerFunctionState &PFS);
662 bool parseFreeze(Instruction *&I, PerFunctionState &PFS);
663
664 // Use-list order directives.
665 bool parseUseListOrder(PerFunctionState *PFS = nullptr);
666 bool parseUseListOrderBB();
667 bool parseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes);
668 bool sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes, SMLoc Loc);
669 };
670} // End llvm namespace
671
672#endif
This file defines the StringMap class.
This file contains the simple types necessary to represent the attributes associated with functions a...
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
RelocType Type
Definition: COFFYAML.cpp:391
std::string Name
uint32_t Index
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
Machine Check Debug Module
AllocType
ModuleSummaryIndex.h This file contains the declarations the classes that hold the module index and s...
LLVMContext & Context
#define P(N)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
#define error(X)
Value * RHS
An arbitrary precision integer that knows its signedness.
Definition: APSInt.h:23
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
Definition: Attributes.h:85
This is an important base class in LLVM.
Definition: Constant.h:41
Class to represent function types.
Definition: DerivedTypes.h:103
uint64_t GUID
Declare a type to represent a global unique identifier for a global value.
Definition: GlobalValue.h:586
LinkageTypes
An enumeration for the kinds of linkage for global values.
Definition: GlobalValue.h:51
lltok::Kind Lex()
Definition: LLLexer.h:52
lltok::Kind getKind() const
Definition: LLLexer.h:58
bool Error(LocTy ErrorLoc, const Twine &Msg) const
Definition: LLLexer.cpp:28
LocTy getLoc() const
Definition: LLLexer.h:57
LLLexer::LocTy LocTy
Definition: LLParser.h:106
LLVMContext & getContext()
Definition: LLParser.h:204
LLParser(StringRef F, SourceMgr &SM, SMDiagnostic &Err, Module *M, ModuleSummaryIndex *Index, LLVMContext &Context, SlotMapping *Slots=nullptr)
Definition: LLParser.h:187
bool parseTypeAtBeginning(Type *&Ty, unsigned &Read, const SlotMapping *Slots)
Definition: LLParser.cpp:116
bool parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots)
Definition: LLParser.cpp:103
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
Class to hold module path string table and global value map, and encapsulate methods for operating on...
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
Mapping from value ID to value, which also remembers what the next unused ID is.
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition: SourceMgr.h:281
Represents a location in source code.
Definition: SMLoc.h:23
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
This owns the files read by a parser, handles include stacks, and handles diagnostic wrangling.
Definition: SourceMgr.h:31
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition: StringMap.h:128
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
An efficient, type-erasing, non-owning reference to a callable.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
@ BasicBlock
Various leaf nodes.
Definition: ISDOpcodes.h:71
@ kw_reassoc
Definition: LLToken.h:107
@ kw_contract
Definition: LLToken.h:106
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
AllocFnKind
Definition: Attributes.h:48
std::vector< VirtFuncOffset > VTableFuncList
List of functions referenced by a particular vtable definition.
UWTableKind
Definition: CodeGen.h:120
AtomicOrdering
Atomic ordering for LLVM's memory model.
llvm::function_ref< std::optional< std::string >(StringRef, StringRef)> DataLayoutCallbackTy
Definition: Parser.h:33
#define N
This struct contains the mappings from the slot numbers to unnamed metadata nodes,...
Definition: SlotMapping.h:33
ValID - Represents a reference of a definition of some sort with no type.
Definition: LLParser.h:53
bool NoCFI
Definition: LLParser.h:82
unsigned UIntVal
Definition: LLParser.h:75
APFloat APFloatVal
Definition: LLParser.h:79
@ t_Constant
Definition: LLParser.h:67
@ t_PackedConstantStruct
Definition: LLParser.h:71
@ t_GlobalID
Definition: LLParser.h:56
@ t_EmptyArray
Definition: LLParser.h:66
@ t_GlobalName
Definition: LLParser.h:58
@ t_ConstantStruct
Definition: LLParser.h:70
@ t_LocalName
Definition: LLParser.h:57
@ t_ConstantSplat
Definition: LLParser.h:68
@ t_InlineAsm
Definition: LLParser.h:69
ValID(const ValID &RHS)
Definition: LLParser.h:85
Constant * ConstantVal
Definition: LLParser.h:80
FunctionType * FTy
Definition: LLParser.h:76
std::unique_ptr< Constant *[]> ConstantStructElts
Definition: LLParser.h:81
bool operator<(const ValID &RHS) const
Definition: LLParser.h:93
APSInt APSIntVal
Definition: LLParser.h:78
LLLexer::LocTy Loc
Definition: LLParser.h:74
enum llvm::ValID::@36 Kind
ValID()=default
std::string StrVal
Definition: LLParser.h:77
std::string StrVal2
Definition: LLParser.h:77