sim: sim_boolean: handle ORCB, add unit test

This commit is contained in:
Mikael Pettersson 2020-07-25 18:55:56 +02:00
parent a36bb57467
commit 4539eda246
3 changed files with 32 additions and 0 deletions

View File

@ -52,6 +52,7 @@
, handle_ORCAB/4
, handle_ORCAI/4
, handle_ORCAM/4
, handle_ORCB/4
, handle_ORCM/4
, handle_ORCMB/4
, handle_ORCMI/4
@ -705,6 +706,22 @@ handle_ORCMB(Core, Mem, IR, EA) ->
fun(Core1, Mem1) -> handle_ORCMB(Core1, Mem1, IR, EA) end)
end.
%% ORCB - Inclusive Or Complements of Both
-spec handle_ORCB(#core{}, sim_mem:mem(), IR :: word(), #ea{})
-> {#core{}, sim_mem:mem(), {ok, integer()} | {error, {module(), term()}}}.
handle_ORCB(Core, Mem, IR, EA) ->
case sim_core:c(Core, Mem, EA) of
{ok, CE} ->
AC = IR band 8#17,
CA = sim_core:get_ac(Core, AC),
Word = ((bnot CA) bor (bnot CE)) band ((1 bsl 36) - 1),
sim_core:next_pc(sim_core:set_ac(Core, AC, Word), Mem);
{error, Reason} ->
sim_core:page_fault(Core, Mem, ea_address(EA), read, Reason,
fun(Core1, Mem1) -> handle_ORCB(Core1, Mem1, IR, EA) end)
end.
%% Miscellaneous ===============================================================
ea_address(#ea{section = Section, offset = Offset}) ->

View File

@ -309,6 +309,7 @@ dispatch(Core, Mem, IR, EA) ->
8#465 -> sim_boolean:handle_ORCMI(Core, Mem, IR, EA);
8#466 -> sim_boolean:handle_ORCMM(Core, Mem, IR, EA);
8#467 -> sim_boolean:handle_ORCMB(Core, Mem, IR, EA);
8#470 -> sim_boolean:handle_ORCB(Core, Mem, IR, EA);
_ ->
PC = (Core#core.pc_section bsl 18) bor Core#core.pc_offset,
{Core, Mem, {error, {?MODULE, {dispatch, PC, IR, EA}}}}

View File

@ -100,6 +100,7 @@
-define(OP_ORCMI, 8#465).
-define(OP_ORCMM, 8#466).
-define(OP_ORCMB, 8#467).
-define(OP_ORCB, 8#470).
%% 2.4 Boolean Functions =======================================================
@ -769,6 +770,19 @@ orcmb_test() ->
, {#ea{section = 1, offset = 1, islocal = false}, ?COMMA2(-1, -1)} % AC1 = -1,,-1
]).
%% ORCB - Inclusive Or Complements of Both
orcb_test() ->
Prog =
[ {1, 8#100, ?INSN(?OP_MOVEI, 1, 0, 0, 8#707070)} % 1,,100/ MOVEI 1,707070
, {1, 8#101, ?INSN(?OP_ORCB, 1, 0, 0, 8#200)} % 1,,101/ ORCB 1,200
, {1, 8#102, ?INSN_INVALID} % 1,,102/ <invalid>
, {1, 8#200, ?COMMA2(0, 8#070707)} % 1,,200/ 0,,070707
],
expect(Prog, [], {1, 8#102}, ?DEFAULT_FLAGS,
[ {#ea{section = 1, offset = 1, islocal = false}, ?COMMA2(-1, -1)} % AC1 = -1,,-1
]).
%% Common code to run short sequences ==========================================
expect(Prog, ACs, ExpectedPC, ExpectedFlags, ExpectedEs) ->