mirror of
https://github.com/asmjit/asmjit
synced 2026-06-08 13:13:30 +00:00
cdc4eacbb1
* 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
18 lines
475 B
C
18 lines
475 B
C
// This file is part of AsmJit project <https://asmjit.com>
|
|
//
|
|
// See <asmjit/core.h> or LICENSE.md for license and copyright information
|
|
// SPDX-License-Identifier: Zlib
|
|
|
|
#ifndef ASMJIT_UJIT_H_INCLUDED
|
|
#define ASMJIT_UJIT_H_INCLUDED
|
|
|
|
#include "asmjit-scope-begin.h"
|
|
#include "ujit/ujitbase.h"
|
|
#include "ujit/unicompiler.h"
|
|
#include "ujit/unicondition.h"
|
|
#include "ujit/uniop.h"
|
|
#include "ujit/vecconsttable.h"
|
|
#include "asmjit-scope-end.h"
|
|
|
|
#endif // ASMJIT_UJIT_H_INCLUDED
|