"use strict"; // set up require.js for worker importScripts("dasm.js"); importScripts("acme.js"); importScripts("plasm.js"); importScripts("cc65.js"); importScripts("ca65.js"); importScripts("ld65.js"); // shim out window and document objects for security // https://github.com/mbostock/d3/issues/1053 var noop = function() { return new Function(); }; var window = noop(); window.CSSStyleDeclaration = noop(); window.CSSStyleDeclaration.setProperty = noop(); window.Element = noop(); window.Element.setAttribute = noop(); window.Element.setAttributeNS = noop(); window.navigator = noop(); var document = noop(); document.documentElement = noop(); document.documentElement.style = noop(); // load filesystems for CC65 and others asynchronously var fsMeta, fsBlob; { var xhr = new XMLHttpRequest(); xhr.responseType = 'blob'; xhr.open("GET", "fs65.data", false); // synchronous request xhr.send(null); fsBlob = xhr.response; xhr = new XMLHttpRequest(); xhr.responseType = 'json'; xhr.open("GET", "fs65.js.metadata", false); // synchronous request xhr.send(null); fsMeta = xhr.response; console.log("Loaded filesystem", fsMeta.files.length, 'files', fsBlob.size, 'bytes'); } // mount the filesystem at /share function setupFS(FS) { FS.mkdir('/share'); FS.mount(FS.filesystems['WORKERFS'], { packages: [{ metadata: fsMeta, blob: fsBlob }] }, '/share'); } // main worker start var DASM_MAIN_FILENAME = "main.a"; var DASM_PREAMBLE = "\tprocessor 6502\n"; var DASM_PREAMBLE_LINES = 1; var print_fn = function(s) { console.log(s); //console.log(new Error().stack); } function parseDASMListing(code, unresolved) { var errorMatch = /main.a [(](\d+)[)]: error: (.+)/; // 4 08ee a9 00 start lda #01workermain.js:23:5 var lineMatch = /\s*(\d+)\s+(\S+)\s+([0-9a-f]+)\s+([0-9a-f][0-9a-f ]+)\s+(.+)/; var equMatch = /\bequ\b/; var errors = []; var lines = []; var lastline = 0; for (var line of code.split(/\r?\n/)) { var linem = lineMatch.exec(line); if (linem && linem[1]) { var linenum = parseInt(linem[1]) - DASM_PREAMBLE_LINES; var filename = linem[2]; var offset = parseInt(linem[3], 16); var insns = linem[4]; var restline = linem[5]; // inside of main file? if (filename == DASM_MAIN_FILENAME) { if (insns && !restline.match(equMatch)) { lines.push({ line:linenum, offset:offset, insns:insns, iscode:restline[0] != '.' }); } lastline = linenum; } else { // inside of macro or include file if (linenum == -DASM_PREAMBLE_LINES) { // start of macro? lines.push({ line:lastline+1, offset:offset, insns:null }); } } // TODO: check filename too // TODO: better symbol test (word boundaries) for (var key in unresolved) { var pos = restline ? restline.indexOf(key) : line.indexOf(key); if (pos >= 0) { errors.push({ line:linenum, msg:"Unresolved symbol '" + key + "'" }); } } } var errm = errorMatch.exec(line); if (errm) { errors.push({ line:parseInt(errm[1]), msg:errm[2] }) } } return {lines:lines, errors:errors}; } function assembleDASM(code) { var re_usl = /(\w+)\s+0000\s+[?][?][?][?]/; var unresolved = {}; function match_fn(s) { var matches = re_usl.exec(s); if (matches) { unresolved[matches[1]] = 0; } } var Module = DASM({ noInitialRun:true, print:match_fn }); var FS = Module['FS']; FS.writeFile(DASM_MAIN_FILENAME, DASM_PREAMBLE + code); Module.callMain([DASM_MAIN_FILENAME, "-v3", "-la.lst"]); var aout = FS.readFile("a.out"); var alst = FS.readFile("a.lst", {'encoding':'utf8'}); var listing = parseDASMListing(alst, unresolved); return { exitstatus:Module.EXITSTATUS, output:aout.slice(2), listing:listing, intermediate:{listing:alst}, }; } // TODO: not quite done function assembleACME(code) { // stderr var re_err2 = /(Error|Warning) - File (.+?), line (\d+) ([^:]+) (.*)/; var errors = []; var errline = 0; function match_fn(s) { var matches = re_err2.exec(s); if (matches) { errors.push({ line:1, // TODO: parseInt(matches[3]), msg:matches[0] // TODO: matches[5] }); } } var Module = ACME({ noInitialRun:true, print:match_fn, printErr:match_fn }); var FS = Module['FS']; FS.writeFile("main.a", code); Module.callMain(["-o", "a.out", "-r", "a.rpt", "-l", "a.sym", "--setpc", "24576", "main.a"]); if (errors.length) { return {listing:{errors:errors}}; } var aout = FS.readFile("a.out"); var alst = FS.readFile("a.rpt", {'encoding':'utf8'}); // TODO var asym = FS.readFile("a.sym", {'encoding':'utf8'}); // TODO var listing = parseDASMListing(alst, {}); // TODO return { exitstatus:Module.EXITSTATUS, output:aout, listing:listing, intermediate:{listing:alst, symbols:asym}, }; } function compilePLASMA(code) { // stdout var outstr = ""; function out_fn(s) { outstr += s; outstr += "\n"; } // stderr var re_err1 = /\s*(\d+):.*/; var re_err2 = /Error: (.*)/; var errors = []; var errline = 0; function match_fn(s) { var matches = re_err1.exec(s); if (matches) { errline = parseInt(matches[1]); } matches = re_err2.exec(s); if (matches) { errors.push({ line:errline, msg:matches[1] }); } } var Module = PLASM({ noInitialRun:true, noFSInit:true, print:out_fn, printErr:match_fn, }); var FS = Module['FS']; var i = 0; var output = []; FS.init( function() { return i