|
| std::unique_ptr< Module > | llvm::parseAssemblyFile (StringRef Filename, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots=nullptr, bool UpgradeDebugInfo=true, StringRef DataLayoutString="") |
| | This function is a main interface to the LLVM Assembly Parser. More...
|
| |
| std::unique_ptr< Module > | llvm::parseAssemblyString (StringRef AsmString, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots=nullptr, bool UpgradeDebugInfo=true, StringRef DataLayoutString="") |
| | The function is a secondary interface to the LLVM Assembly Parser. More...
|
| |
| ParsedModuleAndIndex | llvm::parseAssemblyFileWithIndex (StringRef Filename, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots=nullptr, bool UpgradeDebugInfo=true, StringRef DataLayoutString="") |
| | This function is a main interface to the LLVM Assembly Parser. More...
|
| |
| std::unique_ptr< ModuleSummaryIndex > | llvm::parseSummaryIndexAssemblyFile (StringRef Filename, SMDiagnostic &Err) |
| | This function is a main interface to the LLVM Assembly Parser. More...
|
| |
| std::unique_ptr< Module > | llvm::parseAssembly (MemoryBufferRef F, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots=nullptr, bool UpgradeDebugInfo=true, StringRef DataLayoutString="") |
| | parseAssemblyFile and parseAssemblyString are wrappers around this function. More...
|
| |
| ParsedModuleAndIndex | llvm::parseAssemblyWithIndex (MemoryBufferRef F, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots=nullptr, bool UpgradeDebugInfo=true, StringRef DataLayoutString="") |
| | Parse LLVM Assembly including the summary index from a MemoryBuffer. More...
|
| |
| std::unique_ptr< ModuleSummaryIndex > | llvm::parseSummaryIndexAssembly (MemoryBufferRef F, SMDiagnostic &Err) |
| | Parse LLVM Assembly for summary index from a MemoryBuffer. More...
|
| |
| bool | llvm::parseAssemblyInto (MemoryBufferRef F, Module *M, ModuleSummaryIndex *Index, SMDiagnostic &Err, SlotMapping *Slots=nullptr, bool UpgradeDebugInfo=true, StringRef DataLayoutString="") |
| | This function is the low-level interface to the LLVM Assembly Parser. More...
|
| |
| Constant * | llvm::parseConstantValue (StringRef Asm, SMDiagnostic &Err, const Module &M, const SlotMapping *Slots=nullptr) |
| | Parse a type and a constant value in the given string. More...
|
| |
| Type * | llvm::parseType (StringRef Asm, SMDiagnostic &Err, const Module &M, const SlotMapping *Slots=nullptr) |
| | Parse a type in the given string. More...
|
| |
| Type * | llvm::parseTypeAtBeginning (StringRef Asm, unsigned &Read, SMDiagnostic &Err, const Module &M, const SlotMapping *Slots=nullptr) |
| | Parse a string Asm that starts with a type. More...
|
| |