search for: mclagett

Displaying 10 results from an estimated 10 matches for "mclagett".

Did you mean: clagett
2011 Oct 06
0
[LLVMdev] LLVM IR is a compiler IR
Michael Clagett <mclagett at hotmail.com> writes: > There's about 32 core op codes that constitute the basic instruction > set and I can envision mapping each of these to some sequence of LLVM > IR. There's also a whole lot more "extended opcodes" that are > executed by the same core instr...
2011 Oct 06
4
[LLVMdev] LLVM IR is a compiler IR
Hi Folks -- Let me go ahead and pose a question similar to the one Joachim poses below. I too am trying to evaluate whether LLVM will be of use to me in building a compiler and garbage collection mechanism for a byte code vm that I have built. Although there are multiple types of code that can be created with this system, all of them eventually translate to execution of one or more of these
2011 Oct 06
0
[LLVMdev] FW: LLVM IR is a compiler IR
Sorry for the noise, but this is the message I meant to send to the list rather than replying to David directly. Unfortunately, I just sent his message to me before. From: mclagett at hotmail.com To: greened at obbligato.org Subject: RE: [LLVMdev] LLVM IR is a compiler IR Date: Thu, 6 Oct 2011 19:44:11 +0000 Thanks for your prompt reply. My answers are below at the end of your message. > From: greened at obbligato.org > To: mclagett at hotmail.com > CC: llv...
2011 Sep 13
0
[LLVMdev] Strategy for leveraging llvm optimizations in vm
...ble slowdowns. I'd imagine that if your asm is sufficiently restricted, such as not needing to worry about arithmetic flags, the x87 FPU stack, or arbitrary control flow, then it should be easy to do without introducing any slowdowns. Reid On Tue, Sep 13, 2011 at 9:14 AM, Michael Clagett <mclagett at hotmail.com> wrote: > > Hi -- > > I'm still very much a newbie with llvm, but am looking (hopefully) to use it > to compile into native intel code a set of source that is a combination of > byte codes for my own custom vm and intel code that has been coded in > assemb...
2011 Sep 13
4
[LLVMdev] Strategy for leveraging llvm optimizations in vm
Hi -- I'm still very much a newbie with llvm, but am looking (hopefully) to use it to compile into native intel code a set of source that is a combination of byte codes for my own custom vm and intel code that has been coded in assembly language directly. In an earlier exchange, I already discovered that llvm does not do any optimizations on intel assembly language code. This would be an
2010 Dec 02
1
[LLVMdev] Is anyone working on a Windows VmKit port?
Curious as to whether any work is in progress on this? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101202/0ae5d181/attachment.html>
2011 Apr 21
1
[LLVMdev] Sources on optimization and debugging
Hi Everyone -- I'm planning on using LLVM to add some optimizing compiling capability to a Byte-Code driven virtual machine that is part of my foundation platform for a series of tool products I am building. I'm still pretty new to this whole arena and am in particular curious about one important aspect: It strikes me that the more optimizations applied to code (whether at the source
2011 Sep 13
0
[LLVMdev] Strategy for leveraging llvm optimizations in vm
...VM code generator won't generate code that clobbers %eax). It's basically the same as GCC inline assembly. -- John T. > > ------------------------------------------------------------------------ > Date: Tue, 13 Sep 2011 09:20:03 -0500 > From: criswell at illinois.edu > To: mclagett at hotmail.com > CC: llvmdev at cs.uiuc.edu > Subject: Re: [LLVMdev] Strategy for leveraging llvm optimizations in vm > > On 9/13/11 8:14 AM, Michael Clagett wrote: > > > Hi -- > > I'm still very much a newbie with llvm, but am looking (hopefully) > to...
2011 Sep 02
1
[LLVMdev] Best way to use LLVM with byte code vm
Hi -- I'm wondering if some of you old hands might offer me some guidance. I've been working for some time with a virtual machine platform that is based loosely on the instruction set of a Forth hardware processor that Charles Moore designed sometime back. He used what he called a "MISC" or "Minimal Instruction Set Computer" and the original instruction set I was
2011 Oct 07
2
[LLVMdev] Your question about LLVM
Wondering if you've gotten any further answering the question you pose below? I also am interested in being able to generate a JVM backend, but not departing, as you are, from coding in java itself, but rather as a means to integrate my own custom vm with Java and be able to produce and consume java code easily from my custom environment. Just curios if you made any progress answering this