This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let of_int_exn = function | |
| 0 -> `EQ | |
| 1 -> `NE | |
| 2 -> `CS | |
| 3 -> `CC | |
| 4 -> `MI | |
| 5 -> `PL | |
| 6 -> `VS | |
| 7 -> `VC | |
| 8 -> `HI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(declare (context (target arm))) | |
(in-package thumb) | |
(defun t2STMDB_UPD (dst base _pred _? | |
r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15) | |
(stmdb_upd dst base r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15)) | |
(defun t2STMDB_UPD (dst base _pred _? | |
r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open Bap.Std | |
open Core_kernel | |
open Bap_main | |
module Unix = UnixLabels | |
type chunk = { | |
offset : int; | |
data : Bigstring.t | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open Core_kernel | |
open Bap.Std | |
open Bap_core_theory | |
open Bap_main | |
open Bap_primus.Std | |
open KB.Syntax | |
let show name = | |
Toplevel.exec @@ begin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open Core_kernel | |
open Bap_main | |
open Bap_knowledge | |
open Bap_core_theory | |
open Bap.Std | |
open KB.Syntax | |
let zero_collector = object | |
inherit [Tid.Set.t] Term.visitor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open Core_kernel | |
open Bap_core_theory | |
open Bap.Std | |
open KB.Syntax | |
include Self() | |
let package = "bytoy" | |
type name = string [@@deriving equal,sexp] | |
type oper = Reg of int | Imm of int [@@deriving equal,sexp] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open Core_kernel | |
open Bap_core_theory | |
open Bap.Std | |
open KB.Syntax | |
include Self() | |
module Word = struct | |
include Bitvec_order | |
include Bitvec_sexp.Functions | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
opam-version: "2.0" | |
compiler: [ | |
"base-bigarray.base" | |
"base-threads.base" | |
"base-unix.base" | |
"ocaml-base-compiler.4.07.0" | |
] | |
roots: [ | |
"bap-signatures.1.5.0" | |
"base.v0.11.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open Core_kernel | |
module Ast = struct | |
type ident = string [@@deriving compare, hash, sexp] | |
type t = | |
| Var of ident | |
| Int of int | |
| Let of ident * t * t | |
| App of ident * t list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* a simple iterator, using the for loop, note that it counts objects starting from 1. *) | |
let iter_combs n k f = | |
let rec gen v s j = | |
if j > k then f v | |
else for i = s to n do | |
gen (i::v) (i+1) (j+1) | |
done in | |
gen [] 1 1 | |
NewerOlder