search for: glines

Displaying 20 results from an estimated 98 matches for "glines".

Did you mean: lines
2013 Nov 26
3
[LLVMdev] Finding the first line number of a function (-g vs -gline-tables-only)
For the sample profiler, I need to determine the location of the first user instruction in the function. This can be the LOC where the function header is or the LOC of the actual first instruction, it doesn't really matter. But it needs to be consistent wrt -g and -gline-tables-only. Currently, I'm scanning for the first non-zero line number from the top of the function. This skips over
2013 Nov 26
0
[LLVMdev] Finding the first line number of a function (-g vs -gline-tables-only)
On Tue, Nov 26, 2013 at 7:47 AM, Diego Novillo <dnovillo at google.com> wrote: > For the sample profiler, I need to determine the location of the first > user instruction in the function. This can be the LOC where the > function header is or the LOC of the actual first instruction, it > doesn't really matter. Actually, I lied. It turns out that it DOES matter. I need the
2013 Nov 26
1
[LLVMdev] Finding the first line number of a function (-g vs -gline-tables-only)
On 26 November 2013 14:01, Diego Novillo <dnovillo at google.com> wrote: > I need '3' to be my base for all the relative offsets I get from the > profiler. So, how do I find out the line number of the symbol 'foo' > itself? > Hi Diego, In the metadata. Look for DW_TAG_subprogram: define i32 @main() #0 { ... } ... !4 = metadata !{i32 786478, metadata !1,
2013 Oct 31
1
[LLVMdev] Preserving accurate stack traces with optimization?
On Wed, Oct 30, 2013 at 8:58 PM, Eric Christopher <echristo at gmail.com>wrote: > > On Oct 30, 2013 7:25 PM, "Philip Reames" <listmail at philipreames.com> > wrote: > > > > On 10/30/13 7:09 PM, Philip Reames wrote: > >> > >> David, Quentin - Thanks for the feedback. Responses inline. > >> > >> On 10/30/13 11:21 AM,
2017 Mar 07
2
sancov reporting all locations as <invalid>:0
I'll need more details then. Maybe you can share the binary & its .sancov file? Or if you have a way to reproduce it? On Tue, Mar 7, 2017 at 1:23 PM Kostya Serebryany <kcc at google.com> wrote: > On Tue, Mar 7, 2017 at 12:50 PM, Mike Aizatsky <aizatsky at google.com> > wrote: > > Justin, > > I haven't seen this before. I suspect it is because of
2011 Aug 10
2
Histograms in R
HI everyone, I'm plotting a histogram in R and within that histogram i need to demonstrate the percentage of another variable (Percentage of MutStatus) within the bins plotted inthe histogram....I don't know how to do that! Data:Validation_Status Mutation_Status TvarRatio Wildtype None 0.08 Wildtype None 0.08 Wildtype None 0.08 Wildtype None 0.08 Wildtype None 0.080139373 Wildtype None
2017 Mar 07
2
sancov reporting all locations as <invalid>:0
Justin, I haven't seen this before. I suspect it is because of line-tables-only. Can you try it with full debug info? On Tue, Mar 7, 2017 at 12:36 PM Kostya Serebryany <kcc at google.com> wrote: > +aizatsky > > On Tue, Mar 7, 2017 at 12:34 PM, Justin Bogner <mail at justinbogner.com> > wrote: > > I'm working on a fuzzer using libFuzzer and I wanted to take
2004 May 25
5
pxelinux.0
...f to remote mount a file system. I'm trying an etherboot floppy. When I boot the system finds the dhcp server and gets the right file name but then it gives me the message "not a valid image." A quick search of the net didn't help much. Any clues to hand out? Cheers -- Steve Glines voice: 978-952-6340 www.is-cs.com fax: 978-952-8524 145 Foster Street cell: 617-549-7274 Littleton MA 01460 I'm a complex person. I have a real and an imaginary part.
2019 Jan 04
2
[Fuzzer] Test failure on Linux x86-64
Continuing my quixotic effort to get 'check-all' clean, I am seeing a Fuzzer failure on x86-64 Linux. Do any builders run fuzzer tests? FAIL: libFuzzer :: value-profile-mem.test (103 of 103) ******************** TEST 'libFuzzer :: value-profile-mem.test' FAILED ******************** Script: -- : 'RUN: at line 4'; /build/x86_64/./bin/clang --driver-mode=g++ -std=c++11
2004 May 17
2
kernel and initrd
...trying to create a single floppy based boot disk that will, depending on what the user enters, boot redHat, SUSE or Debian. Does anyone have any sample syslinux.cfg files that might allow me to boot via nfs? Also, I'm having trouble fitting init into initrd.img any ideas? Thanks -- Steve Glines voice: 978-952-6340 www.is-cs.com fax: 978-952-8524 145 Foster Street cell: 617-549-7274 Littleton MA 01460 I'm a complex person. I have a real and an imaginary part.
2019 Jan 04
2
[Fuzzer] Test failure on Linux x86-64
FWIW I think that one was always flaky. > On Jan 4, 2019, at 2:53 PM, Kostya Serebryany via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > +Matt Morehouse <mailto:mascasa at google.com> > > On Fri, Jan 4, 2019 at 11:43 AM David Greene via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > Continuing my quixotic effort
2014 Mar 07
4
[LLVMdev] RFC - Adding an optimization report facility?
----- Original Message ----- > From: "Diego Novillo" <dnovillo at google.com> > To: "Hal Finkel" <hfinkel at anl.gov> > Cc: "Chris Lattner" <clattner at apple.com>, "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu> > Sent: Friday, March 7, 2014 8:07:19 AM > Subject: Re: [LLVMdev] RFC - Adding an optimization
2000 Feb 07
0
graphics bugs: steep slopes and large values beyond ylim (PR#414)
Some of my students have uncovered some apparent graphics bugs in R. I think they may manifest slightly different on different platforms/ with different display devices (they sometimes report a Windows graph that looks OK but odd results on printing). I'm able to replicate similar problems on my Linux (RH 6.0) system. 1. abline() plots nothing, or a wrong line, when the slope is too
2014 Oct 27
2
[LLVMdev] Recent changes in -gmlt break sample profiling
On Sun, Oct 26, 2014 at 7:23 PM, Xinliang David Li <xinliangli at gmail.com> wrote: > The fundamental questions we need to answer are the following: > FWIW, there was a longer discussion on the lists when the actual option was added. I'll try to relay my memory of that discussion, but you might need to track it down or involve some of the other people who participated in it.
2017 Mar 07
2
sancov reporting all locations as <invalid>:0
I'm working on a fuzzer using libFuzzer and I wanted to take a look at how my coverage was doing, as per the instructions here: http://llvm.org/docs/LibFuzzer.html#how-good-is-my-fuzzer First of all, I suspect the instructions there are out of date, but passing -dump_coverage=1 to the binary rather than setting ASAN_OPTIONS generated a .sancov file for me. However, when I inspect this
2008 Jun 16
2
in axis() suppressing axis line but keeping tick marks
I've been trying to figure out a parameter that will let you separately adjust the parameters for the axis line from the tick mark. In the following example, I would like to suppress the axis line, but keep the tick marks. Thanks, Andrew foo <- data.frame(x=1:3, y=4:6) plot(foo$x, foo$y, type="n", axes=F) points(foo$x, foo$y) axis(side=1, at=foo$x, lty=0) #would like to figure
2017 Jun 08
2
Failing unit tests
lit.py: ~/workspace/LLVM/llvm/tools/clang/test/lit.cfg:200: note: using clang: '~/workspace/LLVM/ninjacmake/./bin/clang' -- Testing: 37268 tests, 8 threads -- Testing: 0 .. FAIL: Builtins-i386-linux :: divsc3_test.c (4326 of 37268) ******************** TEST 'Builtins-i386-linux :: divsc3_test.c' FAILED ******************** Script: -- ~/workspace/LLVM/ninjacmake/./bin/clang
2004 Aug 06
6
yp.icecast.org || when does your stream come into the db?
> > For pls files: > > http://www.shoutclub.com/help/linking.php3 > Thanks. It says that I can use the URL by appanding > listen.pls as in > http://194.109.227.136:8000/listen.pls > > In this case it still wanted to drag down some > multibegabyte files. What happened? you read: Well the simplest method is using your SHOUTcast servers built in Web server, this feature
2004 Aug 06
3
yp.icecast.org || when does your stream come into the db?
On Thu, 12 Apr 2001, Steve Glines wrote: > --- tim <tim@nvhs.nl> wrote: > > > > > is http://194.109.227.136:8000, using liveice and > > icecast) > When I try the URL above my system attempts to down > load a 50 MB file. It isn't streaming. I have the same > problem with my own system. Wha...
2014 Oct 24
2
[LLVMdev] Recent changes in -gmlt break sample profiling
I'm not sure if this was intended, but it's going to be a problem for sample profiles. When we compile with -gmlt, the profiler expects to find the line number for all the function headers so that it can compute relative line locations for the profile. The tool that reads the ELF binary is not finding them, so it writes out absolute line numbers, which are impossible to match during the