Module Asm_targets.Asm_section
Representation of object file sections.
type t = | DWARF of Asm_targets.Asm_section.dwarf_section| Data| Read_only_data| Eight_byte_literals| Sixteen_byte_literals| Thirtytwo_byte_literals| Sixtyfour_byte_literals| Jump_tables| Text| Stapsdt_base| Stapsdt_note| Probes| Note_ocaml_eh
val to_string : Asm_targets.Asm_section.t -> stringval dwarf_sections_in_order : unit -> Asm_targets.Asm_section.t listval is_delayed : Asm_targets.Asm_section.t -> boolval details :
Asm_targets.Asm_section.t ->
first_occurrence:bool ->
Asm_targets.Asm_section.section_detailsThe necessary information for a section directive. first_occurrence should be true iff the corresponding directive will be the first such in the relevant assembly file for the given section.
val print : Stdlib.Format.formatter -> Asm_targets.Asm_section.t -> unitval compare : Asm_targets.Asm_section.t -> Asm_targets.Asm_section.t -> intval equal : Asm_targets.Asm_section.t -> Asm_targets.Asm_section.t -> boolval section_is_text : Asm_targets.Asm_section.t -> boolWhether the section holds code.