similar to: [LLVMdev] converting large projects to LLVM

Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] converting large projects to LLVM"

2009 Oct 22
1
[LLVMdev] need to access static functions as extern
Hello, I write some instrumentation which needs to call static function from other files. Is there a way to associate a global name/alias to a static function? I need to turn the assembly code .align 16 .type some_static.2467, at function some_static.2467: CODE into .align 16 .type some_static.2467, at function some_static.2467: .align 16
2009 Oct 28
2
x11(title=' ')
Dear all I was trying to put a title for my plot, but i got this result, > x11(width=10,height=5,title="seedling");par(mfrow=c(1,2))Error in x11(width = 10, height = 5, title = "seedling") : unused argument(s) (title = "seedling")> The title is not taking How can i give a title for the plot (where in need to make 2 plots within a window of x11() ) thanking
2009 May 19
1
[LLVMdev] how to get a deterministic execution
The generated code is deterministic, but the global order the instructions were generated seems it is not (although the result is guaranteed to be the same). Now I think the order functions are processed might not be guaranteed. I've attached a test case, and here is what I get: ............................... (303)$ ~/bin/llvm/bin/gcc -O3 -emit-llvm try_calls_basic.2.c -c -o
2009 May 19
2
[LLVMdev] how to get a deterministic execution
Hello, For debugging purposes, I've added a unique id member to the Value class: global_next_vuid = 0; Value::Value(..){ vuid = ++global_next_vuid; } My hope is that by looking at the vuid of a Value, I can see its vuid, set a conditional breakpoint and re-run the compiler to see who (what pass) constructed that value. Maybe I am not doing it the right way, but the above 'vuid'
2010 Apr 09
1
[LLVMdev] offset of extra function argument
Hi, I am instrumenting certain calls, and want to add an extra argument. Say original: foo(int x, int y) changed into modified: foo(int x, int y, int EXTRA) This is in opt, before lowering. Given the list of original arguments, is it possible to tell the stack offset of the EXTRA argument? Thank you, Dan _________________________________________________________________
2009 Oct 28
5
need a local tech
I am sure many of you have seen my post asking question that I cannot seem to resolve. While the responses i have been getting have been helpful i still cannot seem to get this working 100%. So I have waving the white flag here. I give up. I need someone to come to my office and help me get this working. If anyone is interested the office is in Lexington KY. If someone is interested we can
2010 Apr 14
3
[LLVMdev] indirect jumps
Hi, What kind of C/C++ high level code can generate a computed jump, such as: jmpq *%r14 or jmpq *(%r14,%rbx,8) ? I imagine that any calls (including virtual) would use something like 'call *%r14', and the above jumps are mostly from 'switch' statements. Is this correct? Anything else? Thank you, Dan
2009 May 19
0
[LLVMdev] how to get a deterministic execution
On Mon, May 18, 2009 at 8:33 PM, dan mihai <dnmh68 at hotmail.com> wrote: > Hello, > Yo! > For debugging purposes, I've added a unique id member to the Value class: > > global_next_vuid = 0; > Value::Value(..){ >   vuid = ++global_next_vuid; > } > > My hope is that by looking at the vuid of a Value, I can see its vuid, > set a conditional breakpoint and
2009 Nov 26
1
[LLVMdev] SSA?
Hello, I am a bit confused about the nature of LLVM's SSA and IR in general. Questions: 1) Is it possible to get LLVM to generate code as in /*2*/ (bellow)? 2) if not, how can I tell if an operand has been previously defined? Here is why: I thought (wrongly) that all operands of an instruction must have been previously defined or some constants. I see that the 'bitcast'
2010 Feb 06
2
XEN
I have a fairly high disk i/o intensive email server I am thinking of upgrading. I was thinking of upgrading it to CentOS 5.x 64bit. I was also thinking of running it as a guest under XEN. Would this allow me to more easilly transfer it to faster hardware in the future? Or would running as a guest seriously hurt disk i/o?
2020 Feb 18
3
[PATCH V2 3/5] vDPA: introduce vDPA bus
On Mon, Feb 17, 2020 at 02:08:03PM +0800, Jason Wang wrote: > I thought you were copied in the patch [1], maybe we can move vhost related > discussion there to avoid confusion. > > [1] https://lwn.net/Articles/811210/ Wow, that is .. confusing. So this is supposed to duplicate the uAPI of vhost-user? But it is open coded and duplicated because .. vdpa? > So it's cheaper and
2020 Feb 18
3
[PATCH V2 3/5] vDPA: introduce vDPA bus
On Mon, Feb 17, 2020 at 02:08:03PM +0800, Jason Wang wrote: > I thought you were copied in the patch [1], maybe we can move vhost related > discussion there to avoid confusion. > > [1] https://lwn.net/Articles/811210/ Wow, that is .. confusing. So this is supposed to duplicate the uAPI of vhost-user? But it is open coded and duplicated because .. vdpa? > So it's cheaper and
2009 Oct 28
1
[LLVMdev] will gold emit bitcode
HI Is there any plan to make gold emit bitcode?thanks Guanjun -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091028/9335458b/attachment.html>
2017 Sep 06
2
Disallow some sftp commands
Hello, Couple of days ago, I received a request from a customer. He wants to provide sftp users access to a directory tree containing files. The users must have full rights, but he also wants to avoid moving or deleting directories. This is mostly to prevent mistakenly drag and drop from user's graphical client (Filezilla). Said differently, he wants to protect the directories organization.
2006 Oct 06
1
Userspace mounts issue
Hello, I don't know if this is bug-worthy or not It can be fixed in numerous places, but I think it might make the most sense to do it here.... kinit uses /dev/root to mount the rootfs. In normal userspace, this causes the root system to be displayed twice in apps like Nautilus, as /proc/mounts lists rootfs on /dev/root, in addition to the real info (e.g. ext3 on /dev/hda3). This is
2006 Nov 22
1
digikamimageplugins from Karan's repo
Hi, I've just installed digikam and digikamimageplugins from Karan's repo. The digikam package works nicely, however if I try to use any of the plugins from digikamimageplugins, digikam crashes complaining about unresolvable symbols, for example: digikam: symbol lookup error: /usr/lib64/kde3/digikamimageplugin_adjustlevels.so: undefined symbol:
2004 Jul 09
1
pop3 usernames
Hello, I would like to allow users to login as user at domain.tld instead of providing their login name; I'm coming from the sendmail/qpopper land and am trying to migrate to postfix/maildir/dovecot one step at a time and I've been able to find a way to do most of what I want except for the above requirement. Do I have to use a SQL server or is there any way to easilly map an email
2006 Oct 13
1
[PATCH] Extra Notifications
I am working on exposing events to external apps via the dbus plugin I found that I really wanted extra Notify Procedures so that I didn't have to do too much direct access to xlib (If I understand rightly, plugin developers shouldn't have to do too much xlib work inside the plugins) I added Create, Destroy, Map, Unmap, Minimize and Unminimize Hopefully this can be included as I know a
2009 Dec 05
1
Using rgl to put a graphic beneath a plot
I've written a very simple bit of code to plot a trajectory using rgl: x <- (c(0,-5.947,-11.496,-16.665,-21.474,-25.947,-30.116,-34.017,-37.684,-41.148,-44.435,-47.568,-50.567,-53.448,-56.223,-58.906)) y <- (c(0,33.729,65.198,94.514,121.784,147.151,170.797,192.920,213.717,233.360,252.003,269.774,286.781,303.117,318.858,334.071)) z <-
2007 Sep 28
3
PHP5/CentosPlus big mess.
Ok, so if you tuned in last time, I couldn't make the installation/upgrade of PHP5 from the Centos4 CentOS Plus repository work. Not one to be easilly dissuaded, I shapened my shovel and dug myself a hole. So using the exclude= lines in the repository config file backfired big time: even if I excluded the exclude= lines, yum continued to exclude the files on those lines, and only deigned to