search for: arange

Displaying 20 results from an estimated 67 matches for "arange".

Did you mean: range
2020 Mar 10
2
DWARF .debug_aranges data objects and address spaces
Hello I've been looking at a debuginfo issue on an out-of-tree target which uses DWARF aranges. The problem is that aranges are generated for both data and code objects, and the debugger gets confused when program addresses overlap data addresses. The target is a Harvard Architecture CPU, so the appearance of overlapping address ranges is not in itself a bug as they reside in different add...
2009 Sep 13
1
Manage an unknown and variable number of data frames
...he cut. # Create any number of cuts in each row. CutList = list( a=c(-Inf,-10,10,Inf), b=c(-Inf,0,20,Inf) ) CutResults = mapply(cut,x=dat[,names(CutList)],CutList,SIMPLIFY=FALSE) CutTable = as.data.frame(table(CutResults)) CutResultsDF = as.data.frame(CutResults) head(CutResultsDF, n=15) dat$aRange = CutResultsDF$a dat$bRange = CutResultsDF$b head(dat, 15) # I don't want to do the following as it doesn't # get managed automatically. Subset1 = subset(subset(dat, aRange==CutTable$a[1]), bRange==CutTable$b[1])[1:2] Subset2 = subset(subset(dat, aRange==CutTable$a[2]), bRange==CutTable$...
2020 Mar 16
2
DWARF .debug_aranges data objects and address spaces
On Mon, Mar 16, 2020 at 10:50 AM Robinson, Paul <paul.robinson at sony.com> wrote: > SCE tuning does turn on the .debug_aranges section. Our debugger team > really cares about startup cost. Turnaround time in general is huge for our > licensees, to the point where we support edit-and-continue (minimal > rebuild, live-patch the running process). > Ah, good to know! I'd be curious to know about the performa...
2020 Mar 16
4
DWARF .debug_aranges data objects and address spaces
On Mon, Mar 16, 2020 at 9:31 AM Robinson, Paul <paul.robinson at sony.com> wrote: > With AVR being affected, upstreaming a patch to put segment selectors into > .debug_aranges becomes completely reasonable. There would likely want to > be a target hook somewhere to return a value saying what size to use, with > the default implementation returning zero. > *nod* something along those lines > > If the producer has put ranges on the CU it's not a lo...
2013 Sep 21
2
[LLVMdev] Debug info failing in assembler.
...comm = 6; } This fails on all but the x86 processors. The typical failure looks like this: ... .type comm, at object # @comm .comm comm,4,4 .cfi_sections .debug_frame .bss .L.bss_end: ... .L.debug_abbrev_end: .section .debug_aranges,"", at progbits .long 36 # Length of ARange Set .short 2 # DWARF Arange version number .long .L.debug_info_begin0 # Offset Into Debug Info Section .byte 4 # Address Size (in byt...
2020 Mar 12
2
DWARF .debug_aranges data objects and address spaces
...gt; > addresses in that numeric range. > > > Sorry I'm not following, partly probably due to my not having worked > with > such machines before. > > But how are the code addresses and data addresses differentiated then > (eg: > if you had segment selectors in debug_aranges, how would they be used? > The > addresses taken from the system at runtime have some kind of segment > selector associated with them, that you can then use to match with the > addr+segment selector in aranges?). Yes. This. The system mostly provides us the ability to disambiguate addr...
2020 Mar 16
2
DWARF .debug_aranges data objects and address spaces
...nt selector size to zero), >> and llvm-dwarfdump will choke (hopefully cleanly, but still) on an object >> file that uses DWARF segment selectors. >> > > FWIW Luke mentioned in the original email the AVR in-tree backend seems to > have this problem with an ambiguous debug_aranges entries. > > >> The point of .debug_aranges is to accelerate the search for the >> appropriate CU. Yes you can spend time trolling through .debug_info and >> .debug_abbrev, decoding the CU DIEs looking for low_pc/high_pc pairs (or >> perhaps pointers to .debug_range...
2020 Mar 12
3
DWARF .debug_aranges data objects and address spaces
...it has never come up before that I’m aware of. So, when we emit DWARF, we assume a flat address space (unconditionally setting the segment selector size to zero), and llvm-dwarfdump will choke (hopefully cleanly, but still) on an object file that uses DWARF segment selectors. The point of .debug_aranges is to accelerate the search for the appropriate CU. Yes you can spend time trolling through .debug_info and .debug_abbrev, decoding the CU DIEs looking for low_pc/high_pc pairs (or perhaps pointers to .debug_ranges) and effectively rebuild a .debug_aranges section yourself, if the compiler/linker...
2013 Sep 21
0
[LLVMdev] Debug info failing in assembler.
...x86 processors. The typical failure looks like > this: > ... > .type comm, at object # @comm > .comm comm,4,4 > .cfi_sections .debug_frame > .bss > .L.bss_end: > ... > .L.debug_abbrev_end: > .section .debug_aranges,"", at progbits > .long 36 # Length of ARange Set > .short 2 # DWARF Arange version number > .long .L.debug_info_begin0 # Offset Into Debug Info Section > .byte 4 # Addr...
2003 Nov 04
3
R function help arranged in categorical order ?
Hi, I'm new to R and I'm finding it quite a chore trawling through the R documentation to find a function to carry out simple atomic tasks. Is any one aware of R help documentation that is aranged in functional categories for e.g.: String manipulation File I/O Dataframe, List manipulation etc, etc ... Thanks _________________________________________________________________ Get Hotmail on your mobile phone http://www.msn.co.uk/msnmobile
2013 Sep 22
1
[LLVMdev] Debug info failing in assembler.
...x86 processors. The typical failure looks > like this: > ... > .type comm, at object # @comm > .comm comm,4,4 > .cfi_sections .debug_frame > .bss > .L.bss_end: > ... > .L.debug_abbrev_end: > .section .debug_aranges,"", at progbits > .long 36 # Length of ARange Set > .short 2 # DWARF Arange version number > .long .L.debug_info_begin0 # Offset Into Debug Info Section > .byte 4 # Addr...
2020 Mar 11
2
DWARF .debug_aranges data objects and address spaces
On Tue Mar 10, 2020 at 7:45 PM, David Blaikie wrote: > If you only want code addresses, why not use the CU's > low_pc/high_pc/ranges > - those are guaranteed to be only code addresses, I think? > In the common case, for most targets LLVM supports I think you're right, but for my case, regrettably, not. Because my target is a Harvard Architecture, any code address can have the
2003 Nov 04
1
AW: R function help arranged in categorical order ?
...eff: [R] R function help arranged in categorical order ? > > > Hi, > > I'm new to R and I'm finding it quite a chore trawling through the R > documentation to find a function to carry out simple atomic > tasks. Is any > one aware of R help documentation that is aranged in > functional categories > for e.g.: > > String manipulation > File I/O > Dataframe, List manipulation > > etc, etc ... > > Thanks > > _________________________________________________________________ > Get Hotmail on your mobile phone http://www.msn....
2005 Oct 09
4
*8 and group pickup not working
Hello I have a Junghanns ISDN BRI card for incoming calls and use SIP Polycom IP300 phones. My config files look like this: features.conf pickupextn = *8 zapata.conf context=frompstnisdn group=1 callgroup=1 pickupgroup=1 I also edited sip.conf like this: group=1 callgroup=1 pickupgroup=1 But on internal and incoming calls if I dial *8 from any phone I cannot pickup. Do I need to add
2004 Aug 22
6
LAN to DMZ zone issues.
Hello all, Name is Andrew and in desperate need of some info. Setup: - Mandrake 9.1 with three interfaces (eth0 --> WAN) C-class /28 network (with tree virtual addresses which I am DNAT-ing to the DMZ) (eth1 --> LAN) A-class 10.0.0.0/8 (eth2 --> DMZ) A-class subnet 10.1.123.0/24 - Running stock Shorewall ver: shorewall-1.3.14-3.1.91mdk Dilemma: - LAN can not access the DMZ zone
2019 Jan 16
2
optimizacion costos
Estimado Jesús Para Fernández En teoría es ese material, lo vi muy rápido y en la parte genética tiene cosas que biológicamente no son así, hay un libro de Falconer, Introducción a la genética cuantitativa, que tiene escrita la parte matemática, hay un abismo entre la biología y los ingenieros que se inspiran en la biología. Yo pensaba en la resolución de un problema real, aunque relativamente
2015 May 01
2
[LLVMdev] [cfe-dev] What does "debugger tuning" mean?
...es while I was working up the idea, and came down on the side of not doing it. Not opposed to having it, but we haven't really thought about what it would look like. (Emit every kind of standard thing we know about, and no non-standard things at all? So we'd get pubnames and pubtypes and aranges but no Apple attributes or accelerator tables and not the GNU TLS opcode. Is that a useful mode to have?) Re where to put the guidelines: ought to be committed to the repo somewhere, although whether it's as a lump of text in a docs webpage or a lump of commentary in some source file is not...
2003 Sep 11
0
Perl module
...port to the Perl module Ogg::Vorbis::Header::PurePerl (because of the simplicity of cross platform use). Seeing as this list would have the most knowledge about the proper methods regarding this task, I'm submitting this for anyone to look at before it (possibly) hits CPAN. http://alus.mine.nu/aRanger/PurePerl.pm Any feedback would be greatly appreciated. <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubsc...
2010 Jul 25
1
Manage several graphical devices in interactive mode
Dear R-users, Does anybody know a good way to create and use several graphical devices at the same time in interactive mode? Ideally, I'd like to open 2 to 3 devices and assign names to them. This way, I could make any addition/modification/update to a particular device using its name. I did not see anything like a name argument in ?X11. Is there an alternative? Thanks in advance for your
2015 May 08
3
[LLVMdev] [lldb-dev] [cfe-dev] What does "debugger tuning" mean?
...tuning" option, in favor of the historical GDB default, because in fact it wasn't really clear what "no tuning" should mean. The best answer I can come up with is: Emit all standard things that we know how to emit, and no non-standard things. This would mean: pubnames/pubtypes, aranges, no accelerator tables, standard TLS opcode. Possibly type units, although that's currently not a tuning thing, and support for it isn't particularly widespread. If LLVM doesn't do target-specific defaulting, then Clang would have to. Second: The GNU TLS opcode thing is really a GDB...