search for: subprog

Displaying 8 results from an estimated 8 matches for "subprog".

2011 Jul 08
0
[LLVMdev] How to get line number of a function in a bitcode file?
Hi Chen, On Jul 8, 2011, at 11:56 AM, kobe James wrote: > Hi All, > > I hope to get some information about functions in a bitcode file. Say, if we have a function foo(), and the bitcode file is generated by a single source file, then I want to get the line number foo() locates in that source file. > If the bitcode file is linked by multiple bitcode files, is it possible to also get
2011 Jul 08
7
[LLVMdev] How to get line number of a function in a bitcode file?
Hi All, I hope to get some information about functions in a bitcode file. Say, if we have a function foo(), and the bitcode file is generated by a single source file, then I want to get the line number foo() locates in that source file. If the bitcode file is linked by multiple bitcode files, is it possible to also get which file foo() locates in? Thanks, Chen -------------- next part
2014 May 07
2
[LLVMdev] DWARF unmangled subprog name (DW_AT_name)
Hi, I am looking for a way to get unmangled subprogram names from a DWARFContext. The name I want is available in the attribute `DW_AT_name` [1], but as far as I can tell this is only returned as a fallback in `DWARFDebugInfoEntryMinimal::getSubroutineName` when the linkage name is not available [2]. If this is not currently possible, is there any...
2014 May 07
2
[LLVMdev] DWARF unmangled subprog name (DW_AT_name)
...with the public API or am I mistaking? On Wed, May 7, 2014 at 12:13 AM, Eric Christopher <echristo at gmail.com>wrote: > On Tue, May 6, 2014 at 8:09 PM, Isaiah Norton <isaiah.norton at gmail.com> > wrote: > > Hi, > > > > I am looking for a way to get unmangled subprogram names from a > > DWARFContext. The name I want is available in the attribute `DW_AT_name` > > [1], but as far as I can tell this is only returned as a fallback in > > `DWARFDebugInfoEntryMinimal::getSubroutineName` when the linkage name is > not > > available [2]. >...
2014 May 07
2
[LLVMdev] DWARF unmangled subprog name (DW_AT_name)
...May 7, 2014 at 12:13 AM, Eric Christopher <echristo at gmail.com>wrote: >> >>> On Tue, May 6, 2014 at 8:09 PM, Isaiah Norton <isaiah.norton at gmail.com> >>> wrote: >>> > Hi, >>> > >>> > I am looking for a way to get unmangled subprogram names from a >>> > DWARFContext. The name I want is available in the attribute >>> `DW_AT_name` >>> > [1], but as far as I can tell this is only returned as a fallback in >>> > `DWARFDebugInfoEntryMinimal::getSubroutineName` when the linkage name >...
2014 May 07
2
[LLVMdev] DWARF unmangled subprog name (DW_AT_name)
...gt;> wrote: > >>>> > >>>> On Tue, May 6, 2014 at 8:09 PM, Isaiah Norton < > isaiah.norton at gmail.com> > >>>> wrote: > >>>> > Hi, > >>>> > > >>>> > I am looking for a way to get unmangled subprogram names from a > >>>> > DWARFContext. The name I want is available in the attribute > >>>> > `DW_AT_name` > >>>> > [1], but as far as I can tell this is only returned as a fallback in > >>>> > `DWARFDebugInfoEntryMinimal::getS...
2014 May 07
5
[LLVMdev] DWARF unmangled subprog name (DW_AT_name)
...; >>>> On Tue, May 6, 2014 at 8:09 PM, Isaiah Norton < >>> isaiah.norton at gmail.com> >>> >>>> wrote: >>> >>>> > Hi, >>> >>>> > >>> >>>> > I am looking for a way to get unmangled subprogram names from a >>> >>>> > DWARFContext. The name I want is available in the attribute >>> >>>> > `DW_AT_name` >>> >>>> > [1], but as far as I can tell this is only returned as a fallback >>> in >>> >>&g...
2006 Apr 13
5
Questions on formula in princomp
I hope this time I'm using the "iris" dataset correctly: ir <- rbind(iris3[,,1], iris3[,,2], iris3[,,3]) lir <- data.frame(log(ir)) names(lir) <- c("a","b","c","d") I'm trying to understand the meaning of expressions like "~ a+b+c+d", used with princomp, e.g. princomp(~ a+b+c+d, data=lir, cor=T) By inspection, it