enum class BitstreamRemarkContainerType
Description
Type of the remark container. The remark container has two modes: * separate: the metadata is separate from the remarks and points to the auxiliary file that contains the remarks. * standalone: the metadata and the remarks are emitted together.
Declared at: llvm/include/llvm/Remarks/BitstreamRemarkContainer.h:35
Enumerators
Name | Value | Comment |
---|---|---|
SeparateRemarksMeta | 0 | The metadata emitted separately. This will contain the following: * Container version and type * String table * External file |
SeparateRemarksFile | 1 | The remarks emitted separately. This will contain the following: * Container version and type * Remark version |
Standalone | 2 | Everything is emitted together. This will contain the following: * Container version and type * Remark version * String table |
First | 0 | Everything is emitted together. This will contain the following: * Container version and type * Remark version * String table |
Last | 2 | Everything is emitted together. This will contain the following: * Container version and type * Remark version * String table |