summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/src
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-01-11 22:28:00 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-01-11 22:28:00 +0100
commit288d020aa081076dade30cad61be1c9fae616f98 (patch)
tree47abd346034f486f0b40d357fa56f72ca6919719 /dev/LibCompiler/src
parentac2debcd00dd78ad77f58d0c448862b76619ea61 (diff)
ADD: Rebrand.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/LibCompiler/src')
-rw-r--r--dev/LibCompiler/src/Assembler32x0.cc2
-rw-r--r--dev/LibCompiler/src/Assembler64x0.cc4
-rw-r--r--dev/LibCompiler/src/AssemblerAMD64.cc6
-rw-r--r--dev/LibCompiler/src/AssemblerARM64.cc6
-rw-r--r--dev/LibCompiler/src/AssemblerPower.cc6
-rw-r--r--dev/LibCompiler/src/AssemblyFactory.cc4
-rw-r--r--dev/LibCompiler/src/CCompiler64x0.cc6
-rw-r--r--dev/LibCompiler/src/CCompilerARM64.cc6
-rw-r--r--dev/LibCompiler/src/CCompilerPower64.cc4
-rw-r--r--dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc6
-rw-r--r--dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc6
-rw-r--r--dev/LibCompiler/src/Detail/AsmUtils.h2
-rw-r--r--dev/LibCompiler/src/Detail/ClUtils.h2
-rw-r--r--dev/LibCompiler/src/DynamicLinkerELF.cc4
-rw-r--r--dev/LibCompiler/src/DynamicLinkerPEF.cc6
-rw-r--r--dev/LibCompiler/src/String.cc4
16 files changed, 37 insertions, 37 deletions
diff --git a/dev/LibCompiler/src/Assembler32x0.cc b/dev/LibCompiler/src/Assembler32x0.cc
index 5064894..ec260fd 100644
--- a/dev/LibCompiler/src/Assembler32x0.cc
+++ b/dev/LibCompiler/src/Assembler32x0.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/Assembler64x0.cc b/dev/LibCompiler/src/Assembler64x0.cc
index a0cb734..d48a7e8 100644
--- a/dev/LibCompiler/src/Assembler64x0.cc
+++ b/dev/LibCompiler/src/Assembler64x0.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
------------------------------------------- */
@@ -120,7 +120,7 @@ LIBCOMPILER_MODULE(AssemblerMain64x0)
if (strcmp(argv[i], "--ver") == 0 || strcmp(argv[i], "--v") == 0)
{
kStdOut << "Assembler64x0: 64x0 Assembler.\nAssembler64x0: v1.10\nAssembler64x0: Copyright (c) "
- "Theater Quality Corp\n";
+ "t& Corporation\n";
return 0;
}
else if (strcmp(argv[i], "--h") == 0)
diff --git a/dev/LibCompiler/src/AssemblerAMD64.cc b/dev/LibCompiler/src/AssemblerAMD64.cc
index 0ec8c3e..2f88999 100644
--- a/dev/LibCompiler/src/AssemblerAMD64.cc
+++ b/dev/LibCompiler/src/AssemblerAMD64.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
------------------------------------------- */
@@ -138,13 +138,13 @@ LIBCOMPILER_MODULE(AssemblerMainAMD64)
if (strcmp(argv[i], "--amd64:ver") == 0 || strcmp(argv[i], "--amd64:v") == 0)
{
kStdOut << "AssemblerAMD64: AMD64 Assembler Driver.\nAssemblerAMD64: v1.10\nAssemblerAMD64: Copyright "
- "(c) Theater Quality Corp\n";
+ "(c) t& Corporation\n";
return 0;
}
else if (strcmp(argv[i], "--amd64:h") == 0)
{
kStdOut << "AssemblerAMD64: AMD64 Assembler Driver.\nAssemblerAMD64: Copyright (c) 2024 "
- "Theater Quality Corp\n";
+ "t& Corporation\n";
kStdOut << "--version: Print program version.\n";
kStdOut << "--verbose: Print verbose output.\n";
kStdOut << "--binary: Output as flat binary.\n";
diff --git a/dev/LibCompiler/src/AssemblerARM64.cc b/dev/LibCompiler/src/AssemblerARM64.cc
index 0fef663..7de167d 100644
--- a/dev/LibCompiler/src/AssemblerARM64.cc
+++ b/dev/LibCompiler/src/AssemblerARM64.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
------------------------------------------- */
@@ -91,13 +91,13 @@ LIBCOMPILER_MODULE(AssemblerMainARM64)
{
kStdOut << "AssemblerPower: AARCH64 Assembler Driver.\nAssemblerPower: " << kDistVersion << "\nAssemblerPower: "
"Copyright (c) "
- "Theater Quality Corp\n";
+ "t& Corporation\n";
return 0;
}
else if (strcmp(argv[i], "--h") == 0)
{
kStdOut << "AssemblerPower: AARCH64 Assembler Driver.\nAssemblerPower: Copyright (c) 2024 "
- "Theater Quality Corp\n";
+ "t& Corporation\n";
kStdOut << "--version,/v: print program version.\n";
kStdOut << "--verbose: print verbose output.\n";
kStdOut << "--binary: output as flat binary.\n";
diff --git a/dev/LibCompiler/src/AssemblerPower.cc b/dev/LibCompiler/src/AssemblerPower.cc
index e2bc76d..55916dd 100644
--- a/dev/LibCompiler/src/AssemblerPower.cc
+++ b/dev/LibCompiler/src/AssemblerPower.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
------------------------------------------- */
@@ -91,13 +91,13 @@ LIBCOMPILER_MODULE(AssemblerMainPower64)
{
kStdOut << "AssemblerPower: POWER64 Assembler Driver.\nAssemblerPower: " << kDistVersion << "\nAssemblerPower: "
"Copyright (c) "
- "Theater Quality Corp\n";
+ "t& Corporation\n";
return 0;
}
else if (strcmp(argv[i], "--h") == 0)
{
kStdOut << "AssemblerPower: POWER64 Assembler Driver.\nAssemblerPower: Copyright (c) 2024 "
- "Theater Quality Corp\n";
+ "t& Corporation\n";
kStdOut << "--version,/v: print program version.\n";
kStdOut << "--verbose: print verbose output.\n";
kStdOut << "--binary: output as flat binary.\n";
diff --git a/dev/LibCompiler/src/AssemblyFactory.cc b/dev/LibCompiler/src/AssemblyFactory.cc
index 6a2918c..4aea3a7 100644
--- a/dev/LibCompiler/src/AssemblyFactory.cc
+++ b/dev/LibCompiler/src/AssemblyFactory.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
------------------------------------------- */
@@ -14,7 +14,7 @@
* @version 0.1
* @date 2024-01-27
*
- * @copyright Copyright (c) 2024 Theater Quality Corp
+ * @copyright Copyright (c) 2024 t& Corporation
*
*/
diff --git a/dev/LibCompiler/src/CCompiler64x0.cc b/dev/LibCompiler/src/CCompiler64x0.cc
index fee8f08..e5852df 100644
--- a/dev/LibCompiler/src/CCompiler64x0.cc
+++ b/dev/LibCompiler/src/CCompiler64x0.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* cc
- * Copyright (C) 2024 Theater Quality Corp, all rights reserved.
+ * Copyright (C) 2024 t& Corporation, all rights reserved.
*
* ========================================================
*/
@@ -24,7 +24,7 @@
/* C driver */
/* This is part of the LibCompiler. */
-/* (c) Theater Quality Corp. */
+/* (c) t& Corporation. */
/// @author EL Mahrouss Amlal (amlel)
/// @file 64x0-cc.cxx
@@ -1482,7 +1482,7 @@ public:
#define kPrintF printf
#define kSplashCxx() \
- kPrintF(kWhite "ZKA C Driver, %s, (c) Theater Quality Corp.\n", kDistVersion)
+ kPrintF(kWhite "ZKA C Driver, %s, (c) t& Corporation.\n", kDistVersion)
static void cc_print_help()
{
diff --git a/dev/LibCompiler/src/CCompilerARM64.cc b/dev/LibCompiler/src/CCompilerARM64.cc
index 1f48311..f57fafc 100644
--- a/dev/LibCompiler/src/CCompilerARM64.cc
+++ b/dev/LibCompiler/src/CCompilerARM64.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* cc
- * Copyright (C) 2024 Theater Quality Corp, all rights reserved.
+ * Copyright (C) 2024 t& Corporation, all rights reserved.
*
* ========================================================
*/
@@ -24,7 +24,7 @@
/* C driver */
/* This is part of the LibCompiler. */
-/* (c) Theater Quality Corp. */
+/* (c) t& Corporation. */
/// @author EL Mahrouss Amlal (amlel)
/// @file ARM64-cc.cxx
@@ -1480,7 +1480,7 @@ public:
#define kPrintF printf
#define kSplashCxx() \
- kPrintF(kWhite "ZKA C Driver, %s, (c) Theater Quality Corp.\n", kDistVersion)
+ kPrintF(kWhite "ZKA C Driver, %s, (c) t& Corporation.\n", kDistVersion)
static void cc_print_help()
{
diff --git a/dev/LibCompiler/src/CCompilerPower64.cc b/dev/LibCompiler/src/CCompilerPower64.cc
index 9ef1646..5b9d6dc 100644
--- a/dev/LibCompiler/src/CCompilerPower64.cc
+++ b/dev/LibCompiler/src/CCompilerPower64.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* CCompilerPower64
- * Copyright (C) 2024 Theater Quality Corp, all rights reserved.
+ * Copyright (C) 2024 t& Corporation, all rights reserved.
*
* ========================================================
*/
@@ -1502,7 +1502,7 @@ public:
#define kPrintF printf
#define kSplashCxx() \
- kPrintF(kWhite "cc, %s, (c) Theater Quality Corp.\n", kDistVersion)
+ kPrintF(kWhite "cc, %s, (c) t& Corporation.\n", kDistVersion)
static void cc_print_help()
{
diff --git a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
index 7a85c24..927ea80 100644
--- a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
+++ b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* c++-drv
- * Copyright (C) 2024 Theater Quality Corp, all rights reserved.
+ * Copyright (C) 2024 t& Corporation, all rights reserved.
*
* ========================================================
*/
@@ -15,7 +15,7 @@
#define kExitNO (EXIT_FAILURE)
#define kSplashCxx() \
- kPrintF(kWhite "%s\n", "TQ C++ Compiler Driver, (c) 2024 Theater Quality Corp., all rights reserved.")
+ kPrintF(kWhite "%s\n", "TQ C++ Compiler Driver, (c) 2024 t& Corporation., all rights reserved.")
// extern_segment, @autodelete { ... }, fn foo() -> auto { ... }
@@ -27,7 +27,7 @@
/* ZKA C++ Compiler */
/* This is part of the LibCompiler. */
-/* (c) Theater Quality Corp. */
+/* (c) t& Corporation. */
/// @author EL Mahrouss Amlal (amlel)
/// @file CPlusPlusCompilerAMD64.cxx
diff --git a/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc b/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc
index 713405b..0b6033e 100644
--- a/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc
+++ b/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* bpp
- * Copyright (C) 2024 Theater Quality Corp, all rights reserved.
+ * Copyright (C) 2024 t& Corporation, all rights reserved.
*
* ========================================================
*/
@@ -971,13 +971,13 @@ LIBCOMPILER_MODULE(CPlusPlusPreprocessorMain)
{
if (strcmp(argv[index], "--bpp:ver") == 0)
{
- printf("%s\n", "bpp v1.11, (c) Theater Quality Corp.");
+ printf("%s\n", "bpp v1.11, (c) t& Corporation.");
return 0;
}
if (strcmp(argv[index], "--bpp:?") == 0)
{
- printf("%s\n", "ZKA Preprocessor Driver v1.11, (c) Theater Quality Corp.");
+ printf("%s\n", "ZKA Preprocessor Driver v1.11, (c) t& Corporation.");
printf("%s\n", "--bpp:working-dir <path>: set directory to working path.");
printf("%s\n", "--bpp:include-dir <path>: add directory to include path.");
printf("%s\n", "--bpp:def <name> <value>: define a macro.");
diff --git a/dev/LibCompiler/src/Detail/AsmUtils.h b/dev/LibCompiler/src/Detail/AsmUtils.h
index 91ee940..d8d75d7 100644
--- a/dev/LibCompiler/src/Detail/AsmUtils.h
+++ b/dev/LibCompiler/src/Detail/AsmUtils.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/Detail/ClUtils.h b/dev/LibCompiler/src/Detail/ClUtils.h
index 393a3cc..a351262 100644
--- a/dev/LibCompiler/src/Detail/ClUtils.h
+++ b/dev/LibCompiler/src/Detail/ClUtils.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/DynamicLinkerELF.cc b/dev/LibCompiler/src/DynamicLinkerELF.cc
index 7dd3440..9a58e49 100644
--- a/dev/LibCompiler/src/DynamicLinkerELF.cc
+++ b/dev/LibCompiler/src/DynamicLinkerELF.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
@file DynamicLinker64PEF.cc
@brief: C++ 64-Bit PEF Linker.
@@ -32,7 +32,7 @@
#include <LibCompiler/NFC/AE.h>
#include <cstdint>
-#define kLinkerVersionStr "TQ 64-Bit Linker (ELF) %s, (c) Theater Quality Corp. 2024, all rights reserved.\n"
+#define kLinkerVersionStr "TQ 64-Bit Linker (ELF) %s, (c) t& Corporation. 2024, all rights reserved.\n"
#define MemoryCopy(DST, SRC, SZ) memcpy(DST, SRC, SZ)
#define StringCompare(DST, SRC) strcmp(DST, SRC)
diff --git a/dev/LibCompiler/src/DynamicLinkerPEF.cc b/dev/LibCompiler/src/DynamicLinkerPEF.cc
index d00feaf..595a309 100644
--- a/dev/LibCompiler/src/DynamicLinkerPEF.cc
+++ b/dev/LibCompiler/src/DynamicLinkerPEF.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Theater Quality Corp, all rights reserved
+ Copyright (C) 2024 t& Corporation, all rights reserved
@file DynamicLinker64PEF.cc
@brief: C++ 64-Bit PEF Linker.
@@ -32,7 +32,7 @@
#include <LibCompiler/NFC/AE.h>
#include <cstdint>
-#define kLinkerVersionStr "TQ 64-Bit Linker (Preferred Executable) %s, (c) Theater Quality Corp. 2024, all rights reserved.\n"
+#define kLinkerVersionStr "TQ 64-Bit Linker (Preferred Executable) %s, (c) t& Corporation. 2024, all rights reserved.\n"
#define MemoryCopy(DST, SRC, SZ) memcpy(DST, SRC, SZ)
#define StringCompare(DST, SRC) strcmp(DST, SRC)
@@ -253,7 +253,7 @@ LIBCOMPILER_MODULE(DynamicLinker64PEF)
pef_container.Count = 0UL;
pef_container.Kind = is_executable ? LibCompiler::kPefKindExec : LibCompiler::kPefKindDylib;
pef_container.SubCpu = kSubArch;
- pef_container.Linker = kLinkerId; // Theater Quality Corp. Linker
+ pef_container.Linker = kLinkerId; // t& Corporation. Linker
pef_container.Abi = kAbi; // Multi-Processor UX ABI
pef_container.Magic[0] = kPefMagic[kFatBinaryEnable ? 2 : 0];
pef_container.Magic[1] = kPefMagic[1];
diff --git a/dev/LibCompiler/src/String.cc b/dev/LibCompiler/src/String.cc
index 2794007..ac90c06 100644
--- a/dev/LibCompiler/src/String.cc
+++ b/dev/LibCompiler/src/String.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* LibCompiler
- * Copyright (C) 2024 Theater Quality Corp, all rights reserved.
+ * Copyright (C) 2024 t& Corporation, all rights reserved.
*
* ========================================================
*/
@@ -14,7 +14,7 @@
* @version 0.2
* @date 2024-01-23
*
- * @copyright Copyright (c) Theater Quality Corp.
+ * @copyright Copyright (c) t& Corporation.
*
*/