Tagged Questions

A program transformation is any process that converts a program into another program. They are used to optimize programs, or to translate them to other languages, or to make mass changes to support evolution. That process may be a manual process, but generally are thought of as automated actions. ...

learn more… | top users | synonyms

25
votes
11answers
2k views

Converting C source to C++

How would you go about converting a reasonably large (>300K), fairly mature C codebase to C++? The kind of C I have in mind is split into files roughly corresponding to modules (i.e. less granular ...
8
votes
2answers
777 views

What is tail-recursion elimination?

Steve Yegge mentioned it in a blog post and I have no idea what it means, could someone fill me in? Is it the same thing as tail call optimization?
7
votes
4answers
327 views

Is there any formal definition for “refactoring”?

Anyone knows a way to define refactoring in a more formal way? UPDATE. A refactoring is a pair R = (pre; T) where pre is the precondition that the program must satisfy, and T is the program ...
3
votes
5answers
133 views

How to automatically remove methods in java code

I need to remove some methods in a large java project and I was wondering if there are tools that would help me do so. I would basically specify a signature and a source folder in which all the ...
3
votes
5answers
214 views

Any C compiler with C output?

we all know that C compilers spit out assembly. However I am doing research where my tool only accepts a narrow subset of ANSI C. Is there any C-to-C translators out there that can inline functions ...
3
votes
2answers
101 views

Papers or tools for parallelism discovering

I am looking for papers or tools about parallelism discovering. More explicitly, if you have a sequential source code, how to find sections which could be efficiently parallelized (taking account of ...
2
votes
1answer
60 views

Stratego/XT: Understanding the basic of basics

I have really tried to get my head around the first steps of understanding Stratego/XT. I've googled a lot and all the web resources I have found seem to make a large enough leap at the beginning ...
2
votes
2answers
469 views

Parallel Dynamic Programming

Are there any good papers discussing how to take a dynamic program and parallelize it?
1
vote
3answers
125 views

What is an AST transformation?

What is an AST transformation in general? I came across these words when reading Groovy blog's. But what it is in general?
1
vote
2answers
66 views

Is there any language to specify automatic code modifications?

I'm doing some work where I need to be able to describe modifications to some program code that are to be done automatically. Is there any language that allows to describe this? The language should ...
0
votes
0answers
20 views

Stratego/XT: how to use a bound variable in rewrite rule

I've been learning Stratego recently. And I got stuck about how to use a bound variable. I came up with an example as follows: The current term is "Plus(Int(i),Int(j))", (i=3,j=5). I defined rule R ...
0
votes
2answers
179 views

Running generated ARM machine code on Android gives UnsupportedOperationException with Java Bitmap objects

We ( http://www.mosync.com ) have compiled our ARM recompiler with the Android NDK which takes our internal byte code and generates ARM machine code. When executing recompiled code we see an enormous ...
0
votes
1answer
48 views

What is this symbolic code transformation called?

I often cross this kind of code transformation (or even mathematical transformation). (Python example, but applies to any language.) I've go a function def f(x): return x I use it into another ...