|
const char * | LLVMRemarkStringGetData (LLVMRemarkStringRef String) |
| Returns the buffer holding the string.
|
|
uint32_t | LLVMRemarkStringGetLen (LLVMRemarkStringRef String) |
| Returns the size of the string.
|
|
LLVMRemarkStringRef | LLVMRemarkDebugLocGetSourceFilePath (LLVMRemarkDebugLocRef DL) |
| Return the path to the source file for a debug location.
|
|
uint32_t | LLVMRemarkDebugLocGetSourceLine (LLVMRemarkDebugLocRef DL) |
| Return the line in the source file for a debug location.
|
|
uint32_t | LLVMRemarkDebugLocGetSourceColumn (LLVMRemarkDebugLocRef DL) |
| Return the column in the source file for a debug location.
|
|
LLVMRemarkStringRef | LLVMRemarkArgGetKey (LLVMRemarkArgRef Arg) |
| Returns the key of an argument.
|
|
LLVMRemarkStringRef | LLVMRemarkArgGetValue (LLVMRemarkArgRef Arg) |
| Returns the value of an argument.
|
|
LLVMRemarkDebugLocRef | LLVMRemarkArgGetDebugLoc (LLVMRemarkArgRef Arg) |
| Returns the debug location that is attached to the value of this argument.
|
|
void | LLVMRemarkEntryDispose (LLVMRemarkEntryRef Remark) |
| Free the resources used by the remark entry.
|
|
LLVMRemarkType | LLVMRemarkEntryGetType (LLVMRemarkEntryRef Remark) |
| The type of the remark.
|
|
LLVMRemarkStringRef | LLVMRemarkEntryGetPassName (LLVMRemarkEntryRef Remark) |
| Get the name of the pass that emitted this remark.
|
|
LLVMRemarkStringRef | LLVMRemarkEntryGetRemarkName (LLVMRemarkEntryRef Remark) |
| Get an identifier of the remark.
|
|
LLVMRemarkStringRef | LLVMRemarkEntryGetFunctionName (LLVMRemarkEntryRef Remark) |
| Get the name of the function being processed when the remark was emitted.
|
|
LLVMRemarkDebugLocRef | LLVMRemarkEntryGetDebugLoc (LLVMRemarkEntryRef Remark) |
| Returns the debug location that is attached to this remark.
|
|
uint64_t | LLVMRemarkEntryGetHotness (LLVMRemarkEntryRef Remark) |
| Return the hotness of the remark.
|
|
uint32_t | LLVMRemarkEntryGetNumArgs (LLVMRemarkEntryRef Remark) |
| The number of arguments the remark holds.
|
|
LLVMRemarkArgRef | LLVMRemarkEntryGetFirstArg (LLVMRemarkEntryRef Remark) |
| Get a new iterator to iterate over a remark's argument.
|
|
LLVMRemarkArgRef | LLVMRemarkEntryGetNextArg (LLVMRemarkArgRef ArgIt, LLVMRemarkEntryRef Remark) |
| Get the next argument in Remark from the position of It .
|
|