Staging
v0.8.1
opam+https://opam.ocaml.org/packages/binsec/
Raw File
disasm_options.mli
(**************************************************************************)
(*  This file is part of BINSEC.                                          *)
(*                                                                        *)
(*  Copyright (C) 2016-2019                                               *)
(*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
(*         alternatives)                                                  *)
(*                                                                        *)
(*  you can redistribute it and/or modify it under the terms of the GNU   *)
(*  Lesser General Public License as published by the Free Software       *)
(*  Foundation, version 2.1.                                              *)
(*                                                                        *)
(*  It is distributed in the hope that it will be useful,                 *)
(*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *)
(*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *)
(*  GNU Lesser General Public License for more details.                   *)
(*                                                                        *)
(*  See the GNU Lesser General Public License version 2.1                 *)
(*  for more details (enclosed in the file licenses/LGPLv2.1).            *)
(*                                                                        *)
(**************************************************************************)

include Cli.S

(** Command-line options specific to disassembly *)

module DbaOutputFile : Cli.STRING

module OpcodeOutputFile : Cli.STRING_OPT

module NoLoaderMode : Cli.BOOLEAN
(** Default to [false]. Loader is activated by default *)

module IgnoreUnhandledInstructions : Cli.BOOLEAN
(** Defaults to [true] **)

module ShowInstructionCount : Cli.BOOLEAN

module Sections  : Cli.STRING_SET

module Functions : Cli.STRING_SET

module SimplifiedDisassembly : Cli.BOOLEAN

type disassembly_mode =
  | Recursive | Linear | Linear_byte_wise | Extended_linear

module Disassembly_mode : Cli.GENERIC with type t = disassembly_mode

module Decode_instruction : Cli.STRING_OPT

module Decode_replacement : Cli.GENERIC with type t = Dhunk.t Virtual_address.Map.t

module Decode_llvm : Cli.STRING_OPT

module CFG_graph : Cli.BOOLEAN

module Disasm_at : Cli.INTEGER ;;

module Cache_decoder : Cli.BOOLEAN ;;
back to top