#pragma once #include #include #include #include #include #include #include #ifdef __MINGW32__ #include #else #include #endif #include "lang/token.hpp" namespace hex { template inline std::string format(const std::string &format, Args ... args) { ssize_t size = snprintf( nullptr, 0, format.c_str(), args ... ); if( size <= 0 ) return ""; std::vector buffer(size + 1, 0x00); snprintf(buffer.data(), size + 1, format.c_str(), args ...); return std::string(buffer.data(), buffer.data() + size); } [[nodiscard]] constexpr inline u64 extract(u8 from, u8 to, const u64 &value) { u64 mask = (std::numeric_limits::max() >> (63 - (from - to))) << to; return (value & mask) >> to; } [[nodiscard]] constexpr inline u64 signExtend(u64 value, u8 currWidth, u8 targetWidth) { u64 mask = 1LLU << (currWidth - 1); return (((value ^ mask) - mask) << (64 - targetWidth)) >> (64 - targetWidth); } [[nodiscard]] constexpr inline bool isUnsigned(const lang::Token::TypeToken::Type type) { return (static_cast(type) & 0x0F) == 0x00; } [[nodiscard]] constexpr inline bool isSigned(const lang::Token::TypeToken::Type type) { return (static_cast(type) & 0x0F) == 0x01; } [[nodiscard]] constexpr inline bool isFloatingPoint(const lang::Token::TypeToken::Type type) { return (static_cast(type) & 0x0F) == 0x02; } [[nodiscard]] constexpr inline u32 getTypeSize(const lang::Token::TypeToken::Type type) { return static_cast(type) >> 4; } std::string toByteString(u64 bytes); std::string makePrintable(char c); template struct always_false : std::false_type {}; template constexpr T changeEndianess(T value, std::endian endian) { if (endian == std::endian::native) return value; if constexpr (sizeof(T) == 1) return value; else if constexpr (sizeof(T) == 2) return __builtin_bswap16(value); else if constexpr (sizeof(T) == 4) return __builtin_bswap32(value); else if constexpr (sizeof(T) == 8) return __builtin_bswap64(value); else static_assert(always_false::value, "Invalid type provided!"); } template constexpr T changeEndianess(T value, size_t size, std::endian endian) { if (endian == std::endian::native) return value; if (size == 1) return value; else if (size == 2) return __builtin_bswap16(value); else if (size == 4) return __builtin_bswap32(value); else if (size == 8) return __builtin_bswap64(value); else throw std::invalid_argument("Invalid value size!"); } std::vector readFile(std::string_view path); class ScopeExit { public: ScopeExit(std::function func) : m_func(func) {} ~ScopeExit() { if (this->m_func != nullptr) this->m_func(); } void release() { this->m_func = nullptr; } private: std::function m_func; }; struct Region { u64 address; size_t size; }; struct Bookmark { Region region; std::vector name; std::vector comment; }; }