similar to: [LLVMdev] GSoC 2011: Building and Executing Traces on LLVM

Displaying 20 results from an estimated 2100 matches similar to: "[LLVMdev] GSoC 2011: Building and Executing Traces on LLVM"

2013 Sep 16
0
tdb idmap returns different GID's for the same SID from time to time
Greetings! I have a samba 3.6.18 acts as a domain member. I'm using a samba nss and creating local groups for a domain users. Here part of my nsswitch.conf: group: files winbind passwd: files winbind The problem is that the tdb unix GID mappings returns different ID from time to time for the same SIDs. Suppose we have a local group "samba_svn1", created with "NET SAM
2001 Oct 19
1
rsync errors
Ah... there's your answer. ssh is working fine, as you say, but you're invoking rsync without telling it to user ssh, so it's using rsh. If you've got this, you don't need rsyncd.conf. The syntax you're using tells rsync to use an external transport. rsync -e ssh file rmt_host:/tmp Tim Conway tim.conway@philips.com 303.682.4917 Philips Semiconductor - Longmont TC 1880
2009 Apr 05
2
Problem with Dynamo-Package
Good day, I am facing a problem when I am installing the dynamo-package and loading it. After I installed the package, I received the following warning message: "In file.create(f.tg) : cannot create file 'C:\PROGRA~2\R\R-28~1.1/doc/html/packages.html', reason 'Permission denied'" and when I load the package, an error message pops up saying that "the application
2001 Jan 29
0
FreeBSD Security Advisory: FreeBSD-SA-01:12.periodic
-----BEGIN PGP SIGNED MESSAGE----- ============================================================================= FreeBSD-SA-01:12 Security Advisory FreeBSD, Inc. Topic: periodic uses insecure temporary files Category: core Module: periodic Announced: 2001-01-29
2009 Dec 23
1
Fitting ACD model
Hi - I'm wondering if there is any existing package in R that facilitates ACD (Autoregressive Conditional Duration) model. I googled. Apparently there were packages dynamo and fACD. However, they do not seem to be on any CRAN. I am wondering if anyone could point me to an existing package (if any). Thank you. -r
2010 Jul 25
1
VMGuest IOMeter numbers
Hello, first time posting. I''ve been working with zfs on and off with limited *nix experience for a year or so now, and have read a lot of things by a lot of you I''m sure. Still tons I don''t understand/know I''m sure. We''ve been having awful IO latencies on our 7210 running about 40 VM''s spread over 3 hosts, no SSD''s / Intent Logs.
2004 Oct 06
0
[LLVMdev] doc about llvm JIT
Hi, I am interested in the JIT compiler of llvm, namely, lli. I want to know more about it, but I found little documentation about it. There are a few paragraphs about JIT in the CGO paper, a list of options dumped from "lli --help-hidden", and a short webpage of lli in the website. But many issues are not clearly described. For example, 1. When JIT is available
2002 Nov 18
1
未承諾広告※ Get Free Prog. CD プログレCD無料プレゼント
(It is not spam. I sned email to prog lovers. But if you don't want to get next email, please click below URL) http://210.230.231.33/g/m/s.aspx?R=493E1&U=3F810&M=2B (???????????????????URL???????????) http://210.230.231.33/g/m/s.aspx?R=493E1&U=3F810&M=2B Hello progers! We are vender of Japanese prog rock. Please visit our site. http://www.musicterm.jp/english/ If you get our
2001 Sep 04
0
FreeBSD Security Advisory FreeBSD-SA-01:59.rmuser
-----BEGIN PGP SIGNED MESSAGE----- ============================================================================= FreeBSD-SA-01:59 Security Advisory FreeBSD, Inc. Topic: rmuser contains a race condition exposing /etc/master.passwd Category: core Module: rmuser
2018 Jan 04
0
jit stack traces
I am following up on an earlier conversation here with respect to jit stack traces. Any thing changed here with respect to latest llvm versions.. On Wed, Nov 13, 2013 at 08:51 AM, Reid Kleckner <rnk at google.com
2005 Jun 06
1
dragging windows leaves traces
I have an excellent nvidia graphics card, I get excellent fps, all agp features are installed correctly etc. When I drag windows around wit hthe opaque settings on it leaves traces for a couple milliseconds as it redraws the window, but it just looks so crummy to see. I am having a hard time convincing people that using linux is a good idea. People make judgements on this type of thing and
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,
2011 Apr 07
2
Selecting data from list object
Hello Group, Is there a simpler way to get data out of a list object? (like in data frame without using the apply functions) I have the following dataset > dput(d) list(c("20110405", "092102"), c("20110405", "092538"), c("20110405", "093458"), c("20110405", "101124"), c("20110405", "102041"),
2013 Nov 13
0
[LLVMdev] Stack traces from JIT code
Writing your own JITEventListener is probably the best way to capture traces from production. Using the existing gdb/JIT interface support is probably far too heavyweight for production. If you roll your own, you can record the PC ranges efficiently and that should be good enough to capture traces from production. On Tue, Nov 12, 2013 at 2:56 PM, Priyendra Deshwal <deshwal at
2013 Nov 13
0
[LLVMdev] Stack traces from JIT code
>From NotifyObjectEmitted you should be able to get to any function that's visible via either the ELF headers or the DWARF information. Do you have functions that don't show up in either of those places? -Andy From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Andrew MacPherson Sent: Wednesday, November 13, 2013 9:23 AM To: Reid Kleckner Cc:
2007 Apr 25
2
Strange content in the kernel dmesg traces [SOLVED]
On 4/25/07, Michael D. Kralka <michael.kralka at kvs.com> wrote: > > I am going to regret answering this, because it is not the right place > for such questions. However... True, but thank you for the post. > I suspect you are misusing printk and the KERN_XXX prefixes (KERN_DEBUG, > KERN_ERR, KERN_INFO, etc.) defined in include/linux/kernel.h. Try > dropping the comma
2013 Nov 13
0
[LLVMdev] Stack traces from JIT code
Yeah, take a look at the IntelJITEventListener code (in lib/ExecutionEngine/IntelJITEvents). It uses the debug info to find function names. -Andy From: Andrew MacPherson [mailto:andrew.macp at gmail.com] Sent: Wednesday, November 13, 2013 1:12 PM To: Kaylor, Andrew Cc: Reid Kleckner; llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Stack traces from JIT code Hi Andy, In the NotifyObjectEmitted
2013 Oct 31
0
[LLVMdev] Preserving accurate stack traces with optimization?
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, David Blaikie wrote: >>> >>> Actually CCing Eric. >>> >>> >>> On Wed, Oct 30, 2013 at
2007 Apr 24
2
Strange content in the kernel dmesg traces
I am experimenting with the kernel (as some of you may know), and I have added a whole slew of traces in some relatively sensitive code in the lower levels of the page cache and i/o functions. Most of this tracing not only works but is highly revealing as to what the kernel is doing and why. However, I am now getting this odd content in the trace log (dmesg), and I cannot figure out what it is
2013 Oct 31
0
[LLVMdev] Preserving accurate stack traces with optimization?
David, Quentin - Thanks for the feedback. Responses inline. On 10/30/13 11:21 AM, David Blaikie wrote: > Actually CCing Eric. > > > On Wed, Oct 30, 2013 at 11:00 AM, Quentin Colombet > <qcolombet at apple.com <mailto:qcolombet at apple.com>> wrote: > > Philip, > > Thanks for the clarification. > > As far as I can tell, there is currently