dynarmic/src/frontend/ir/value.h

104 lines
2.7 KiB
C
Raw Normal View History

/* 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.
*/
#pragma once
2018-01-07 00:11:57 +00:00
#include <type_traits>
2018-01-05 21:47:23 +00:00
#include "common/assert.h"
#include "common/common_types.h"
2018-01-01 15:23:56 +00:00
#include "frontend/A32/types.h"
2018-01-04 23:05:27 +00:00
#include "frontend/A64/types.h"
#include "frontend/ir/opcodes.h"
namespace Dynarmic {
namespace IR {
class Inst;
/**
* A representation of a value in the IR.
* A value may either be an immediate or the result of a microinstruction.
*/
2018-01-05 21:47:23 +00:00
class Value {
public:
Value() : type(Type::Void) {}
explicit Value(Inst* value);
2018-01-01 15:23:56 +00:00
explicit Value(A32::Reg value);
explicit Value(A32::ExtReg value);
2018-01-04 23:05:27 +00:00
explicit Value(A64::Reg value);
explicit Value(A64::Vec value);
explicit Value(bool value);
explicit Value(u8 value);
2017-01-29 22:58:11 +00:00
explicit Value(u16 value);
explicit Value(u32 value);
explicit Value(u64 value);
2016-12-31 10:46:13 +00:00
explicit Value(std::array<u8, 8> value);
bool IsEmpty() const;
bool IsImmediate() const;
Type GetType() const;
Inst* GetInst() const;
2018-01-01 15:23:56 +00:00
A32::Reg GetA32RegRef() const;
A32::ExtReg GetA32ExtRegRef() const;
2018-01-04 23:05:27 +00:00
A64::Reg GetA64RegRef() const;
A64::Vec GetA64VecRef() const;
bool GetU1() const;
u8 GetU8() const;
2017-01-29 22:58:11 +00:00
u16 GetU16() const;
u32 GetU32() const;
u64 GetU64() const;
2016-12-31 10:46:13 +00:00
std::array<u8, 8> GetCoprocInfo() const;
private:
Type type;
union {
Inst* inst; // type == Type::Opaque
2018-01-01 15:23:56 +00:00
A32::Reg imm_a32regref;
A32::ExtReg imm_a32extregref;
2018-01-04 23:05:27 +00:00
A64::Reg imm_a64regref;
A64::Vec imm_a64vecref;
bool imm_u1;
u8 imm_u8;
2017-01-29 22:58:11 +00:00
u16 imm_u16;
u32 imm_u32;
u64 imm_u64;
2016-12-31 10:46:13 +00:00
std::array<u8, 8> imm_coproc;
} inner;
};
2016-12-31 10:46:13 +00:00
static_assert(sizeof(Value) <= 2 * sizeof(u64), "IR::Value should be kept small in size");
2018-01-05 21:47:23 +00:00
template <Type type_>
class TypedValue final : public Value {
public:
TypedValue() : Value() {}
2018-01-07 00:11:57 +00:00
template <Type other_type, typename = std::enable_if_t<(other_type & type_) != Type::Void>>
2018-01-05 21:47:23 +00:00
/* implicit */ TypedValue(const TypedValue<other_type>& value) : Value(value) {
ASSERT((value.GetType() & type_) != Type::Void);
}
explicit TypedValue(const Value& value) : Value(value) {
ASSERT((value.GetType() & type_) != Type::Void);
}
};
using U1 = TypedValue<Type::U1>;
using U8 = TypedValue<Type::U8>;
using U16 = TypedValue<Type::U16>;
using U32 = TypedValue<Type::U32>;
using U64 = TypedValue<Type::U64>;
2018-01-07 00:11:57 +00:00
using U32U64 = TypedValue<Type::U32 | Type::U64>;
2018-01-05 21:47:23 +00:00
using F32 = TypedValue<Type::F32>;
using F64 = TypedValue<Type::F64>;
2018-01-04 23:05:27 +00:00
using F128 = TypedValue<Type::F128>;
2018-01-05 21:47:23 +00:00
using F32F64 = TypedValue<Type::F32 | Type::F64>;
} // namespace IR
} // namespace Dynarmic