許多external
聲明中OCaml的標準庫中的函數名稱的開頭有一個%,如int_of_float
定義:OCaml外部聲明中的%意味着什麼?
external int_of_float : float -> int = "%intoffloat"
什麼是「%」是什麼意思?
許多external
聲明中OCaml的標準庫中的函數名稱的開頭有一個%,如int_of_float
定義:OCaml外部聲明中的%意味着什麼?
external int_of_float : float -> int = "%intoffloat"
什麼是「%」是什麼意思?
有很多%foo
隱藏在編譯器中的特殊原語。我認爲在ocaml編譯器源代碼中的最佳列表可以在bytecomp/translcore.ml
中找到。讓我們看看有多少可以在這裏列出:
這些比較有專門的版本INT ,float,string,nativeint,int32和int64,並且如果類型在編譯時已知,它將自動專門化。
%identity, %ignore, %field0, %field1, %setfield0, %makeblock, %makemutable, %raise, %incr, %decr, %seqand, %seqor, %boolnot
%negint, %succint, %predint, %addint, %subint, %mulint, %divint, %modint, %andint, %orint, %xorint, %lslint, %lsrint, %asrint
%eq, %noteq, %ltint, %leint, %gtint, %geint
%intoffloat, %floatofint, %negfloat, %absfloat, %addfloat, %subfloat, %mulfloat, %divfloat
%eqfloat, %noteqfloat, %ltfloat, %lefloat, %gtfloat, %gefloat
%string_length, %string_safe_get, %string_safe_set, %string_unsafe_get, %string_unsafe_set
%array_length, %array_safe_get, %array_safe_set, %array_unsafe_get, %array_unsafe_set
%obj_size, %obj_field, %obj_set_field, %obj_is_int
%lazy_force
%{nativeint,int32,int64}: _of_int, _to_int, _neg, _add, _sub, _mul, _div, _mod, _and, _or, _xor, _lsl, _lsr, _asr
%nativeint_{of,to}_int32, int64_{of,to}_int32, int64_{of,to}_nativeint
%caml_ba_ref_{1,2,3}, %caml_ba_set_{1,2,3}, %caml_ba_unsafe_ref_{1,2,3}, %caml_ba_unsafe_set_{1,2,3}
%send, %sendself, %sendcache
這就是我能找到的。
外部的%是特殊的外部,這將由編譯器專門處理。例如,使用int_of_float,ocamlc會將其編譯爲某個C函數的調用,但使用ocamlopt時,它會將其編譯爲一些特殊的彙編程序操作碼,將double轉換爲整數。
我想知道它是否可能是這樣的。你知道這個功能和可用的魔法名稱是否記錄在任何地方嗎? – 2009-12-16 21:26:42