bisect_ppx VS bap

Compare bisect_ppx vs bap and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
bisect_ppx bap
1 3
297 1,975
- 1.8%
5.3 4.5
about 1 month ago 12 days ago
OCaml OCaml
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

bisect_ppx

Posts with mentions or reviews of bisect_ppx. We have used some of these posts to build our list of alternatives and similar projects.
  • Debugging/Profiling/VM library for Ocaml.
    1 project | /r/ocaml | 21 Sep 2021
    It's not so clear to me what you want, the following come to mind: - if you want to "inspect the recursive calls" of a recursive function, you may not need any instrumentation: you can turn your function in open-recursion style, and provide a fixpoint combinator that does the inspection (see code below) - if you want to instrument the code globally, one easier-than-most approach is to use a ppx preprocessor to instrument the code (this assumes that the logic you want can be expressed as a slight modification of the user-written code), see ppx_bisect (code-coverage instrumentation) for example.

bap

Posts with mentions or reviews of bap. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-05-13.
  • Any standard algorithms for parsing (disassembling) machine code?
    3 projects | /r/compsci | 13 May 2022
    BAP (https://github.com/binaryanalysisplatform/bap), angr (https://angr.io/) and others already do what you're asking for as more purpose-built solutions for dynamic analysis. Angr specifically in python.
  • You need to stop idolizing programming languages.
    5 projects | /r/programming | 12 Apr 2022
  • Starting ocaml
    1 project | /r/ocaml | 20 Jun 2021
    I find this pretty good https://www.cs.cornell.edu/courses/cs3110/2019sp/textbook/intro/ocaml.html. Fun projects include compilers (pattern matching and static types are why Ocaml is usually selected), binary analysis stuff https://github.com/BinaryAnalysisPlatform/bap, stuff that requires async so you can try out nomadic async stuff, or really anything you desire.