Module Arch
module Extension : sig ... endval trap_notes : bool Stdlib.refval arch_check_symbols : bool Stdlib.refval is_asan_enabled : bool Stdlib.refval command_line_options : (string * Stdlib.Arg.spec * string) listtype addressing_mode = | Ibased of string * Arch.sym_global * int| Iindexed of int| Iindexed2 of int| Iscaled of int * int| Iindexed2scaled of int * int
val equal_addressing_mode :
Arch.addressing_mode ->
Arch.addressing_mode ->
booltype prefetch_info = {is_write : bool;locality : Arch.prefetch_temporal_locality_hint;addr : Arch.addressing_mode;
}type float_width = Cmm.float_widthtype specific_operation = | Ilea of Arch.addressing_mode| Istore_int of nativeint * Arch.addressing_mode * bool| Ioffset_loc of int * Arch.addressing_mode| Ifloatarithmem of Arch.float_width * Arch.float_operation * Arch.addressing_mode| Ibswap of {bitwidth : Arch.bswap_bitwidth;
}| Isextend32| Izextend32| Irdtsc| Irdpmc| Ilfence| Isfence| Imfence| Ipackf32| Isimd of Simd.operation| Isimd_mem of Simd.Mem.operation * Arch.addressing_mode| Icldemote of Arch.addressing_mode| Iprefetch of {is_write : bool;locality : Arch.prefetch_temporal_locality_hint;addr : Arch.addressing_mode;
}| Illvm_intrinsic of string
val equal_specific_operation :
Arch.specific_operation ->
Arch.specific_operation ->
boolval identity_addressing : Arch.addressing_modeval offset_addressing : Arch.addressing_mode -> int -> Arch.addressing_modeval num_args_addressing : Arch.addressing_mode -> intval addressing_displacement_for_llvmize : Arch.addressing_mode -> intval print_addressing :
(Stdlib.Format.formatter -> 'a -> unit) ->
Arch.addressing_mode ->
Stdlib.Format.formatter ->
'a array ->
unitval specific_operation_name : Arch.specific_operation -> stringval print_specific_operation :
(Stdlib.Format.formatter -> 'a -> unit) ->
Arch.specific_operation ->
Stdlib.Format.formatter ->
'a array ->
unitval operation_is_pure : Arch.specific_operation -> boolval operation_allocates : Arch.specific_operation -> boolval float_cond_and_need_swap :
Scalar.Float_comparison.t ->
X86_ast.float_condition * boolval isomorphic_specific_operation :
Arch.specific_operation ->
Arch.specific_operation ->
boolval equal_addressing_mode_without_displ :
Arch.addressing_mode ->
Arch.addressing_mode ->
boolval addressing_offset_in_bytes :
Arch.addressing_mode ->
Arch.addressing_mode ->
arg_offset_in_bytes:('a -> 'a -> int option) ->
'a array ->
'a array ->
int option