package janestreet_cpuid

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

The leaf at 0x7 is special because in addition to putting 0x7 it also lets you put a value into ECX to get a particular feature subleaf. In this case we want ECX=0x0, and any processor which supports EAX=0x7 (which we do check) supports ECX=0x0.

This provides flags into more modern features on AMD CPUs, including some which most of our machines definitely do not have. If you use any of these features, check to make sure they're supported. *

module Ebx_flags : sig ... end
module Ecx_flags : sig ... end
type t = {
  1. max_subleaf : int;
  2. ebx : Ebx_flags.t;
  3. ecx : Ecx_flags.t;
}
val sexp_of_t : t -> Sexplib0.Sexp.t
val retrieve : unit -> t
module For_testing : sig ... end
OCaml

Innovation. Community. Security.