mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 00:28:23 +02:00
[PATCH 180/188] starting wasa project to be the assembler
From 86e4726f85ee8aad811c9c4b6b6cfe63946a80fb Mon Sep 17 00:00:00 2001 From: Dmitry Boyarintsev <skalogryz.lists@gmail.com> Date: Wed, 8 Apr 2020 12:56:59 -0400 git-svn-id: branches/wasm@46176 -
This commit is contained in:
parent
db6caf4496
commit
dbde36f012
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -19000,6 +19000,8 @@ utils/wasmbin/testscan/inst_const_i64_neg_hex.wat svneol=native#text/plain
|
||||
utils/wasmbin/testscan/inst_const_i64_pos.wat svneol=native#text/plain
|
||||
utils/wasmbin/testscan/inst_if_value.wat svneol=native#text/plain
|
||||
utils/wasmbin/testscan/inst_unreachable.wat svneol=native#text/plain
|
||||
utils/wasmbin/wasa.lpi svneol=native#text/plain
|
||||
utils/wasmbin/wasa.pas svneol=native#text/plain
|
||||
utils/wasmbin/wasmbin.pas svneol=native#text/plain
|
||||
utils/wasmbin/wasmbincode.pas svneol=native#text/plain
|
||||
utils/wasmbin/wasmbindebug.pas svneol=native#text/plain
|
||||
|
63
utils/wasmbin/wasa.lpi
Normal file
63
utils/wasmbin/wasa.lpi
Normal file
@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<General>
|
||||
<Flags>
|
||||
<MainUnitHasCreateFormStatements Value="False"/>
|
||||
<MainUnitHasTitleStatement Value="False"/>
|
||||
<MainUnitHasScaledStatement Value="False"/>
|
||||
</Flags>
|
||||
<SessionStorage Value="InProjectDir"/>
|
||||
<MainUnit Value="0"/>
|
||||
<Title Value="wasa"/>
|
||||
<UseAppBundle Value="False"/>
|
||||
<ResourceType Value="res"/>
|
||||
</General>
|
||||
<BuildModes Count="1">
|
||||
<Item1 Name="Default" Default="True"/>
|
||||
</BuildModes>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<UseFileFilters Value="True"/>
|
||||
</PublishOptions>
|
||||
<RunParams>
|
||||
<FormatVersion Value="2"/>
|
||||
<Modes Count="0"/>
|
||||
</RunParams>
|
||||
<Units Count="2">
|
||||
<Unit0>
|
||||
<Filename Value="wasa.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
</Unit0>
|
||||
<Unit1>
|
||||
<Filename Value="wasmbinwriter.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
</Unit1>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<Target>
|
||||
<Filename Value="wasa"/>
|
||||
</Target>
|
||||
<SearchPaths>
|
||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
</CompilerOptions>
|
||||
<Debugging>
|
||||
<Exceptions Count="3">
|
||||
<Item1>
|
||||
<Name Value="EAbort"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<Name Value="ECodetoolError"/>
|
||||
</Item2>
|
||||
<Item3>
|
||||
<Name Value="EFOpenError"/>
|
||||
</Item3>
|
||||
</Exceptions>
|
||||
</Debugging>
|
||||
</CONFIG>
|
121
utils/wasmbin/wasa.pas
Normal file
121
utils/wasmbin/wasa.pas
Normal file
@ -0,0 +1,121 @@
|
||||
program wasa;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
SysUtils, Classes, watparser, watscanner, wasmmodule, wasmbinwriter,
|
||||
wasmnormalize;
|
||||
|
||||
procedure Traverse(p: TWatScanner);
|
||||
begin
|
||||
while p.Next do begin
|
||||
write(p.token,' ', p.resText);
|
||||
if p.token = weInstr then
|
||||
write('; inst = $', IntToHex(p.instrCode,2))
|
||||
else if p.token = weError then begin
|
||||
writeln('offset = ',p.ofs,' ',p.resText);
|
||||
break;
|
||||
end;
|
||||
writeln;
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure WriteBin(const fndst: string; m: TWasmModule; WriteReloc: Boolean);
|
||||
var
|
||||
f : TFileStream;
|
||||
begin
|
||||
f := TFileStream.Create(fndst, fmCreate);
|
||||
try
|
||||
Normalize(m);
|
||||
WriteModule(m, f, WriteReloc, WriteReloc);
|
||||
finally
|
||||
f.Free;
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure Run(const fn: string; const doTraverse: Boolean; doReloc: Boolean);
|
||||
var
|
||||
st : TFileStream;
|
||||
s : string;
|
||||
p : TWatScanner;
|
||||
m : TWasmModule;
|
||||
err : string;
|
||||
begin
|
||||
st := TFileStream.Create(fn, fmOpenRead or fmShareDenyNone);
|
||||
p := TWatScanner.Create;
|
||||
try
|
||||
SetLength(s, st.Size);
|
||||
if length(s)>0 then st.Read(s[1], length(s));
|
||||
p.SetSource(s);
|
||||
if doTraverse then begin
|
||||
Traverse(p);
|
||||
Exit;
|
||||
end;
|
||||
m := TWasmModule.Create;
|
||||
try
|
||||
if not ParseModule(p, m, err) then
|
||||
writeln('Error: ', err)
|
||||
else
|
||||
WriteBin( ChangeFileExt(fn,'.wasm'), m, doReloc);
|
||||
finally
|
||||
m.Free;
|
||||
end;
|
||||
finally
|
||||
p.Free;
|
||||
st.Free;
|
||||
end;
|
||||
end;
|
||||
|
||||
var
|
||||
gFn : string;
|
||||
gCommand : string = '';
|
||||
gReloc : Boolean = true;
|
||||
gCatch : Boolean = false;
|
||||
|
||||
procedure ParseParams;
|
||||
var
|
||||
i : integer;
|
||||
s : string;
|
||||
ls : string;
|
||||
begin
|
||||
i:=1;
|
||||
while i<=ParamCount do begin
|
||||
s := ParamStr(i);
|
||||
if (s<>'') and (s[1]='-') then begin
|
||||
ls := AnsiLowerCase(s);
|
||||
if ls = '-noreloc' then gReloc := false
|
||||
else if ls = '-catch' then gCatch := true
|
||||
else gCommand:=ls;
|
||||
end else
|
||||
gFn := s;
|
||||
inc(i);
|
||||
end;
|
||||
end;
|
||||
|
||||
begin
|
||||
ParseParams;
|
||||
if (gFn='') then begin
|
||||
writeln('please sepcify the input .wat file');
|
||||
writeln('other use:');
|
||||
writeln(' -compile %inpfn%');
|
||||
writeln(' -noreloc - prevents relocation information from being written');
|
||||
writeln(' -traverse %inpfn%');
|
||||
exit;
|
||||
end;
|
||||
if not FileExists(gFn) then begin
|
||||
writeln('file doesn''t exist: ', gFn);
|
||||
exit;
|
||||
end;
|
||||
|
||||
if gCatch then
|
||||
try
|
||||
Run(gFn, gCommand = '-traverse', gReloc);
|
||||
except
|
||||
on e: exception do
|
||||
writeln(e.message);
|
||||
end
|
||||
else
|
||||
Run(gFn, gCommand = '-traverse', gReloc);
|
||||
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user