pub(crate) mod core;
pub(crate) mod binary;
pub(crate) mod dwarf_expr;
pub(crate) mod index;
pub(crate) mod loader;
pub(crate) mod objfile;
pub(crate) mod parser;
pub(crate) mod path_match;
pub(crate) mod semantics;
pub(crate) mod analyzer;
pub use analyzer::{
AddressQueryResult, AnalyzerStats, DwarfAnalyzer, ExecutableFileInfo, FunctionQueryResult,
LoadedModuleRuntimeInfo, MainExecutableInfo, ModuleDefaultPolicy, ModuleLoadingEvent,
ModuleLoadingStats, ModuleStats, SectionInfo, SharedLibraryInfo, SimpleFileInfo,
SourceLineAddressSearch, SourceLineQuerySearch, TypeLookupAmbiguity,
};
pub use loader::ExplicitDebugFile;
pub use core::{
AddressExpr, AmbiguityReason, Availability, CallerFrameRecovery, CfaResult, CuId,
DebugInfoSource, DieRef, DwarfError, EntryValueCase, FunctionId, FunctionInfo,
GlobalVariableInfo, HelperMode, InlineContextId, MemoryAccessSize, ModuleAddress, ModuleId,
PieceLocation, PlanExprOp, Provenance, Result, RuntimeCapabilities, RuntimeRequirement,
ScopeId, SectionType, SourceLocation, TargetArch, TypeId, UnsupportedReason, VariableId,
VariableLocation, VerifierRisk,
};
pub use semantics::{
c_integer_comparison_type, indexable_element_layout, is_c_aggregate_type,
is_c_pointer_or_array_type, is_c_signed_integer_type, member_layout, strip_type_aliases,
usual_c_arithmetic_comparison_plan, AddressOrigin, AddressSpaceInfo, CIntegerComparisonPlan,
CIntegerComparisonType, CfaRulePlan, CompactUnwindRow, CompactUnwindStats, CompactUnwindTable,
FunctionParameter, IndexableElementLayout, InlineFrame, LvalueAddressPlan, MemberLayout,
PcContext, PcLineInfo, PcRange, PlannedAddress, PlannedAddressKind, PlannedValue,
RegisterRecoveryPlan, RuntimeComputedExpr, RuntimeComputedKind, TypeLayoutError,
UnwindDiagnostic, UnwindDiagnosticKind, VariableAccessPath, VariableAccessSegment,
VariableLoweringKind, VariableLoweringPlan, VariableMaterialization,
VariableMaterializationPlan, VariablePlan, VariableQueryDiagnostic, VariableReadPlan,
VisibleVariable, VisibleVariablesResult,
};
pub use ghostscope_protocol::{
EnumVariant, StructMember, TypeCache, TypeInfo, TypeKind, TypeQualifier,
};
pub use gimli::{constants, DwAte};