|
LLVM
4.0.0
|
ValID - Represents a reference of a definition of some sort with no type. More...
#include <LLParser.h>
Public Types | |
| enum | { t_LocalID, t_GlobalID, t_LocalName, t_GlobalName, t_APSInt, t_APFloat, t_Null, t_Undef, t_Zero, t_None, t_EmptyArray, t_Constant, t_InlineAsm, t_ConstantStruct, t_PackedConstantStruct } |
Public Member Functions | |
| ValID ()=default | |
| ValID (const ValID &RHS) | |
| bool | operator< (const ValID &RHS) const |
Public Attributes | |
| enum llvm::ValID:: { ... } | Kind = t_LocalID |
| LLLexer::LocTy | Loc |
| unsigned | UIntVal |
| FunctionType * | FTy = nullptr |
| std::string | StrVal |
| std::string | StrVal2 |
| APSInt | APSIntVal |
| APFloat | APFloatVal {0.0} |
| Constant * | ConstantVal |
| std::unique_ptr< Constant *[]> | ConstantStructElts |
ValID - Represents a reference of a definition of some sort with no type.
There are several cases where we have to parse the value but where the type can depend on later context. This may either be a numeric reference or a symbolic (var) reference. This is just a discriminated union.
Definition at line 47 of file LLParser.h.
| anonymous enum |
| Enumerator | |
|---|---|
| t_LocalID | |
| t_GlobalID | |
| t_LocalName | |
| t_GlobalName | |
| t_APSInt | |
| t_APFloat | |
| t_Null | |
| t_Undef | |
| t_Zero | |
| t_None | |
| t_EmptyArray | |
| t_Constant | |
| t_InlineAsm | |
| t_ConstantStruct | |
| t_PackedConstantStruct | |
Definition at line 48 of file LLParser.h.
|
default |
Definition at line 70 of file LLParser.h.
References assert(), and ConstantStructElts.
Definition at line 77 of file LLParser.h.
References assert(), Kind, StrVal, t_ConstantStruct, t_GlobalID, t_GlobalName, t_LocalID, t_LocalName, t_PackedConstantStruct, and UIntVal.
| APFloat llvm::ValID::APFloatVal {0.0} |
Definition at line 65 of file LLParser.h.
| APSInt llvm::ValID::APSIntVal |
Definition at line 64 of file LLParser.h.
| std::unique_ptr<Constant *[]> llvm::ValID::ConstantStructElts |
Definition at line 67 of file LLParser.h.
Referenced by ValID().
| Constant* llvm::ValID::ConstantVal |
Definition at line 66 of file LLParser.h.
| FunctionType* llvm::ValID::FTy = nullptr |
Definition at line 62 of file LLParser.h.
| enum { ... } llvm::ValID::Kind |
Referenced by operator<().
| LLLexer::LocTy llvm::ValID::Loc |
Definition at line 60 of file LLParser.h.
| std::string llvm::ValID::StrVal |
Definition at line 63 of file LLParser.h.
Referenced by operator<().
| std::string llvm::ValID::StrVal2 |
Definition at line 63 of file LLParser.h.
| unsigned llvm::ValID::UIntVal |
Definition at line 61 of file LLParser.h.
Referenced by operator<().
1.8.6