landmarks icon indicating copy to clipboard operation
landmarks copied to clipboard

A Simple Profiling Library for OCaml

Results 11 landmarks issues
Sort by recently updated
recently updated
newest added

It seems that the online viewer cannot read the generated JSON files anymore. Is this expected? Thanks for the nice tool :-)

This is a simplified example of an issue that happened with Frama-C's visitors: ```ocaml (* a.ml *) type visitAction = Go | Skip class visitor = object method visit ()...

Thank you for the incredibly useful `landmarks` library! It works flawlessly for us on x86, but we seem to be out of luck for now on our Apple M1s. Is...

# How to reproduce: Run the ppx in automatic mode on : ```ocaml module M = struct type t = A | B end class a = object method f...

Hello, The [online](http://lexifi.github.io/landmarks/viewer.html) viewer is a 404 and the package `landmarks-viewer` mentioned in the README doesn't exist.

Speaking of viewers, web browsers come with their own profile viewers. Maybe you could simply piggyback on these. For Chrome this happens at the `chrome://tracing` address and the JSON file...

the we viewer requires me to re-choose a changed profile file with unchanged name. it would be more convenient if i could just click the load button again.

For instance: ``` let () = let[@landmark] rec f () = () and g () = f () in g () ``` will produce unused variable "f". This is a...

We have problem with polymorphism constraints: ```ocaml let[@landmark] f : type t. t -> t = fun x -> x` ``` will trigger a clean but disapointing error message: >...

I have been trying to use the new compatibility with js_of_ocaml added in #36. I have my code organized into a library with the final part of my code being...