aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/madpascal.ts
diff options
context:
space:
mode:
authorPatrick Quist <partouf@gmail.com>2024-03-29 02:17:52 +0100
committerGitHub <noreply@github.com>2024-03-29 02:17:52 +0100
commite96b12551822bec81457067a87f1ebe29c3d78ca (patch)
tree7c4633419b840474ea60d537286d14c394cb3a00 /lib/compilers/madpascal.ts
parent3b19d5cd9401174b238f1be2e0f821438d807a8d (diff)
downloadcompiler-explorer-e96b12551822bec81457067a87f1ebe29c3d78ca.tar.gz
compiler-explorer-e96b12551822bec81457067a87f1ebe29c3d78ca.zip
Add MadPascal (#6286)gh-11117
Diffstat (limited to 'lib/compilers/madpascal.ts')
-rw-r--r--lib/compilers/madpascal.ts198
1 files changed, 198 insertions, 0 deletions
diff --git a/lib/compilers/madpascal.ts b/lib/compilers/madpascal.ts
new file mode 100644
index 000000000..4a55fa71d
--- /dev/null
+++ b/lib/compilers/madpascal.ts
@@ -0,0 +1,198 @@
+// Copyright (c) 2024, Compiler Explorer Authors
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are met:
+//
+// * Redistributions of source code must retain the above copyright notice,
+// this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above copyright
+// notice, this list of conditions and the following disclaimer in the
+// documentation and/or other materials provided with the distribution.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+// POSSIBILITY OF SUCH DAMAGE.
+
+import {PreliminaryCompilerInfo} from '../../types/compiler.interfaces.js';
+import type {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces.js';
+import {BaseCompiler, c_value_placeholder} from '../base-compiler.js';
+import {CompilationEnvironment} from '../compilation-env.js';
+import {MadpascalParser} from './argument-parsers.js';
+import * as path from 'path';
+import {MadsAsmParser} from '../parsers/asm-parser-mads.js';
+import {CompilationResult, ExecutionOptions} from '../../types/compilation/compilation.interfaces.js';
+import * as utils from '../utils.js';
+import fs from 'fs-extra';
+import {ArtifactType} from '../../types/tool.interfaces.js';
+
+export class MadPascalCompiler extends BaseCompiler {
+ protected madsExe: any;
+
+ static get key() {
+ return 'madpascal';
+ }
+
+ constructor(info: PreliminaryCompilerInfo, env: CompilationEnvironment) {
+ super(info, env);
+
+ this.compileFilename = 'output.pas';
+ this.madsExe = this.compilerProps<string>(`compiler.${info.id}.madsexe`);
+ this.asm = new MadsAsmParser(this.compilerProps);
+ }
+
+ getCompilerOutputFilename(dirPath: string, outputFilebase: string) {
+ const filename = `${outputFilebase}.a65`;
+ if (dirPath) {
+ return path.join(dirPath, filename);
+ } else {
+ return filename;
+ }
+ }
+
+ getAssemblerOutputFilename(dirPath: string, outputFilebase: string) {
+ const filename = `${outputFilebase}.obx`;
+ if (dirPath) {
+ return path.join(dirPath, filename);
+ } else {
+ return filename;
+ }
+ }
+
+ getListingFilename(dirPath: string, outputFilebase: string) {
+ const filename = `${outputFilebase}.lst`;
+ if (dirPath) {
+ return path.join(dirPath, filename);
+ } else {
+ return filename;
+ }
+ }
+
+ override getOutputFilename(dirPath: string, outputFilebase: string, key?: any): string {
+ return this.getCompilerOutputFilename(dirPath, outputFilebase);
+ }
+
+ protected override getArgumentParser(): any {
+ return MadpascalParser;
+ }
+
+ protected override optionsForFilter(
+ filters: ParseFiltersAndOutputOptions,
+ outputFilename: string,
+ userOptions?: string[],
+ ): string[] {
+ filters.demangle = false;
+ return [];
+ }
+
+ isTargettingC64(options: string[]) {
+ if (options.includes('-target:c64')) return true;
+
+ const p = options.indexOf('-t');
+ if (p !== -1) {
+ return options[p + 1] === 'c64';
+ }
+
+ return false;
+ }
+
+ override async runCompiler(
+ compiler: string,
+ options: string[],
+ inputFilename: string,
+ execOptions: ExecutionOptions & {env: Record<string, string>},
+ filters?: ParseFiltersAndOutputOptions,
+ ): Promise<CompilationResult> {
+ if (!execOptions) {
+ execOptions = this.getDefaultExecOptions();
+ }
+
+ const tmpDir = path.dirname(inputFilename);
+ if (!execOptions.customCwd) {
+ execOptions.customCwd = tmpDir;
+ }
+
+ const compileResult = await this.exec(compiler, options, execOptions);
+
+ const result = {
+ ...this.transformToCompilationResult(compileResult, inputFilename),
+ languageId: this.getCompilerResultLanguageId(filters),
+ };
+
+ const outputFilename = this.getCompilerOutputFilename(tmpDir, this.outputFilebase);
+
+ if (filters?.binary && (await utils.fileExists(outputFilename))) {
+ const compilerDir = path.dirname(compiler);
+ const baseDir = path.join(compilerDir, '../base');
+ const assemblerResult = await this.exec(
+ this.madsExe,
+ [outputFilename, '-p', '-x', `-i:${baseDir}`],
+ execOptions,
+ );
+
+ if (assemblerResult.code === 0 && this.isTargettingC64(options)) {
+ const diskfile = path.join(tmpDir, 'output.obx');
+ if (await utils.fileExists(diskfile)) {
+ await this.addArtifactToResult(result, diskfile, ArtifactType.c64prg, 'output.prg');
+ }
+ }
+
+ return {
+ ...result,
+ ...this.transformToCompilationResult(assemblerResult, inputFilename),
+ languageId: this.getCompilerResultLanguageId(filters),
+ };
+ }
+
+ return result;
+ }
+
+ override async objdump(
+ outputFilename,
+ result: any,
+ maxSize: number,
+ intelAsm,
+ demangle,
+ staticReloc: boolean | undefined,
+ dynamicReloc: boolean,
+ filters: ParseFiltersAndOutputOptions,
+ ) {
+ const tmpDir = path.dirname(outputFilename);
+ const listingFilename = this.getListingFilename(tmpDir, this.outputFilebase);
+
+ if (!(await utils.fileExists(listingFilename))) {
+ result.asm = '<No output file ' + listingFilename + '>';
+ return result;
+ }
+
+ const content = await fs.readFile(listingFilename);
+ result.asm = this.postProcessObjdumpOutput(content.toString('utf8'));
+
+ return result;
+ }
+
+ override getTargetFlags(): string[] {
+ return [`-target:${c_value_placeholder}`];
+ }
+
+ override orderArguments(
+ options: string[],
+ inputFilename: string,
+ libIncludes: string[],
+ libOptions: string[],
+ libPaths: string[],
+ libLinks: string[],
+ userOptions: string[],
+ staticLibLinks: string[],
+ ) {
+ return options.concat([this.filename(inputFilename)], libIncludes, libOptions, userOptions);
+ }
+}