LLVM
8.0.1
|
#include "llvm-c/OptRemarks.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/YAMLTraits.h"
Go to the source code of this file.
Functions | |
LLVMOptRemarkParserRef | LLVMOptRemarkParserCreate (const void *Buf, uint64_t Size) |
Creates a remark parser that can be used to read and parse the buffer located in Buf of size Size . More... | |
LLVMOptRemarkEntry * | LLVMOptRemarkParserGetNext (LLVMOptRemarkParserRef Parser) |
Returns the next remark in the file. More... | |
LLVMBool | LLVMOptRemarkParserHasError (LLVMOptRemarkParserRef Parser) |
Returns 1 if the parser encountered an error while parsing the buffer. More... | |
const char * | LLVMOptRemarkParserGetErrorMessage (LLVMOptRemarkParserRef Parser) |
Returns a null-terminated string containing an error message. More... | |
void | LLVMOptRemarkParserDispose (LLVMOptRemarkParserRef Parser) |
Releases all the resources used by Parser . More... | |