Displaying 20 results from an estimated 3000 matches similar to: "[LLVMdev] LLVM namespac'ification"
2003 Nov 09
0
[LLVMdev] LLVM namespac'ification
Yes, pretty much. There are a few things that will go in the std
namespace because its the
way it is and a more natural fit. The other two namespaces already in
use (cl and DOT) will
be placed under the llvm namespace. The goal is to get everything that
is currently at top
level and put it in llvm. This means that in your programs, you
wouldn't use:
cl::XYZ
anymore but:
llvm::cl::XYZ.
Or,
2003 Nov 09
0
[LLVMdev] LLVM namespac'ification
On Sun, 9 Nov 2003, Rahul Joshi wrote:
> Coming back to the issues that I had integrating LLVM with
> MSSP, will the code in include/Support also be put in the
> llvm namespace? That will solve many problems and help prevent
> others.
Absolutely.
-Chris
> ---- Original message ----
> >Date: Sun, 9 Nov 2003 10:13:03 -0600 (CST)
> >From: Chris Lattner <sabre at
2003 Nov 03
4
[LLVMdev] large linking time
Hello,
I have observed that the LLVM build takes pretty long time
to link executables (i.e. tools). Is that a normal behavior?
Thanks,
Rahul
2004 Feb 23
2
[LLVMdev] linking time
Hi LLVMdev,
The stuff I am working on requires linking 9-10 LLVM
libraries, along with a few libs of my own. The linker is
taking a long time to do that, about 6 mins (on a P4 with
512 MB mem). I tried the latest (2.14) release of binutils,
but that didn't help. Is anyone aware of any solution to this?
Thanks,
Rahul
2003 Dec 14
2
[LLVMdev] An assembly level interface for LLVM
Hi LLVMdev,
Sorry about the bad title, but I hope you will get my idea. I
think that in many LLVM programs that create/modify the LLVM
IR (like say a language frontend/profiler etc), and in other
cases too, some of the code is just "mechanical", for example
creating function types takes like 4-5 lines of code, but
nothing interesting goes on there. I think we can get rid of
such code by
2003 Nov 09
0
[LLVMdev] LLVM namespac'ification
This is just a heads up: Reid Spencer is working up a changeset for LLVM
which will put all of the LLVM classes into an 'llvm' namespace. This
will make it possible to integrate LLVM with other C++ packages that use
classes like 'Type' and 'User'.
This should cause very little impact on the actual source base, other than
the 'namespace llvm' in header files, and a
2003 Aug 13
1
[LLVMdev] Running a pass
Hi,
I want to run the Mem2Reg pass on a function without using the the LLVM opt utility. I wrote some code, which I am not sure is correct:
TS_ASSERT(!verifyFunction(*function));
// find the dominance frontier of the CFG
DominanceFrontier DF;
DF.runOnFunction(*function);
// try to promote stack allocated variables
PromoteMemToReg(function->getRegAllocas(), DF, *tgt_data);
2004 Mar 19
2
[LLVMdev] Annotations on IR
Hi,
I checked out the LLVM code today, and it seems Value is
no longer a subclass of Annotable. Is IR annotation still
supported? Right now, I just need to annotate global variables.
Thanks
Rahul
2013 Apr 11
4
Duplicate Declaration of resource (editing contents of same file in two diiferent module)
Hi all,
I am writing two modules abc and xyz. In both the modules i have to
change common "test.txt" file,here i use template (.erb) file to changing
the contents.
In both abc and xyz the contents of "test.txt" file is different, if i
declare file resource for "test.txt" file in two different modules it gives
duplicate declaration of resource error.
For the
2011 Sep 14
3
Is there any implementation of VSS for a ZFS iSCSI snapshot on Solaris?
I am using a Solaris + ZFS environment to export a iSCSI
block layer device and use the snapshot facility to take a snapshot of the ZFS
volume. Is there an existing Volume Shadow Copy (VSS) implementation on
Windows for this environment?
Thanks
S Joshi
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Aug 11
3
Fuse problem
Hello all,
I'm running a 64bit Centos5 setup and am trying to mount a gluster
filesystem (which is exported out of the same box).
glusterfs --debug --volfile=/root/gluster/webspace2.vol
/home/webspace_glust/
Gives me:
<snip>
[2009-08-11 16:26:37] D [client-protocol.c:5963:init] glust1b_36:
defaulting ping-timeout to 10
[2009-08-11 16:26:37] D [transport.c:141:transport_load]
2016 Jun 21
2
[lld] support --trace-symbol option
I have submitted patch for "--trace-symbol=symbol" (alias -y symbol) option.
This option provides names of all the link time modules which define and
reference symbols requested by user. This helps to speed up application
development by detecting references causing undefined symbols. It also
helps in detecting symbols being resolved to wrong (unintended) definitions
in case of
2010 Jul 08
3
Command died with signal 6
Hi,
We have dovecot 1.1.20 running on Fedora 7 with mail and indexes on NFS. On
our delivery server we are getting "status=bounced (Command died with signal
6: "/usr/local/libexec/dovecot/deliver")"
We are fetching these mails from another server which has Centos 5.2
installed. We have mail_nfs*=yes and mmap_disable=yes settings in
dovecot.conf.
Please let me know why the
2012 Jul 30
2
[LLVMdev] ARM JIT support status?
Hi.
I am a little unclear about the ARM JIT support status. Is it working
as of LLVM 3.1? If not, is it on the roadmap for LLVM 3.2?
I am not currently interested in NEON support so if thats
unimplemented, thats fine.
thanks,
Rahul
2007 Feb 22
1
Wildcards
Hello,
Thanks Olly , by following to your suggestion I could do the indexing in
the CSV file while the
search results retrieved from the Postgres and it's working fine.
[ I am using the Xapian PHP-binding to index and search.]
How could I enable the WILDCARDS in it ?
I followed with the online manual which says it is disabled by default
there given some method to enable
but I am not
2012 Apr 19
3
Remus' Network Buffering
Hi,
I am trying to understand and change the network buffering that is being used by Remus, the HA solution present in Xen. From what i understood from reading the code, Remus calls the postsuspend method of the BufferedNIC after it suspends the domain that sends TC_PLUG_CHECKPOINT message and start the buffering and then calls the commit method of BufferedNIC after it gets the acknowledgement
2001 Aug 08
4
Plotting multiple series of data
I'd like to plot data that's in the form of a table such as this:
1 2 4 6 8 12
a 10 11 12 14 15 30
b 2 3 3 4 5 5
c 1 1 2 2 3 3
Where the row headers are the results for different series of tests, and the
column headers are the x-values.
I'd like to plot this as a set of lines, one each for "a", "b", and "c". I
can rearrange the data as needed, but
2017 Jul 19
4
Integration of Google Speech API V2
Hi Jonathan
Thanks !
That would indeed be wonderful, at this point I really do not care whether
I need to use Python or Lua or JS.
I was following http://zaf.github.io/asterisk-speech-recog/
but hit a road end with (for the lack of sane word ) copulating Google's Key
On Wed, Jul 19, 2017 at 2:28 PM, Jonathan H <lardconcepts at gmail.com> wrote:
> Yes! But I can only tell you if
2012 Jul 26
2
Passing arguments to SQL Query in R
Hello all,
I am a newbie at R, with some experience in PERL.
I have a database table that contains the following data:
Name | Score
======= | =====
Sachin T | 25
Sachin T | 53
Sachin T | 57
Sachin T | 34
Rahul D | 38
Rahul D | 31
Rahul D | 53
Ricky P | 7
Ricky P | 45
Ricky P | 27
Ricky P | 17
Ricky P | 86
Ricky P | 48
Jacques K | 23
Jacques K | 86
Jacques K | 32
I
2012 Jul 31
1
[LLVMdev] ARM JIT support status?
Hi Rahul,
I believe that ARM support is working in the MCJIT engine (as of llvm 3.1). If it wasn't working in the legacy JIT engine 10 months ago then it probably still isn't.
-Andy
-----Original Message-----
From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Rahul Garg
Sent: Tuesday, July 31, 2012 1:13 PM
To: llvmdev at cs.uiuc.edu
Subject: Re: