working on code some more
authorJacob Lifshay <programmerjake@gmail.com>
Tue, 13 Dec 2022 10:38:58 +0000 (02:38 -0800)
committerJacob Lifshay <programmerjake@gmail.com>
Tue, 13 Dec 2022 10:38:58 +0000 (02:38 -0800)
commit4ae9959c37247c50df48c0eca6255c416b7e245c
tree154f021425cd51bf967a617d0a228941332dff4a
parentba1be444bde4682156768fe4eb86730ae98b189d
working on code some more
40 files changed:
src/bigint_presentation_code/_tests/test_register_allocator.py
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/final.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/initial.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_0_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_10_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_11_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_12_copy_merge.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_12_copy_merge_result.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_13_copy_merge.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_13_copy_merge_result.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_14_copy_merge.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_14_copy_merge_result.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_15_copy_merge.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_15_copy_merge_result.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_16_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_17_freeze.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_18_freeze.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_19_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_1_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_20_copy_merge.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_20_copy_merge_result.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_21_copy_merge.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_21_copy_merge_result.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_22_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_23_copy_merge.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_23_copy_merge_result.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_24_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_2_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_3_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_4_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_5_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_6_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_7_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_8_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_register_allocator/test_register_allocate_graphs/expected/step_9_simplify.dot [new file with mode: 0644]
src/bigint_presentation_code/_tests/test_toom_cook.py
src/bigint_presentation_code/compiler_ir.py
src/bigint_presentation_code/register_allocator.py
src/bigint_presentation_code/toom_cook.py
src/bigint_presentation_code/util.py