similar to: [LLVMdev] LLVM,metadata for namespaces

Displaying 20 results from an estimated 800 matches similar to: "[LLVMdev] LLVM,metadata for namespaces"

2011 Sep 19
0
[LLVMdev] LLVM,metadata for namespaces
yes.I have in each namespace at least one function.And I call these functions later. What I tried to do is to take module scope iterate all namespaces defined in it and call createNameSpace for each of them. When debugging I see that the namespaces are generated ,but in IR file there is no debug information for namespaces Also I tried to generate debug information for namespaces ,while treating
2011 Aug 22
3
[LLVMdev] Internal API Changes
Hi, I saw your update regarding "*The DIBuilder interface used by front ends to encode debugging information in the LLVM IR now expects clients to use DIBuilder::finalize() at the end of translation unit to complete debugging information encoding"* Does it mean that in the new version you defer emission of some debug info until the translation is finished and this is a reason to use
2011 Sep 19
0
[LLVMdev] LLVM,metadata for namespaces
Hello, I am wring front end for compiler ,the project I am working on,is based on llvm. I have a problem with generating metadata for namespaces. I call createNameSpace (with correct arguments) and get DINameSpace . But in IR file no metadata for namespace is generated. Can you advice me please what is the problem?Have I integrate in some way the DINameSpace I got with module or context? --
2011 Sep 05
2
[LLVMdev] Internal API Changes
So, I just sync'd to LLVM tip and added the call to DIBuilder::finalize(). But even with that change I am getting an error when I try to run llc: Assertion failed: (TheCU && "Unable to find compile unit!"), function endFunction, file /Users/talin/Projects/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp, line 1306. And looking at the .bc dissassembly, I see there are indeed
2011 Aug 31
0
[LLVMdev] Internal API Changes
On Aug 22, 2011, at 6:48 AM, Irina Lipov wrote: > Hi, > I saw your update regarding "The DIBuilder interface used by front ends to encode debugging information in the LLVM IR now expects clients to use DIBuilder::finalize() at the end of translation unit to complete debugging information encoding" > Does it mean that in the new version you defer emission of some debug info
2011 Sep 05
2
[LLVMdev] Internal API Changes
On Sun, Sep 4, 2011 at 11:38 PM, Duncan Sands <baldrick at free.fr> wrote: > Hi Talin, > > > So, I just sync'd to LLVM tip and added the call to > DIBuilder::finalize(). But > > even with that change I am getting an error when I try to run llc: > > > > Assertion failed: (TheCU && "Unable to find compile unit!"), function > >
2011 Sep 05
0
[LLVMdev] Internal API Changes
Hi Talin, > So, I just sync'd to LLVM tip and added the call to DIBuilder::finalize(). But > even with that change I am getting an error when I try to run llc: > > Assertion failed: (TheCU && "Unable to find compile unit!"), function > endFunction, file > /Users/talin/Projects/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp, line 1306. > > And looking at
2011 Sep 05
0
[LLVMdev] Internal API Changes
Hi Talin, I mentioned it because the error message you are getting is identical (IIRC) to the error message being produced by llvm-gcc before this patch went in. Ciao, Duncan. On 05/09/11 11:21, Talin wrote: > On Sun, Sep 4, 2011 at 11:38 PM, Duncan Sands <baldrick at free.fr > <mailto:baldrick at free.fr>> wrote: > > Hi Talin, > > > So, I just
2011 Sep 06
1
[LLVMdev] Internal API Changes
Yup. Now, the debug info nodes do not refer to compile unit. - Devang On Sep 5, 2011, at 2:23 AM, Duncan Sands wrote: > Hi Talin, I mentioned it because the error message you are getting is > identical (IIRC) to the error message being produced by llvm-gcc before > this patch went in. > > Ciao, Duncan. > > On 05/09/11 11:21, Talin wrote: >> On Sun, Sep 4, 2011 at
2011 Aug 09
1
[LLVMdev] Debug information for llvm-clang
Hello, I want to retrieve maximal debug information which is generated after clang execution I checked the functionality for clang : DIBuilder,CGDebugInfo,DwarfDebug classes in the clang. They generate wide spectrum of data (For example I saw for Class type - base classes /inheritance/friends etc.) i want to see all the data for debugging after clang is executed..To check this I made following
2004 Sep 11
4
Cancor
Dear R's! I am strugling with cancor procedure in R. I cannot figure out the meaning of xcoef and of yxcoef. Are these: 1. standardized coefficients 2. structural coefficients 3. something else? I have tried to simulate canonical correlation analysis by checking the eigenstructure of the expression: Sigma_xx %*% Sigma_xy %*% Sigma_yy %*% t(Sigma_xy). The resulting eigenvalues were the same
2008 Nov 12
2
odfweave
Dear all, I am trying to use the function odfWeave. Unfortunately I cannot get beyond the folllowing error message: " Error in odfWeave("Example3.rnw", "Example3.odf") : Error unzipping odt file " Can anybody tell me, how to use this function? Thanks, Irina Ursachi.
2014 Jul 09
4
[LLVMdev] Issues with clang-llvm debug info validity
On Fri, Jun 27, 2014 at 2:19 PM, David Blaikie <dblaikie at gmail.com> wrote: > On Fri, Jun 27, 2014 at 2:15 PM, Adrian Prantl <aprantl at apple.com> wrote: >> >>> On Jun 27, 2014, at 1:58 PM, David Blaikie <dblaikie at gmail.com> wrote: >>> >>> On Fri, Jun 27, 2014 at 1:49 PM, Adrian Prantl <aprantl at apple.com> wrote: >>>>
2007 Nov 28
2
Dates in R
Hi, I have dates in the following format: 4/8/2006 (MM/DD/YYYY). I need to have R compare date A to date B to figure out which one is more recent. Is there a way to do that? Simply using the '>' or '<' signs doesn't seem to work. I think in this case R treats '/' as a division sign and gives me erroneous results. Thanks a lot for your help. Irina
2008 Aug 20
3
Writing Rcmdr Plugins
Dear all, I am trying to write a plugin for the RCommander and having troubles understanding how to actually do that. I have read Mr. Fox's tutorial about writing Rcmdr plugins and though.... it seems to me that some steps are missing. I would like to know, whether there are some Commands which generate a plugin package out of a given library. Or do we just have to attach the .First.lib
2007 Nov 19
2
Using windows() and jpeg()
Hello, I have the following question, which I haven't been able to resolve after days of trying. I used to save my plots as jpegs using the savePlot command. However, that seems to result in lost resolution. So now I'm trying to use the jpeg( ) function, but am having trouble because it seems to be incompatible with the windows (width=, height=) command. It's important for me to
2012 May 27
2
Unable to fit model using “lrm.fit”
Hi, I am running a logistic regression model using lrm library and I get the following error when I run the command: mod1 <- lrm(death ~ factor(score), x=T, y=T, data = env1) Unable to fit model using ?lrm.fit? where score is a numeric variable from 0 to 6. LRM executes fine for the following commands: mod1 <- lrm(death ~ score, x=T, y=T, data = env1) mod1<- lrm(death ~
2009 Jun 02
1
Plot with different x axis
dear, I am trying to plot a standard plot, but I want the x axis to be 1,2,4,8,16 with equal intervals between them on plot. I will appreciate some help. Thank you, Irina Irina Foss Environmental Research Institute North Highland College UHI Millennium Institute Castle Street Thurso, Caithness Scotland KW14 7JD United Kingdom Tel: +44 (0) 1847 889 587 Fax: +44 (0) 1847 890 014
2008 Dec 18
1
RcmdrPlugin doesn't work under R280
Dear all, Some time ago, I have build a RcmdrPlugin.* under R.2.7.1 and the loading of my plug-in into R was running OK (back then I was using Rcmdr version 1.3-5). After updating the R and Rcmdr to versions 2.8.0, 1.4-5 respectively, I have problems loading the plug-in. Does anybody know why? I have tried to detect the problem by tracing back errors that might have occurred, but couldn't
2010 Jul 05
2
Issue with write.table and read.table : I'm not getting out what I put in
Hello, I am trying to save a large matrix of values in a file. My problem is that I am writing write.table(allpos,'control_chr1.txt', dec=".") and then I want to check it with test2=read.table('control_chr1.txt') sum(test2[,2]==allpos[,2]) This last number is lower than the length of the test2[,2] vector. This is really annoying me because I can't figure out why I