mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 12:54:00 -05:00
(+ a rename). Turns out when 'Link to Binary' was checked, msvc objdumped the obj (not exe) file. This fixes it.
217 lines
7.8 KiB
TypeScript
217 lines
7.8 KiB
TypeScript
// Copyright (c) 2018, 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 fs from 'node:fs';
|
|
import path from 'node:path';
|
|
|
|
import _ from 'underscore';
|
|
|
|
import type {
|
|
Arch,
|
|
BuildResult,
|
|
BuildStep,
|
|
CacheKey,
|
|
CompilationResult,
|
|
} from '../../types/compilation/compilation.interfaces.js';
|
|
import type {PreliminaryCompilerInfo} from '../../types/compiler.interfaces.js';
|
|
import type {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces.js';
|
|
import {BaseCompiler} from '../base-compiler.js';
|
|
import {CompilationEnvironment} from '../compilation-env.js';
|
|
import {AsmRaw} from '../parsers/asm-raw.js';
|
|
import {fileExists} from '../utils.js';
|
|
|
|
import {BaseParser} from './argument-parsers.js';
|
|
|
|
export class AssemblyCompiler extends BaseCompiler {
|
|
static get key() {
|
|
return 'assembly';
|
|
}
|
|
|
|
constructor(info: PreliminaryCompilerInfo, env: CompilationEnvironment) {
|
|
super(info, env);
|
|
this.asm = new AsmRaw();
|
|
}
|
|
|
|
override getSharedLibraryPathsAsArguments() {
|
|
return [];
|
|
}
|
|
|
|
override getArgumentParserClass() {
|
|
return BaseParser;
|
|
}
|
|
|
|
override optionsForFilter(filters: ParseFiltersAndOutputOptions, outputFilename: string, userOptions?: string[]) {
|
|
filters.binary = true;
|
|
return [];
|
|
}
|
|
|
|
getGeneratedOutputFilename(fn: string): string {
|
|
const outputFolder = path.dirname(fn);
|
|
const files = fs.readdirSync(outputFolder);
|
|
|
|
let outputFilename = super.filename(fn);
|
|
for (const file of files) {
|
|
if (file[0] !== '.' && file !== this.compileFilename) {
|
|
outputFilename = path.join(outputFolder, file);
|
|
}
|
|
}
|
|
|
|
return outputFilename;
|
|
}
|
|
|
|
override getOutputFilename(dirPath: string) {
|
|
return this.getGeneratedOutputFilename(path.join(dirPath, 'example.asm'));
|
|
}
|
|
|
|
async runReadelf(fullResult: BuildResult, objectFilename: string) {
|
|
const execOptions = this.getDefaultExecOptions();
|
|
execOptions.customCwd = path.dirname(objectFilename);
|
|
return await this.doBuildstepAndAddToResult(
|
|
fullResult,
|
|
'readelf',
|
|
this.env.ceProps('readelf') as string,
|
|
['-h', objectFilename],
|
|
execOptions,
|
|
);
|
|
}
|
|
|
|
async getArchitecture(fullResult: BuildResult, objectFilename: string): Promise<Arch> {
|
|
const result = await this.runReadelf(fullResult, objectFilename);
|
|
const output = result.stdout.map(line => line.text).join('\n');
|
|
if (output.includes('ELF32') && output.includes('80386')) {
|
|
return 'x86';
|
|
}
|
|
if (output.includes('ELF64') && output.includes('X86-64')) {
|
|
return 'x86_64';
|
|
}
|
|
if (output.includes('Mach-O 64-bit x86-64')) {
|
|
// note: this is to support readelf=objdump on Mac
|
|
return 'x86_64';
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
async runLinker(fullResult: BuildResult, inputArch: Arch, objectFilename: string, outputFilename: string) {
|
|
const execOptions = this.getDefaultExecOptions();
|
|
execOptions.customCwd = path.dirname(objectFilename);
|
|
|
|
const options = ['-o', outputFilename];
|
|
if (inputArch === 'x86') {
|
|
options.push('-m', 'elf_i386');
|
|
} else if (inputArch === 'x86_64') {
|
|
// default target
|
|
} else {
|
|
const result: BuildStep = {
|
|
code: -1,
|
|
step: 'ld',
|
|
stderr: [{text: 'Invalid architecture for linking and execution'}],
|
|
okToCache: false,
|
|
filenameTransform: (fn: string) => fn,
|
|
stdout: [],
|
|
execTime: 0,
|
|
timedOut: false,
|
|
compilationOptions: [],
|
|
};
|
|
fullResult.buildsteps!.push(result);
|
|
return result;
|
|
}
|
|
options.push(objectFilename);
|
|
|
|
return this.doBuildstepAndAddToResult(fullResult, 'ld', this.env.ceProps('ld') as string, options, execOptions);
|
|
}
|
|
|
|
override getExecutableFilename(dirPath: string) {
|
|
return path.join(dirPath, 'ce-asm-executable');
|
|
}
|
|
|
|
override async buildExecutableInFolder(key: CacheKey, dirPath: string): Promise<BuildResult> {
|
|
const buildEnvironment = this.setupBuildEnvironment(key, dirPath, true);
|
|
|
|
const writeSummary = await this.writeAllFiles(dirPath, key.source, key.files);
|
|
const inputFilename = writeSummary.inputFilename;
|
|
|
|
const outputFilename = this.getExecutableFilename(dirPath);
|
|
|
|
const buildFilters: ParseFiltersAndOutputOptions = Object.assign({}, key.filters);
|
|
buildFilters.binary = true;
|
|
buildFilters.execute = false;
|
|
|
|
const overrides = this.sanitizeCompilerOverrides(key.backendOptions.overrides || []);
|
|
|
|
const compilerArguments = _.compact(
|
|
this.prepareArguments(
|
|
key.options,
|
|
buildFilters,
|
|
key.backendOptions,
|
|
inputFilename,
|
|
outputFilename,
|
|
key.libraries,
|
|
overrides,
|
|
),
|
|
);
|
|
|
|
const downloads = await buildEnvironment;
|
|
|
|
const execOptions = this.getDefaultExecOptions();
|
|
execOptions.ldPath = this.getSharedLibraryPathsAsLdLibraryPaths(key.libraries, dirPath);
|
|
|
|
const result = await this.buildExecutable(key.compiler.exe, compilerArguments, inputFilename, execOptions);
|
|
|
|
const fullResult: BuildResult = {
|
|
...result,
|
|
buildsteps: [],
|
|
downloads,
|
|
executableFilename: outputFilename,
|
|
compilationOptions: compilerArguments,
|
|
};
|
|
|
|
const objectFilename = this.getOutputFilename(dirPath);
|
|
if (objectFilename !== inputFilename && (await fileExists(objectFilename))) {
|
|
const inputArch = await this.getArchitecture(fullResult, objectFilename);
|
|
const ldResult = await this.runLinker(fullResult, inputArch, objectFilename, outputFilename);
|
|
|
|
fullResult.stderr = fullResult.stderr.concat(ldResult.stderr);
|
|
}
|
|
|
|
return fullResult;
|
|
}
|
|
|
|
override checkOutputFileAndDoPostProcess(
|
|
asmResult: CompilationResult,
|
|
outputFilename: string,
|
|
filters: ParseFiltersAndOutputOptions,
|
|
) {
|
|
return this.postProcess(asmResult, outputFilename, filters);
|
|
}
|
|
|
|
override getObjdumpInputFilename(defaultOutputFilename: string): string {
|
|
return this.getGeneratedOutputFilename(defaultOutputFilename);
|
|
}
|
|
|
|
override isCfgCompiler() {
|
|
return true;
|
|
}
|
|
}
|