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...
|
| |
| 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...
|
| |