search for: toyvm

Displaying 9 results from an estimated 9 matches for "toyvm".

2013 Jul 21
1
[LLVMdev] error on compiling toy-vm
Hi all, The make command errors out: [toyVM ./tools/toyVM]: Generating frame tables initializer for .build/toyVM-binary.s [toyVM ./tools/toyVM]: Compiling .build/GenFrametables.cc [toyVM ./tools/toyVM]: Linking ../../Release/bin/toyVM clang: error: no such file or directory: '/home/user/vmkit/Release+Asserts/lib/Release/lib/libInlineMMTk...
2013 Sep 02
0
[LLVMdev] Error on running ToyVM
Hi all, After implementing the ToyVM::runApplication method, I run the ToyVM binary, A segmentation fault occurs on starting ToyThread. My code is: void ToyVM::runApplication(int argc, char** argv) { ToyThread *tt = new ToyThread(this); mainThread = tt; typedef void (*vmkitThreadfptr)(vmkit::Thread*); void (*mainStartPtr)(vmkit::Thr...
2013 Sep 05
0
[LLVMdev] Error on running ToyVM (included in vmkit)
Hi all, After implementing the ToyVM::runApplication method, I run the ToyVM binary, A segmentation fault occurs on starting ToyThread. My code is: void ToyVM::runApplication(int argc, char** argv) { ToyThread *tt = new ToyThread(this); mainThread = tt; typedef void (*vmkitThreadfptr)(vmkit::Thread*); void (*mainStartPtr)(vmkit::T...
2013 Sep 18
0
[LLVMdev] Error on completing ToyThread::execute() in ToyVM (vmkit project)
...method provided by the VirtualTable class. -- Harris Bakiras -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of mkh Sent: mercredi 18 septembre 2013 13:44 To: LLVMdev Subject: [LLVMdev] Error on completing ToyThread::execute() in ToyVM (vmkit project) -- Hi all, My code is: TOY_VAR(Picture*, aPic); aPic = Picture::doNew(-2, 1, -1, 1, 1900, 1200); This code has the following compilation error: ../lib/ToyRoot.h:41:33: error: no member named 'getVirtualTable' in 'Toy::Picture'...
2013 Sep 18
2
[LLVMdev] Error on completing ToyThread::execute() in ToyVM (vmkit project)
-- Hi all, My code is: TOY_VAR(Picture*, aPic); aPic = Picture::doNew(-2, 1, -1, 1, 1900, 1200); This code has the following compilation error: ../lib/ToyRoot.h:41:33: error: no member named 'getVirtualTable' in 'Toy::Picture' res = gc::operator new(sz, o.getVirtualTable()); ~ ^ Is it correct?
2013 Aug 08
0
[LLVMdev] ToyVM tutorial
Hi! Thank you for your project! Now I'm trying to make ToyVM like in your "VMKit tutorial", but that tutorial isn't for the very beginners and isn't very detailed. Also comments in French are not very easy for understanding . So I have problems with that. Do you have any more detailed tutorials (maybe you just haven't posted the latest...
2013 Aug 08
0
[LLVMdev] ToyVM vmkit question
Hi, As I see, ToyVM tutorial is the only introduction in VMKit for beginners, but I have some problems with it. For the moment I was able to build it, but without JIT compiler. I found the place in base code where to generate calling of jitCompute function, but I really have no idea understand how to do it. Best Rega...
2013 Mar 21
1
[LLVMdev] [VMKit]
Hi there. Thanks for recent work that make vmkit working. As far as I know, ToyVM[0] is the only entry point to vmkit for beginners and I think it's outdated because of dependance of LLVM < 3.2 (bad include paths, TargetData type error, ...) Can you please, update it to recent changes if it's possible ? Also Is there other(s) way(s) to get started with vmkit ? Thanks...
2013 Aug 08
0
[LLVMdev] Enjoying vmkit
Hi. I became study vmkit and did not find any methods to understand its structure and functional capabilities expect building toyVM. In process of its building I have encountered with some problems: 1) I don't understand how and when tracer is called by collector, because methods MandelPix::tracer and Picture::tracer I had wrote are never called by collector; 2) I don't understand how I should generate call jitCompute &...