mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 07:04:04 -05:00
27 lines
953 B
TypeScript
27 lines
953 B
TypeScript
import path from 'node:path';
|
|
|
|
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';
|
|
|
|
export class C3Compiler extends BaseCompiler {
|
|
static get key() {
|
|
return 'c3c';
|
|
}
|
|
|
|
constructor(info: PreliminaryCompilerInfo, env: CompilationEnvironment) {
|
|
super(info, env);
|
|
this.compiler.supportsIrView = true;
|
|
this.compiler.irArg = ['--emit-llvm'];
|
|
}
|
|
|
|
override optionsForFilter(filters: ParseFiltersAndOutputOptions, outputFilename: string) {
|
|
return ['compile-only', '-g', '-l', 'pthread', '--no-obj', '--emit-asm'];
|
|
}
|
|
|
|
override getIrOutputFilename(inputFilename: string): string {
|
|
return this.filename(path.dirname(inputFilename) + '/output.ll');
|
|
}
|
|
}
|