mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-16 20:17:05 +03:00
* Renamed round to round_even
* Added round_half_up intrinsic
* Added floating-point mod
* Added a scalar version of floating-point abs and neg
* Added a behavior enum to specify how float to int conversion
handles out-of-range and NaN cases
* Updated some APX stuff in instruction database
27 lines
973 B
JSON
27 lines
973 B
JSON
{
|
|
"diagnostics": {
|
|
"asan": { "definitions": ["ASMJIT_SANITIZE=address"] },
|
|
"msan": { "definitions": ["ASMJIT_SANITIZE=memory"] },
|
|
"ubsan": { "definitions": ["ASMJIT_SANITIZE=undefined"] }
|
|
},
|
|
|
|
"valgrind_arguments": [
|
|
"--leak-check=full",
|
|
"--show-reachable=yes",
|
|
"--track-origins=yes"
|
|
],
|
|
|
|
"tests": [
|
|
{ "optional": true, "cmd": ["asmjit_test_runner", "--quick"] },
|
|
{ "optional": true, "cmd": ["asmjit_test_environment"] },
|
|
{ "optional": true, "cmd": ["asmjit_test_assembler"] },
|
|
{ "optional": true, "cmd": ["asmjit_test_assembler", "--validate"] },
|
|
{ "optional": true, "cmd": ["asmjit_test_emitters"] },
|
|
{ "optional": true, "cmd": ["asmjit_test_compiler"] },
|
|
{ "optional": true, "cmd": ["asmjit_test_unicompiler"] },
|
|
{ "optional": true, "cmd": ["asmjit_test_instinfo"] },
|
|
{ "optional": true, "cmd": ["asmjit_test_x86_sections"] },
|
|
{ "optional": true, "cmd": ["asmjit_bench_codegen", "--quick"] }
|
|
]
|
|
}
|