mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-07-16 17:26:58 -04:00
This adds support for [RazorForge](https://github.com/dj-lumiere/razorforge-suflae), a precision-focused, ahead-of-time compiled language that lowers to LLVM IR. It follows `docs/AddingALanguage.md`. ### What's included - `lib/languages.ts` — language definition (`.rf`, Monaco mode `razorforge`, disassembly `llvm-ir`) - `types/languages.interfaces.ts` — `razorforge` language key - `lib/compilers/razorforge.ts` + `lib/compilers/_all.ts` — compiler driver - `static/modes/razorforge-mode.ts` + `static/modes/_all.ts` — Monarch syntax highlighting - `etc/config/razorforge.{defaults,amazon}.properties` — compiler config - `examples/razorforge/default.rf` — default example - `.github/labeler.yml` — `lang-razorforge` label ### Compiler behavior RazorForge's CLI takes verbs + positional arguments only (all build config lives in `razorforge.toml`, not flags). The driver invokes the `build` verb, which runs semantic analysis and code generation and writes LLVM IR next to the source (`example.rf` → `example.ll`) without invoking `opt`/`clang`. The primary output is the emitted LLVM IR, so `supportsIrView` is on and `supportsExecute` is off for now. ### Notes - Install recipe: compiler-explorer/infra#2177 - No logo yet (`logoFilename: null`); happy to add one in a follow-up. - Verified locally: `make`, `biome check`, `tsc`, and `vitest related` all pass; the example compiles to valid LLVM IR with the released `v0.0.3-alpha` build.
80 lines
3.4 KiB
TypeScript
80 lines
3.4 KiB
TypeScript
// Copyright (c) 2026, 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 path from 'node:path';
|
|
|
|
import type {CacheKey, CompilationCacheKey} 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';
|
|
|
|
export class RazorForgeCompiler extends BaseCompiler {
|
|
static get key() {
|
|
return 'razorforge';
|
|
}
|
|
|
|
constructor(info: PreliminaryCompilerInfo, env: CompilationEnvironment) {
|
|
super(info, env);
|
|
this.outputFilebase = 'example';
|
|
this.compiler.supportsIrView = true;
|
|
this.compiler.irArg = [];
|
|
this.compiler.supportsIntel = false;
|
|
}
|
|
|
|
// RazorForge's CLI takes verbs and positional arguments only — all build
|
|
// configuration lives in razorforge.toml, not flags. The `build` verb runs
|
|
// semantic analysis and code generation, writing LLVM IR next to the source
|
|
// file (example.rf -> example.ll) without invoking opt/clang.
|
|
override optionsForFilter(filters: ParseFiltersAndOutputOptions, outputFilename: string): string[] {
|
|
return [];
|
|
}
|
|
|
|
override orderArguments(
|
|
options: string[],
|
|
inputFilename: string,
|
|
libIncludes: string[],
|
|
libOptions: string[],
|
|
libPaths: string[],
|
|
libLinks: string[],
|
|
userOptions: string[],
|
|
staticLibLinks: string[],
|
|
) {
|
|
return ['build', this.filename(inputFilename)].concat(options, userOptions);
|
|
}
|
|
|
|
// The primary output is the emitted LLVM IR itself.
|
|
override getOutputFilename(dirPath: string, outputFilebase: string, key?: CacheKey | CompilationCacheKey): string {
|
|
return path.join(dirPath, `${outputFilebase}.ll`);
|
|
}
|
|
|
|
override getCompilerResultLanguageId(filters?: ParseFiltersAndOutputOptions): string | undefined {
|
|
return 'llvm-ir';
|
|
}
|
|
|
|
override getSharedLibraryPathsAsArguments(): string[] {
|
|
return [];
|
|
}
|
|
}
|