48 lines · plain
1Date: Tue, 13 Feb 2001 18:25:42 -06002From: Vikram S. Adve <vadve@cs.uiuc.edu>3To: Chris Lattner <sabre@nondot.org>4Subject: RE: LLVM Concerns...5 6> 1. Reference types7> Right now, I've spec'd out the language to have a pointer type, which8> works fine for lots of stuff... except that Java really has9> references: constrained pointers that cannot be manipulated: added and10> subtracted, moved, etc... Do we want to have a type like this? It11> could be very nice for analysis (pointer always points to the start of12> an object, etc...) and more closely matches Java semantics. The13> pointer type would be kept for C++ like semantics. Through analysis,14> C++ pointers could be promoted to references in the LLVM15> representation.16 17 18You're right, having references would be useful. Even for C++ the *static*19compiler could generate references instead of pointers with fairly20straightforward analysis. Let's include a reference type for now. But I'm21also really concerned that LLVM is becoming big and complex and (perhaps)22too high-level. After we get some initial performance results, we may have23a clearer idea of what our goals should be and we should revisit this24question then.25 26> 2. Our "implicit" memory references in assembly language:27> After thinking about it, this model has two problems:28> A. If you do pointer analysis and realize that two stores are29> independent and can share the same memory source object,30 31not sure what you meant by "share the same memory source object"32 33> there is34> no way to represent this in either the bytecode or assembly.35> B. When parsing assembly/bytecode, we effectively have to do a full36> SSA generation/PHI node insertion pass to build the dependencies37> when we don't want the "pinned" representation. This is not38> cool.39 40I understand the concern. But again, let's focus on the performance first41and then look at the language design issues. E.g., it would be good to know42how big the bytecode files are before expanding them further. I am pretty43keen to explore the implications of LLVM for mobile devices. Both bytecode44size and power consumption are important to consider there.45 46--Vikram47 48