search for: andrii

Displaying 20 results from an estimated 22 matches for "andrii".

Did you mean: andrei
2009 May 08
5
[LLVMdev] Automake and llvm-config
...ifferent workarounds but nothing helps :( The only way I found is to copy llvm-config's output directly to Makefile.am which is non-portable. So actually the question is how to use backticks in Makefile.am, but I posted it here because I hope everybody has already solved the problem :) Thanks, Andrii
2013 Apr 10
4
XEN with SMP on ARMv7 with virtualizations extensions
Guys, Could you please clarify if SMP available for XEN on ARMv7 with virtualizations extensions? Browsing through stuff for Arndale I do see enabling secondary CPU on XEN site and SMP enabling on dom0 kernel site. But I do not see SMP infrastructure implementation on the XEN site. Sincerely, Andrii Anisov. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
2009 Sep 06
3
[LLVMdev] Equivalent types
...cause of the definition: %struct.reValue = type { %"struct.reValue::$_44", %"struct.reValue::$_46" } %"struct.reValue::$_44" = type { i32 } %"struct.reValue::$_46" = type { i64 } What is the easiest way to solve this problem? Thanks, Andrii
2009 Sep 05
2
[LLVMdev] Cross-module optimization
...ules to be inlined in functions that I've built. Is it possible with LLVM? As I understood PassManager runs upon only one module at once. May be is there some workaround? Like joining all the modules in one and then optimize it. Unfortunately I couldn't find a way to join modules. Thanks, Andrii
2009 Sep 06
0
[LLVMdev] Equivalent types
Hi Andrii-- They're not equivalent as far as LLVM is concerned - the parameter type is { { i32 }. { i64 } }* whereas the function is being given a { i32, i64 }*. Probably the easiest way to work around this is a simple bitcast. Alastair On 7 Sep 2009, at 00:32, Andrii Vasyliev wrote: > Hi! &...
2013 Apr 12
4
XEN tools on a stripped system
Hello, Could you please clarify what libs and utils Xen tools need to run? Is it possible link XEN tools statically? Is there a chance to setup busybox based system for Dom0? Sincerely, Andrii Anisov. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
2014 Apr 15
1
CentOS 5/6 random system freezes
...on processes plus database processes. And then did: grep '13:35:37.4' * grep '13:35:37.3' * grep '13:35:37.2' * None of commans show any lines. So I guess the system was just doing nothing during this 600 ms. Is there any way to diagnose this issue? What it might be? -- Andrii Zinchenko mail at zinok.org
2008 Sep 30
1
[LLVMdev] Can't add Merge Duplicate Global Constants pass
Hi I have a program similar to kaleidoscope with same optimization passes. It works fine. But when I tried to add Constant Merge Pass with a line: OurFPM.add(createConstantMergePass()); the program died with segmentation fault. Then I tried to add the same line to native kaleidoscope from http://llvm.org/docs/tutorial/LangImpl4.html and I've got the same segmentation fault. The backtrace
2009 May 08
0
[LLVMdev] Automake and llvm-config
Can you use an intermediate variable? TMP = `...` mylang_LDADD = ... $TMP On 2009-05-08, at 04:40, Andrii Vasyliev wrote: > Hello, > > I'm using autotools to build my little lang. > So I want to have something like this in my Makefile.am: > > mylang_SOURCES = mylang.cpp > mylang_LDADD = mylib.a `llvm-config --cppflags --ldflags --libs core > jit native ipo` > > But au...
2009 May 08
0
[LLVMdev] Automake and llvm-config
Hi >>>>> "AV" == Andrii Vasyliev <andrii.vasyliev at gmail.com> writes: AV> Hello, I'm using autotools to build my little lang. So I want to AV> have something like this in my Makefile.am: AV> mylang_SOURCES = mylang.cpp mylang_LDADD = mylib.a `llvm-config AV> --cppflags --ldflags --libs core jit...
2009 Sep 05
0
[LLVMdev] Cross-module optimization
Hi Andrii, > May be is there some workaround? Like joining all the modules in one > and then optimize it. Unfortunately I couldn't find a way to join modules. llvm-link does this. Ciao, Duncan.
2008 Sep 25
3
[LLVMdev] Kaleidoscope doesn't work properly
Hi I hope this is a proper place to put my question. I've compiled Kaleidoscope from "Adding JIT and Optimizer Support" tutorial. Basically it works just fine but when I try to run extern'ed putchard function it aborts. Please, tell me what am I doing wrong? Here is more information: My PC runs FreeBSD. I've copied the toy source code exactly and didn't change it.
2008 Sep 24
1
[LLVMdev] LLVM and C++
Hi I want to use LLVM to generate a code working with C++ objects. I've got basics of LLVM IR generation from Kaleidoscope and other tutorials. Then I tried to llvm-dis'assemble llvm-gcc'ompiled C++ program and I see how to generate all this strangely named functions and how to run constructors and destructors. So I can imagine how to generate C++ compatible code with LLVM. But it
2008 Sep 25
0
[LLVMdev] Kaleidoscope doesn't work properly
Link with -rdynamic or provide a mapping. /Stein Roger Andrii Vasyliev wrote: > Hi > > I hope this is a proper place to put my question. > > I've compiled Kaleidoscope from "Adding JIT and Optimizer Support" tutorial. > Basically it works just fine but when I try to run extern'ed putchard > function it aborts. > Plea...
2008 Sep 25
3
[LLVMdev] Kaleidoscope doesn't work properly
Thanks, -rdynamic helps! It's a pity that it's not written in the tutorial. Also I'm interested how can I provide a mapping? 2008/9/25 srs <skaflotten at gmail.com>: > Link with -rdynamic or provide a mapping.
2008 Sep 26
0
[LLVMdev] Kaleidoscope doesn't work properly
I've already filed a bug report but nobody cares :-( Is it possible to fix the documentation? Because I think the tutorial is really important to beginners, which should not be misleading. -- Haohui On Sep 25, 2008, at 9:42 AM, Andrii Vasyliev wrote: > Thanks, -rdynamic helps! It's a pity that it's not written in the > tutorial. > > Also I'm interested how can I provide a mapping? > > 2008/9/25 srs <skaflotten at gmail.com>: >> Link with -rdynamic or provide a mapping. > __________...
2008 Oct 08
1
[LLVMdev] How can I create CallInst with a pointer to function
Hi I mean when I have in my program pointer to a function how should I build IR to call the function by the pointer? Or how can I create llvm::Function with a pointer to a function? I want to have something like this: int factorial (int n) { return n==0 ? 1 : n*factorial(n-1); } typedef int (*intFunc) (int); intFunc fptr = factorial; Value * N = ConstantInt::get(Type::Int32Ty,10);
2009 Sep 05
1
[LLVMdev] Cross-module optimization
...-link does this. Thanks for answer, Duncan! But I want to do it in my program and then run it with ExecutionEngine... Hey, but I took a look inside of llvm-link and found a Linker class which does modules linking! :) So, is this the right answer? To optimize modules altogether link them before? Andrii
2012 Oct 25
1
Dovecot sends BYE while fetching X-GM-MSGID
Hello everyone, While using the following set of commands, I am having the error as below: FETCH 7 (X-GM-MSGID) A15 FETCH 7 (X-GM-MSGID) A15 BAD Error in IMAP command FETCH: Unknown parameter X-GM-MSGID Can I somehow disable such errors so that Dovecot won't send BYE on X-GM-MSGID but just proceed with following emails? -- My configuration is below: [root at server ~]# cat /etc/issue
2014 Jun 10
0
Use Opus codec within Windows Runtime
...integrate codec into Windows Media Platform * Create NuGet package or Extension SDK and publish it (the simplest part :)) Also offloading some parts of the computation to the GPU with C++ AMP <http://blogs.msdn.com/b/vcblog/archive/2011/06/15/introducing-amp.aspx> would be useful Andrii. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/opus/attachments/20140610/69ff3b31/attachment-0001.htm