Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
14answers
2k views

Do you find you still need variables you can change, and if so why?

One of the arguments I've heard against functional languages is that single assignment coding is too hard, or at least significantly harder than "normal" programming. But looking through my code, I ...
4
votes
1answer
765 views

SSA for stack machine code

I'm working on a compiler for a stack machine (specifically CIL) and I've parsed the code into a graph of basic blocks. From here I'm looking to apply SSA to the methods, but it's not going too well. ...
1
vote
1answer
477 views

Java RSASSA-PKCS1 howto

Can anybody tell me how to generate signature for "RSASSA-PKCS1-v1.5" in Java? I, actually, want to know how do I with java.security.Signature class. Do I have to use any 3rd party libraries?
0
votes
1answer
36 views

Methods to implement a register-based IR in static single assignment form

I'm writing a compiler for a register-based bytecode to an IR with static single assignment (SSA) form (specifically, from Dalvik VM bytecode to LLVM IR, but I'm hoping the question can be taken for ...
0
votes
1answer
133 views

How to deal with alias registers in data-flow analysis using SSA form? (e.g. EAX/AX/AH/AL in x86)

For exmaple: How to represent the following x86 in SSA form: xor eax, eax inc ax By introducing some pseudo functions, I come up with: eax@1 = eax@0 ^ eax@0 ax@1 = LOWORD(eax@1) al@1 = ...
0
votes
1answer
168 views

What are good, freely available SSA/SCCP resources?

This is what I could come up with so far: gcc related: SSA for Trees Tree SSA – A New Optimization Framework for GCC Tree SSA A New Optimization Infrastructure for GCC Design and Implementation of ...