- 06 Jan, 2017 2 commits
- 05 Jan, 2017 2 commits
- 04 Jan, 2017 1 commit
-
-
qinsoon authored
-
- 28 Dec, 2016 1 commit
-
-
qinsoon authored
-
- 21 Dec, 2016 1 commit
-
-
qinsoon authored
-
- 20 Dec, 2016 2 commits
- 15 Dec, 2016 2 commits
- 08 Dec, 2016 2 commits
- 07 Dec, 2016 3 commits
-
-
qinsoon authored
-
qinsoon authored
Instead of using a cyclic doubly linked list, I am going to use two doubly linked list as fromspace and tospace. This will greatly simplify implementation.
-
qinsoon authored
Currently a treadmill for the whole space will be created, this takes huge amount of time and even if treadmill space is not used, it needs to be traversed in every gc. Going to change this tomorrow
-
- 06 Dec, 2016 1 commit
-
-
qinsoon authored
make tracing able to trace freelist space (may have degraded performance, gonna need to tune gc performance later)
-
- 05 Dec, 2016 3 commits
- 04 Dec, 2016 4 commits
- 30 Nov, 2016 3 commits
- 29 Nov, 2016 1 commit
-
-
qinsoon authored
a jump that directly is directly followed by a label of its target can be removed.
-
- 25 Nov, 2016 2 commits
- 24 Nov, 2016 3 commits
-
-
qinsoon authored
1. asm call do not use all argument registers (otherwise it will keep them alive) 2. spilling a register that is used and defined in one instruction will result in creating one new temporary, instead of two 3. spilling now deals with floating point 4. SELECT with int8 is implemented using conditional jump (cmov cannot take reg8) 5. postcall convention now deals correctly with fp return values 6. reg alloc conservative() was wrong in a few commits ago, fixed it 7. in liveness analysis, when finding a move between a temp and a register, find the color for the register (such as RAX for EAX)
-
qinsoon authored
-
qinsoon authored
-
- 23 Nov, 2016 3 commits
- 22 Nov, 2016 4 commits
-
-
qinsoon authored
for movl %edi %edi (where two operands are actually %edi %rdi), we will do a check, and ensure it get removed
-
qinsoon authored
changed a condition on coealescing. Fixed a bug in spilling rewrite. Currently test_extern_Func is broken
-
John Zhang authored
-
qinsoon authored
was using nalgebra::DMatrix to implement a graph
-