From b733f594c4ab0697aff9afdcc45e0421107dec85 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Fri, 19 Apr 2024 21:50:26 -0600 Subject: Vaporize.CFG Add incomplete edge creation --- V2VM.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'V2VM.java') diff --git a/V2VM.java b/V2VM.java index 0f0eab6..84a585a 100644 --- a/V2VM.java +++ b/V2VM.java @@ -48,7 +48,13 @@ public class V2VM { Op.PrintIntS, Op.HeapAllocZ, Op.Error, }; boolean allowLocals = true; - String[] registers = null; + String[] registers = { + "v0", "v1", + "a0", "a1", "a2", "a3", + "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7", + "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7", + "t8", + }; boolean allowStack = false; VaporProgram program; -- cgit v1.2.3