Go to the source code of this file.
|
| | llvm |
| | Compute iterated dominance frontiers using a linear time algorithm.
|
| |
|
| std::unique_ptr< Module > | llvm::parseAssemblyFile (StringRef Filename, SMDiagnostic &Error, LLVMContext &Context, SlotMapping *Slots=nullptr) |
| | This function is the main interface to the LLVM Assembly Parser. More...
|
| |
| std::unique_ptr< Module > | llvm::parseAssemblyString (StringRef AsmString, SMDiagnostic &Error, LLVMContext &Context, SlotMapping *Slots=nullptr) |
| | The function is a secondary interface to the LLVM Assembly Parser. More...
|
| |
| std::unique_ptr< Module > | llvm::parseAssembly (MemoryBufferRef F, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots=nullptr) |
| | parseAssemblyFile and parseAssemblyString are wrappers around this function. More...
|
| |
| bool | llvm::parseAssemblyInto (MemoryBufferRef F, Module &M, SMDiagnostic &Err, SlotMapping *Slots=nullptr) |
| | This function is the low-level interface to the LLVM Assembly Parser. More...
|
| |