From 2d5eec8ba319608551b8d0683e33f83858c49b32 Mon Sep 17 00:00:00 2001 From: Steven Hugg Date: Fri, 4 Feb 2022 11:45:14 -0600 Subject: [PATCH] ecs: moved everything to dialect --- src/common/ecs/compiler.ts | 12 +++-- src/common/ecs/ecs.ts | 97 +++++++++++++++++++------------------- 2 files changed, 57 insertions(+), 52 deletions(-) diff --git a/src/common/ecs/compiler.ts b/src/common/ecs/compiler.ts index bfb8b3b0..6d9a63af 100644 --- a/src/common/ecs/compiler.ts +++ b/src/common/ecs/compiler.ts @@ -286,8 +286,10 @@ export class ECSCompiler extends Tokenizer { let tok = this.expectTokenTypes([ECSTokenType.CodeFragment]); let code = tok.str.substring(3, tok.str.length-3); let lines = code.split('\n'); + let re = /^\s*(;|\/\/|$)/; // ignore comments and blank lines for (let i=0; i 255) throw new ECSError(`out of range byte ${b}`); + return `.byte ${b}` + } else { + if (b.bitofs == 0) return `.byte <${b.symbol}` + else if (b.bitofs == 8) return `.byte >${b.symbol}` + else return `.byte (${b.symbol} >> ${b.bitofs})` // TODO? + } + } } // TODO: merge with Dialect? export class SourceFileExport { lines: string[] = []; - comment(text: string) { - this.lines.push(';' + text); - } - segment(seg: string, segtype: 'rodata' | 'bss' | 'code') { - if (segtype == 'bss') { - this.lines.push(`.zeropage`); // TODO - } else { - this.lines.push(`.code`); - } - } - label(sym: string) { - this.lines.push(`${sym}:`); - } - byte(b: number | ConstByte | undefined) { - if (b === undefined) { - this.lines.push(` .res 1`); - } else if (typeof b === 'number') { - if (b < 0 || b > 255) throw new ECSError(`out of range byte ${b}`); - this.lines.push(` .byte ${b}`) - } else { - if (b.bitofs == 0) this.lines.push(` .byte <${b.symbol}`) - else if (b.bitofs == 8) this.lines.push(` .byte >${b.symbol}`) - else this.lines.push(` .byte (${b.symbol} >> ${b.bitofs})`) // TODO? - } + line(s: string) { + this.text(s); } text(s: string) { for (let l of s.split('\n')) this.lines.push(l); } - debug_file(path: string) { - this.lines.push(` .dbg file, "${path}", 0, 0`); - } - debug_line(path: string, line: number) { - this.lines.push(` .dbg line, "${path}", ${line}`); - } - startScope(name: string) { - this.lines.push(` .scope ${name}`) - } - endScope(name: string) { - this.lines.push(` .endscope`) - this.lines.push(`${name}__Start = ${name}::__Start`) - // TODO: scope__start = scope::start - } toString() { return this.lines.join('\n'); } @@ -385,13 +384,14 @@ class DataSegment { this.initdata[ofs + i] = bytes[i]; } } - dump(file: SourceFileExport) { + dump(file: SourceFileExport, dialect: Dialect_CA65) { for (let i = 0; i < this.size; i++) { let syms = this.ofs2sym.get(i); if (syms) { - for (let sym of syms) file.label(sym); + for (let sym of syms) + file.line(dialect.label(sym)); } - file.byte(this.initdata[i]); + file.line(dialect.byte(this.initdata[i])); } } // TODO: move cfname functions in here too @@ -1116,20 +1116,21 @@ export class EntityScope implements SourceLocated { dump(file: SourceFileExport) { this.analyzeEntities(); this.generateCode(); - file.startScope(this.name); - file.segment(`${this.name}_DATA`, 'bss'); + let dialect = this.dialect; + file.line(dialect.startScope(this.name)); + file.line(dialect.segment(`${this.name}_DATA`, 'bss')); if (this.maxTempBytes) this.bss.allocateBytes('TEMP', this.maxTempBytes); - this.bss.dump(file); - file.segment(`${this.name}_RODATA`, 'rodata'); - this.rodata.dump(file); + this.bss.dump(file, dialect); + file.line(dialect.segment(`${this.name}_RODATA`, 'rodata')); + this.rodata.dump(file, dialect); //file.segment(`${this.name}_CODE`, 'code'); - file.label('__Start'); + file.line(dialect.label('__Start')); this.code.dump(file); for (let subscope of this.childScopes) { // TODO: overlay child BSS segments subscope.dump(file); } - file.endScope(this.name); + file.line(dialect.endScope(this.name)); } }