diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-21 09:12:06 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-21 09:12:06 +0200 |
| commit | 5e49fbae54bd7dcbf2e893acaef699ce9f2587f3 (patch) | |
| tree | 442826994985742eec15a6a26bf537141ebb379a /Headers | |
| parent | f4ee9dd22c91c076ad2bd8ba082f7ad02afac350 (diff) | |
MHR-21: Refactor, WiP symbol support in mov.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Headers')
| -rw-r--r-- | Headers/AsmKit/AsmKit.hpp | 2 | ||||
| -rw-r--r-- | Headers/AsmKit/CPU/32x0.hpp | 2 | ||||
| -rw-r--r-- | Headers/AsmKit/CPU/64x0.hpp | 2 | ||||
| -rw-r--r-- | Headers/AsmKit/CPU/amd64.hpp | 2 | ||||
| -rw-r--r-- | Headers/AsmKit/CPU/ppc.hpp | 10 | ||||
| -rw-r--r-- | Headers/CompilerKit.hpp | 2 | ||||
| -rw-r--r-- | Headers/Defines.hpp | 2 | ||||
| -rw-r--r-- | Headers/ParserKit.hpp | 2 | ||||
| -rw-r--r-- | Headers/StdKit/AE.hpp | 32 | ||||
| -rw-r--r-- | Headers/StdKit/PEF.hpp | 2 | ||||
| -rw-r--r-- | Headers/StdKit/String.hpp | 12 | ||||
| -rw-r--r-- | Headers/StdKit/XCOFF.hxx | 10 |
12 files changed, 40 insertions, 40 deletions
diff --git a/Headers/AsmKit/AsmKit.hpp b/Headers/AsmKit/AsmKit.hpp index 23db830..d22ec21 100644 --- a/Headers/AsmKit/AsmKit.hpp +++ b/Headers/AsmKit/AsmKit.hpp @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright SoftwareLabs + Copyright SoftwareLabs ------------------------------------------- */ diff --git a/Headers/AsmKit/CPU/32x0.hpp b/Headers/AsmKit/CPU/32x0.hpp index 44ddaed..4d66da5 100644 --- a/Headers/AsmKit/CPU/32x0.hpp +++ b/Headers/AsmKit/CPU/32x0.hpp @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright SoftwareLabs + Copyright SoftwareLabs ------------------------------------------- */ diff --git a/Headers/AsmKit/CPU/64x0.hpp b/Headers/AsmKit/CPU/64x0.hpp index 58ab76d..974f346 100644 --- a/Headers/AsmKit/CPU/64x0.hpp +++ b/Headers/AsmKit/CPU/64x0.hpp @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright SoftwareLabs + Copyright SoftwareLabs ------------------------------------------- */ diff --git a/Headers/AsmKit/CPU/amd64.hpp b/Headers/AsmKit/CPU/amd64.hpp index be5a657..8f7e05c 100644 --- a/Headers/AsmKit/CPU/amd64.hpp +++ b/Headers/AsmKit/CPU/amd64.hpp @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright SoftwareLabs + Copyright SoftwareLabs ------------------------------------------- */ diff --git a/Headers/AsmKit/CPU/ppc.hpp b/Headers/AsmKit/CPU/ppc.hpp index c29286d..c4265da 100644 --- a/Headers/AsmKit/CPU/ppc.hpp +++ b/Headers/AsmKit/CPU/ppc.hpp @@ -242,7 +242,7 @@ inline CpuOpcodePPC kOpcodesPowerPC[] = { {0x4c800421, "bfctrl", {{16, 5, BCND}, {11, 2, NUM}}}, /* branch mnemonics incorporating conditions (assember extended mnemonics) - */ + */ {0x41800000, "blt", {{16, 5, CRF}, {2, 14, PCREL}}}, {0x41800000, "blt", {{2, 14, PCREL}}}, {0x41800001, "bltl", {{16, 5, CRF}, {2, 14, PCREL}}}, @@ -1548,10 +1548,10 @@ inline CpuOpcodePPC kOpcodesPowerPC[] = { {0x7c000426, "clcs", {{21, 5, GREG}, {16, 5, GREG}}, CPU601}, /* Added from the POWER 603 book. - * These are really 603 specific instructions but we mark them as OPTIONAL - * so that the -force_cpusubtype_ALL flag as to be used. This makes it so - * only 601 instructions will cause the cputype to be set to other an ALL. - */ + * These are really 603 specific instructions but we mark them as OPTIONAL + * so that the -force_cpusubtype_ALL flag as to be used. This makes it so + * only 601 instructions will cause the cputype to be set to other an ALL. + */ {0x7c0007a4, "tlbld", {{11, 5, GREG}}, OPTIONAL}, {0x7c0007e4, "tlbli", {{11, 5, GREG}}, OPTIONAL}, diff --git a/Headers/CompilerKit.hpp b/Headers/CompilerKit.hpp index 3d5cfc2..b9de089 100644 --- a/Headers/CompilerKit.hpp +++ b/Headers/CompilerKit.hpp @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright SoftwareLabs + Copyright SoftwareLabs ------------------------------------------- */ diff --git a/Headers/Defines.hpp b/Headers/Defines.hpp index ac8692b..d76620c 100644 --- a/Headers/Defines.hpp +++ b/Headers/Defines.hpp @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright SoftwareLabs + Copyright SoftwareLabs ------------------------------------------- */ diff --git a/Headers/ParserKit.hpp b/Headers/ParserKit.hpp index 6a53edc..f77dba9 100644 --- a/Headers/ParserKit.hpp +++ b/Headers/ParserKit.hpp @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright SoftwareLabs + Copyright SoftwareLabs ------------------------------------------- */ diff --git a/Headers/StdKit/AE.hpp b/Headers/StdKit/AE.hpp index 3075017..ebae770 100644 --- a/Headers/StdKit/AE.hpp +++ b/Headers/StdKit/AE.hpp @@ -95,9 +95,9 @@ std::ifstream& operator>>(std::ifstream& fp, namespace CompilerKit::Utils { /** - * @brief AE Reader protocol - * - */ + * @brief AE Reader protocol + * + */ class AEReadableProtocol final { public: @@ -110,12 +110,12 @@ namespace CompilerKit::Utils MPCC_COPY_DELETE(AEReadableProtocol); /** - * @brief Read AE record - * - * @param raw the containing buffer - * @param sz it's size (without sizeof(AERecordHeader) added to it.) - * @return AERecordHeaderPtr - */ + * @brief Read AE record + * + * @param raw the containing buffer + * @param sz it's size (without sizeof(AERecordHeader) added to it.) + * @return AERecordHeaderPtr + */ AERecordHeaderPtr Read(char* raw, std::size_t sz) { if (!raw) @@ -126,13 +126,13 @@ namespace CompilerKit::Utils private: /** - * @brief Implementation of Read for raw classes. - * - * @tparam TypeClass The class to read. - * @param raw the buffer - * @param sz the size - * @return TypeClass* the returning class. - */ + * @brief Implementation of Read for raw classes. + * + * @tparam TypeClass The class to read. + * @param raw the buffer + * @param sz the size + * @return TypeClass* the returning class. + */ template <typename TypeClass> TypeClass* _Read(char* raw, std::size_t sz) { diff --git a/Headers/StdKit/PEF.hpp b/Headers/StdKit/PEF.hpp index ee01852..88c20ea 100644 --- a/Headers/StdKit/PEF.hpp +++ b/Headers/StdKit/PEF.hpp @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright SoftwareLabs + Copyright SoftwareLabs ------------------------------------------- */ diff --git a/Headers/StdKit/String.hpp b/Headers/StdKit/String.hpp index 20fd16f..d4048ee 100644 --- a/Headers/StdKit/String.hpp +++ b/Headers/StdKit/String.hpp @@ -15,9 +15,9 @@ namespace CompilerKit { /** - * @brief StringView class, contains a C string and manages it. - * @note No need to manage it it's getting deleted by default. - */ + * @brief StringView class, contains a C string and manages it. + * @note No need to manage it it's getting deleted by default. + */ class StringView final { @@ -76,9 +76,9 @@ namespace CompilerKit }; /** - * @brief StringBuilder class - * @note These results shall call delete[] after they're used. - */ + * @brief StringBuilder class + * @note These results shall call delete[] after they're used. + */ struct StringBuilder final { static StringView Construct(const CharType* data); diff --git a/Headers/StdKit/XCOFF.hxx b/Headers/StdKit/XCOFF.hxx index b9cc825..d339daa 100644 --- a/Headers/StdKit/XCOFF.hxx +++ b/Headers/StdKit/XCOFF.hxx @@ -1,13 +1,13 @@ /* ------------------------------------------- - Copyright SoftwareLabs + Copyright SoftwareLabs - File: XCOFF.hpp - Purpose: XCOFF for NewOS. + File: XCOFF.hpp + Purpose: XCOFF for NewOS. - Revision History: + Revision History: - 04/07/24: Added file (amlel) + 04/07/24: Added file (amlel) ------------------------------------------- */ |
