search for: skyey

Displaying 20 results from an estimated 29 matches for "skyey".

Did you mean: skey
2012 Jun 04
2
[LLVMdev] probleam about ThreadLocalImpl of llvm
Hi, everyone: I am very sorry to trouble you, but I need your help about my problem about ThreadLocalImpl in llvm of 2.8 version. I have compiled it in Windows xp with mingw, and have compiled skyeye(an open source project about simulator) as it uses llvm. But when I run a testcase ---- arm_hello, it came out segment fault. I used gdb.exe to trace it, it gave the following infomation: $ gdb.exe /opt/skyeye/bin/skyeye GNU gdb 6.8 Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+...
2012 Jun 04
0
[LLVMdev] probleam about ThreadLocalImpl of llvm
...le you, but I need your help about my problem about > ThreadLocalImpl in llvm of 2.8 version. this is a very old version of LLVM, I suggest you try something newer, eg the recently released version 3.1. Best wishes, Duncan. I have compiled it in Windows xp with > mingw, and have compiled skyeye(an open source project about simulator) as it > uses llvm. But when I run a testcase ---- arm_hello, it came out segment fault. > I used gdb.exe to trace it, it gave the following infomation: > > $ gdb.exe /opt/skyeye/bin/skyeye > GNU gdb 6.8 > Copyright (C) 2008 Free Software Fo...
2010 Nov 17
3
[LLVMdev] Is it possible to run llvm on mips machine?
...MIPS JIT or some exercise development on MIPS JIT. Where should I begin? Or what is it's current status? I am a completely newbie for llvm development. Just ever used X86 JIT to simulate something. Thanks MK > > -- > Bruno Cardoso Lopes > http://www.brunocardoso.cc > -- www.skyeye.org
2010 Jul 13
1
[LLVMdev] The question of sext instruction implementation
...lowing : case Instruction::SExt: return SrcTy->isIntOrIntVector() && DstTy->isIntOrIntVector()&& SrcBitSize < DstBitSize; So I feel confused the difference about the documentation and implementation. Thanks MK ---------------------------------------- www.skyeye.org
2010 Nov 14
2
[LLVMdev] Is it possible to run llvm on mips machine?
I like to get the support of llvm runtime so that I can run some VM that depends on llvm. I googled porting keyword and also simply try to cross compile llvm. Just like to know is it possbile ? Does any modification needed? Thanks MK -- www.skyeye.org
2011 Oct 24
1
[LLVMdev] if llvm can translate and generate the function in parallel with multithread
...ng code in multithread environment: ################## BasicBlock::Create(_CTX(), "dispatch", cpu->cur_func, 0); BranchInst::Create(bb_start, label_entry); cpu->exec_engine->getPointerToFunction ##################3 And cpu variable is stored for every thread. Thanks MK -- www.skyeye.org
2012 Jun 13
2
[LLVMdev] The porting issue from llvm-2.8 to llvm-3.0
...reate(Instruction::And, v_cpsr, ConstantInt::get(getIntegerType(4), 0x80), "", bb_dispatch) The llvm complains the following error message: error: incomplete type 'llvm::ConstantInt' used in nested name specifier So who can give me some hints for the issue? Thanks MK -- www.skyeye.org
2010 Nov 17
0
[LLVMdev] Is it possible to run llvm on mips machine?
...t is it's current > status? > I am a completely newbie for llvm development. Just ever used X86 JIT > to simulate something. > > Thanks > MK > > > > > -- > > Bruno Cardoso Lopes > > http://www.brunocardoso.cc > > > > > > -- > www.skyeye.org > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev -- IMPORTANT NOTICE: The contents of this email and any attachments are confidential and ma...
2011 Mar 14
2
[LLVMdev] How to load a data from the address of unsiged long type
..._engine->getTargetData()->getIntPtrType(_CTX()); Value* ptr = new IntToPtrInst(a, intptr_type, "", bb); Value* data = new LoadInst(ptr, "", false, bb); Error: Segmentation fault Any person can give me some hints for my case? Thanks MK -- www.skyeye.org
2012 Jun 12
2
[LLVMdev] Why always abort in verifyFunction?
...> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >> >> > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > -- www.skyeye.org -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120612/0ab2f5ba/attachment.html>
2012 Apr 12
2
[LLVMdev] Question::ARM simulation and cross compilation.
Hello, I'm trying to evaluate the performance improvement of instruction scheduling on one of the inorder ARM processor, I was looking for ARM simulator and I found two (Simplescalar/ARM and SimIt-ARM) The code generated using llvm-2.9 and llvm-gcc and gcc 3.2. I used these command : $ llvm-gcc -O3 -o test1.bc -c --emit-llvm test1.c $ llc -O3 -o test1.s -march=arm test1.bc -mcpu=strongarm110
2010 Nov 17
2
[LLVMdev] Is it possible to run llvm on mips machine?
...wbie for llvm development. Just ever used X86 JIT >> to simulate something. >> >> Thanks >> MK >> >> > >> > -- >> > Bruno Cardoso Lopes >> > http://www.brunocardoso.cc >> > >> >> >> >> -- >> www.skyeye.org >> _______________________________________________ >> LLVM Developers mailing list >> LLVMdev at cs.uiuc.edu         http://llvm.cs.uiuc.edu >> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > -- IMPORTANT NOTICE: The contents of this email and any attachment...
2010 Aug 17
1
[LLVMdev] What is the meaning of addRegisterDead function
...of llvm source but no idea. % cumulative self self total time seconds seconds calls Ts/call Ts/call name 5.16 0.33 0.33 llvm::MachineInstr::addRegisterDead(unsigned int, llvm::TargetRegisterInfo const*, bool) Thanks in advance. Michael.Kang -- www.skyeye.org
2010 Nov 16
0
[LLVMdev] Is it possible to run llvm on mips machine?
Hi, On Sun, Nov 14, 2010 at 5:39 AM, Michael.Kang <blackfin.kang at gmail.com> wrote: > I like to get the support of llvm runtime so that I can run some VM > that depends on llvm. I googled porting keyword > and also simply try to cross compile llvm. Just like to know is it > possbile ? Does any modification needed? You can compile and run llvm tools in a mips machine, but
2011 Mar 07
0
[LLVMdev] The size of native code for a given JIT function
Now I try to compare the native code block size generated by llvm and qemu. But I do not know how to get the native code block size of JIT function in llvm? Which API should be used? Thanks MK -- www.skyeye.org
2012 Mar 26
1
[LLVMdev] How to use BasicBlock to response the segmentation fault in generated code
I need to use one BasicBlock to deal with the segmentation fault in JIT function. But how to jump one BasicBlock when segmentation fault triggered in the JIT? Just like register a BasicBlock as a signal handler . Thanks MK -- www.skyeye.org
2012 Jun 12
0
[LLVMdev] Why always abort in verifyFunction?
On Tue, Jun 12, 2012 at 10:11:01AM +0800, Michael.Kang wrote: > > > On Mon, Jun 11, 2012 at 5:44 PM, Joey Gouly <joel.gouly at gmail.com> wrote: > > Hi Xiu, > > The Verifier pass runs a PreVerifier pass, which does not honour the action > argument, > and will always abort on a broken module, (Line 106, lib/VMCore/ > Verifier.cpp) >
2012 Jun 13
0
[LLVMdev] The porting issue from llvm-2.8 to llvm-3.0
"Michael.Kang" <blackfin.kang at gmail.com> writes: > error: incomplete type 'llvm::ConstantInt' used in nested name specifier > > So who can give me some hints for the issue? Maybe you are not including the relevant headers? ConstantInt is defined in Constants.h
2012 Jun 18
1
[LLVMdev] The porting issue from llvm-2.8 to llvm-3.0
...gmail.com> writes: > >>  error: incomplete type 'llvm::ConstantInt' used in nested name specifier >> >> So who can give me some hints for the issue? > > Maybe you are not including the relevant headers? > > ConstantInt is defined in Constants.h -- www.skyeye.org
2011 Mar 14
0
[LLVMdev] How to load a data from the address of unsiged long type
Hi Michael, > Now I have an address that present in a unsigned long address like the > following format: > Value* addr = CONST(0xc0008000) what is the type of addr? For that matter, what is CONST - what does it do? Ciao, Duncan. > > But I do not know how to read the data from the above addr varaible. I > tried the following three kind of code: > 1. Code: >