Displaying 3 results from an estimated 3 matches for "zwinkau".
2011 Sep 14
0
[LLVMdev] Generics
> Hi,
>
> I'm about designing the compiler backend of my script language and I
> have generic types in the language. An example is the array. An
> array#int means array of integers. You can compare it to Java's
> generics. Whenever i have a variable of the type "generic", the type
> should be replaced by the really used type.
> Now the question is: how do
2011 Sep 14
2
[LLVMdev] Generics
Hi,
I'm about designing the compiler backend of my script language and I have
generic types in the language. An example is the array. An array#int means
array of integers. You can compare it to Java's generics. Whenever i have a
variable of the type "generic", the type should be replaced by the really
used type.
Now the question is: how do i represent them in llvm without losing
2017 Dec 19
3
Register Allocation Graph Coloring algorithm and Others
...ams in SSA-form
Sebastian Hack, Daniel Grund, and Gerhard Goos
http://www.rw.cdl.uni-saarland.de/~grund/papers/cc06-ra_ssa.pdf
Simple and Efficient Construction of Static Single Assignment Form
Matthias Braun , Sebastian Buchwald , Sebastian Hack , Roland Leißa , Christoph Mallon , and Andreas Zwinkau
https://www.info.uni-karlsruhe.de/uploads/publikationen/braun13cc.pdf
Optimal register allocation for SSA-form programs in polynomial time
Sebastian Hack, Gerhard Goos
http://web.cs.ucla.edu/~palsberg/course/cs232/papers/HackGoos-ipl06.pdf
A lot of the earlier literature regarding the registe...