ghostscope_platform/
lib.rs1pub mod calling_convention;
9pub mod register_mapping;
10pub mod tls;
11pub mod types;
12
13pub use calling_convention::{get_parameter_register_in_context, CallingConvention, X86_64SystemV};
15pub use register_mapping::{
16 dwarf_reg_to_name, dwarf_reg_to_name_x86_64, dwarf_reg_to_pt_regs_byte_offset,
17 dwarf_reg_to_pt_regs_byte_offset_x86_64, pt_regs_indices,
18};
19pub use tls::{current_task_fsbase_offset, static_tls_bias_for_elf, TlsLayoutError};
20pub use types::{CodeReader, PlatformError, SourceLocation};