search for: ingham

Displaying 17 results from an estimated 17 matches for "ingham".

Did you mean: bingham
2018 Jun 26
4
[lldb-dev] RFC: libtrace
...d need much else? Basing your work on NativeProcess rather than lldb proper would also cut the number of observer processes in half and avoid the context switches between the server and the debugger. That seems more appropriate for a lightweight tool. Jim > On Jun 26, 2018, at 12:59 PM, Jim Ingham via lldb-dev <lldb-dev at lists.llvm.org> wrote: > > So you aren't planning to print values at all, just stop points (i.e. you are only interested in the line table and function symbols part of DWARF)? > > Given what you've described so far, I'm wondering if what you...
2020 Mar 05
2
[lldb-dev] Continuing from dbgtrap on different targets
On 04/03/2020 21:45, Jim Ingham via llvm-dev wrote: > As you have seen, different machine architectures do different things after hitting a trap. On x86_64, the trap instruction is executed, and then you stop, so the PC is left after the stop. On arm64, when execution halts the pc is still pointing at the trap instruction. &...
2018 Mar 19
1
[GSoC] Add support for batch-testing to the LLDB testsuite.
...39;m a third year computer science student at the University of Pittsburgh. I was looking at the potential list of projects and the project regarding adding support for batch-testing to the LLDB testsuite caught my interest. I was wondering how I can get started and if I can get in contact with Jim Ingham. Best, Mark Mark Babatunde University of Pittsburgh Class of 2019 Computer Science Major -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180319/e47b7a05/attachment-0001.html>
2018 Jun 26
2
[lldb-dev] RFC: libtrace
...converting these into types that clang understands. It will probably be useful someday to have an expression parser and language specific type system, but when that comes I don't think we'd want anything radically different than what LLDB already has. On Tue, Jun 26, 2018 at 12:26 PM Jim Ingham <jingham at apple.com> wrote: > Just to be clear, by "no clang integration" do you mean "no expression > parser" or do you mean something more radical? For instance, adding a > TypeSystem and its DWARF parser for C family languages that uses a > different und...
2013 May 23
1
[LLVMdev] Deprecating autoconf/make?
...ibutions recently--and > for whom you yourself, Eric, once worked until somewhat recently--won't be > able to build their own shiny new toolchain at all, unless they can somehow > convince management to install CMake. In fact I seem to recall quite > recently someone from Apple (Jim Ingham?) on one of the LLVM lists > complaining that he wanted to use ninja, but couldn't because he couldn't > get ninja and CMake installed on his workstation. Until this changes--and > good luck with that--expect heavy resistance from anyone still at Apple > (other than Doug Gregor,...
2013 May 23
0
[LLVMdev] Deprecating autoconf/make?
...epped up their contributions recently--and for whom you yourself, Eric, once worked until somewhat recently--won't be able to build their own shiny new toolchain at all, unless they can somehow convince management to install CMake. In fact I seem to recall quite recently someone from Apple (Jim Ingham?) on one of the LLVM lists complaining that he wanted to use ninja, but couldn't because he couldn't get ninja and CMake installed on his workstation. Until this changes--and good luck with that--expect heavy resistance from anyone still at Apple (other than Doug Gregor, of course :). - So...
2005 Feb 23
0
Smbclient - protocol negotiation failed
...6 1 4 1 311 2 2 10 got principal=NONE Got challenge flags: Got NTLMSSP neg_flags=0x60890215 NTLMSSP: Set final flags: Got NTLMSSP neg_flags=0x60080215 NTLMSSP Sign/Seal - Initialising with flags: Got NTLMSSP neg_flags=0x60080215 SPNEGO login failed: Logon failure Anonymous login successful Domain=[INGHAMS] OS=[Unix] Server=[Samba 3.0.11] Sharename Type Comment --------- ---- ------- netlogon Disk Network Logon Service print$ Disk Printer Drivers Share pub Disk IPC$ IPC...
2017 Jun 22
2
[lldb-dev] RFC: Cleaning up the Itanium demangler
This is Greg's area, he'll be able to answer in detail how the name chopper gets used. IIRC it chops demangled names, so it is indirectly a client of the demangler, but it doesn't use the demangler to do this directly. Name lookup is done by finding all the base name matches, then comparing the context. We don't do a very good job of doing fuzzy full name matches - for instance
2020 Mar 04
2
Continuing from dbgtrap on different targets
Hi, I'm noticing an unexpected difference between targets when I hit a dbgtrap in the debugger. Consider this simple llvm function: define void @do_break() { entry: call void @llvm.debugtrap() ret void } If I compile that with llc and use lldb to launch a program that calls it, on x86_64 linux (Ubuntu 18.04), here's what I see at the stop: Process 130404 stopped * thread #1,
2018 Jun 15
2
[lldb-dev] Adding DWARF5 accelerator table support to llvm
> On Jun 15, 2018, at 9:23 AM, <paul.robinson at sony.com> <paul.robinson at sony.com> wrote: > >> From: Greg Clayton [mailto:clayborg at gmail.com] >> >> ... >> If a class has templated functions, they will only be in the DWARF is a >> specialization was created and used. If you have a class that looks like: >> >> class A { >>
2018 Apr 17
1
[lldb-dev] lldb stops on every call to dlopen
It is interesting that the stop reason on the thread that stopped is "trace". That's what you would expect returning from the single-step to step over the breakpoint. But it looks like we got a signal while single-stepping, but the stop reason was misreported by somebody. Jim > On Apr 17, 2018, at 6:00 AM, Pavel Labath via lldb-dev <lldb-dev at lists.llvm.org> wrote:
2013 May 22
23
[LLVMdev] Deprecating autoconf/make?
Hi All, I fear starting another centi-thread on this but I'll give it a shot. We're currently supporting two build systems which is definitely one more than we (or I) want to support. I don't know of any support in autoconf past the --host/--build/--target case that's not supported in cmake. I'll send out an assertion here that this support isn't necessary and any system
2018 Jun 15
2
[lldb-dev] Adding DWARF5 accelerator table support to llvm
...gt;; jdevlieghere at apple.com <mailto:jdevlieghere at apple.com>; llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>; >> jan.kratochvil at redhat.com <mailto:jan.kratochvil at redhat.com>; lldb-dev at lists.llvm.org <mailto:lldb-dev at lists.llvm.org>; Jim Ingham >> Subject: Re: [llvm-dev] [lldb-dev] Adding DWARF5 accelerator table support >> to llvm >> >> >> >>> On Jun 15, 2018, at 9:23 AM, <paul.robinson at sony.com> >> <paul.robinson at sony.com> wrote: >>> >>>> From: Greg...
2018 Jun 26
4
RFC: libtrace
Hi all, We have been thinking internally about a lightweight llvm-based ptracer. To address one question up front: the primary way in which this differs from LLDB is that it targets a more narrow use case -- there is no scripting support, no clang integration, no dynamic extensibility, no support for running jitted code in the target, and no user interface. We have several use cases internally
2018 Jun 26
4
RFC: libtrace
On Tue, Jun 26, 2018 at 1:28 PM Adrian Prantl <aprantl at apple.com> wrote: > > > > On Jun 26, 2018, at 11:58 AM, Zachary Turner via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > > > Hi all, > > > > We have been thinking internally about a lightweight llvm-based > ptracer. To address one question up front: the primary way in which this
2002 Sep 25
1
Printer settings problem 2.2.6pre2
I am trying to apply some settings to a printer shared by Samba, including installing the drivers. I notice that I must be in printer admin or be root in order to do this, and I am. The logs say that I'm "logged in as admin user (root privileges)" which I assume is correct. I go into properties, click no when it asks me if I want to install drivers, and then go to New Driver and
2002 Sep 26
0
Re: Printer settings problem 2.2.6pre
In response to my own posting regarding being able to upload printer drivers but not being allowed to apply any settings ("Access Denied") with no obvious error in the logs, I have fixed it. All I did was copy the ntprinters.tdb from another Samba server, and it appears to work now. Not an ideal fix but it will have to do. I tried other versions of Samba but the problem persisted on