backend/A64: add emit_a64_saturation.cpp

This commit is contained in:
SachinVin 2019-09-21 18:04:46 +05:30
parent ad59325b45
commit 011d62d958

View File

@ -0,0 +1,24 @@
/* This file is part of the dynarmic project.
* Copyright (c) 2016 MerryMage
* This software may be used and distributed according to the terms of the GNU
* General Public License version 2 or any later version.
*/
#include <limits>
#include "backend/A64/block_of_code.h"
#include "backend/A64/emit_a64.h"
#include "common/assert.h"
#include "common/bit_util.h"
#include "common/common_types.h"
#include "common/mp/integer.h"
#include "frontend/ir/basic_block.h"
#include "frontend/ir/microinstruction.h"
#include "frontend/ir/opcodes.h"
namespace Dynarmic::BackendA64 {
namespace mp = Dynarmic::Common::mp;
namespace {
} // namespace Dynarmic::BackendA64