1
0
Fork 0
mirror of https://git.suyu.dev/suyu/sirit.git synced 2024-12-23 04:32:04 +00:00
sirit/src/literal_number.h

44 lines
1.1 KiB
C
Raw Normal View History

2018-08-28 08:16:52 +01:00
/* This file is part of the sirit project.
* Copyright (c) 2018 ReinUsesLisp
* This software may be used and distributed according to the terms of the GNU
* Lesser General Public License version 2.1 or any later version.
*/
#pragma once
#include "operand.h"
2018-10-03 04:32:45 +01:00
#include "stream.h"
#include <typeindex>
2018-08-28 08:16:52 +01:00
namespace Sirit {
class LiteralNumber : public Operand {
2018-10-03 04:32:45 +01:00
public:
LiteralNumber(std::type_index type);
2018-08-28 08:16:52 +01:00
~LiteralNumber();
virtual void Fetch(Stream& stream) const;
virtual u16 GetWordCount() const;
virtual bool operator==(const Operand& other) const;
2018-10-03 04:32:45 +01:00
template <typename T> static LiteralNumber* Create(T value) {
static_assert(sizeof(T) == 4 || sizeof(T) == 8);
2018-10-03 04:32:45 +01:00
LiteralNumber* number = new LiteralNumber(std::type_index(typeid(T)));
if (number->is_32 = sizeof(T) == 4; number->is_32) {
number->raw = *reinterpret_cast<u32*>(&value);
} else {
number->raw = *reinterpret_cast<u64*>(&value);
}
return number;
}
private:
const std::type_index type;
2018-10-03 04:32:45 +01:00
bool is_32;
u64 raw;
2018-08-28 08:16:52 +01:00
};
} // namespace Sirit