* [dictionary] merge with mainline
@ 2003-06-27 21:10 David Carlton
0 siblings, 0 replies; 10+ messages in thread
From: David Carlton @ 2003-06-27 21:10 UTC (permalink / raw)
To: gdb-patches
I've just merged my branch with mainline. (Or rather, CVS is in the
process of doing the cvs commit, which will probably take a while.)
The merge tag is carlton_dictionary-20030627-merge.
It's a bit broken right now: as Daniel noted, my anonymous objfiles
don't interact well with the recent dwarf2-frame addition. I'll fix
that later this afternoon.
David Carlton
carlton@kealia.com
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dictionary] merge with mainline
@ 2004-01-26 19:16 David Carlton
0 siblings, 0 replies; 10+ messages in thread
From: David Carlton @ 2004-01-26 19:16 UTC (permalink / raw)
To: gdb-patches
I've merged carlton_dictionary-branch with mainline; merge tag is
carlton_dictionary-20040126-merge.
David Carlton
carlton@kealia.com
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dictionary] merge with mainline
@ 2003-12-15 23:57 David Carlton
0 siblings, 0 replies; 10+ messages in thread
From: David Carlton @ 2003-12-15 23:57 UTC (permalink / raw)
To: gdb-patches
I've merged my branch with mainline, and added DMGL_PARAMS to a couple
of cplus_demangle calls.
David Carlton
carlton@kealia.com
2003-12-15 David Carlton <carlton@kealia.com>
* Merge with mainline; tag is carlton_dictionary-20031215-merge.
* cp-support.c (class_name_from_physname): Add DMGL_PARAMS to call
to cplus_demangle.
(method_name_from_physname): Ditto.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dictionary] merge with mainline
@ 2003-11-11 23:48 David Carlton
0 siblings, 0 replies; 10+ messages in thread
From: David Carlton @ 2003-11-11 23:48 UTC (permalink / raw)
To: gdb-patches
I've just merged carlton_dictionary-branch with mainline; merge tag is
carlton-dictionary-20031111-merge. This is part of preparing my next
patch going in the other direction, which will cause us to generate
fully-qualified names for C++ nested types; I should have an RFA for
that tomorrow, unless emergencies at work take precedence. (Which may
well happen: I'll generate the patch this week some time, I promise.)
David Carlton
carlton@kealia.com
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dictionary] merge with mainline
@ 2003-09-17 21:30 David Carlton
0 siblings, 0 replies; 10+ messages in thread
From: David Carlton @ 2003-09-17 21:30 UTC (permalink / raw)
To: gdb-patches
I've merged carlton_dictionary-branch with mainline; tag is
carlton_dictionary-20030917-merge.
David Carlton
carlton@kealia.com
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dictionary] merge with mainline
@ 2003-08-05 17:40 David Carlton
0 siblings, 0 replies; 10+ messages in thread
From: David Carlton @ 2003-08-05 17:40 UTC (permalink / raw)
To: gdb-patches
I've merged the dictionary branch with mainline; merge tag is
carlton_dictionary-20030805-merge.
David Carlton
carlton@kealia.com
2003-08-05 David Carlton <carlton@kealia.com>
* configure.in (build_warnings): Delete -Wformat-nonliteral.
* configure (build_warnings): Ditto.
* Merge with mainline; tag is carlton_dictionary-20030805-merge.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dictionary] merge with mainline
@ 2003-05-23 17:49 David Carlton
0 siblings, 0 replies; 10+ messages in thread
From: David Carlton @ 2003-05-23 17:49 UTC (permalink / raw)
To: gdb-patches
I've merged carlton_dictionary-branch with mainline; merge tag is
carlton_dictionary-20030523-merge.
David Carlton
carlton@bactrian.org
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dictionary] merge with mainline
@ 2003-05-01 0:51 David Carlton
0 siblings, 0 replies; 10+ messages in thread
From: David Carlton @ 2003-05-01 0:51 UTC (permalink / raw)
To: gdb-patches
I've just merged the dictionary branch with mainline; merge tag is
carlton_dictionary-20030430-merge. I also did a bit of regularizing
of its dictionary.{h,c} and block.h with the mainline patch that I
just posted; my apologies for not doing that as a separate commit with
a patch here, but the changes really are minimal.
Some random change in GDB during the time also caused
gdb.base/attach.exp to tickle a bug in code that I'd written to set
the name of anonymous objfiles; there's a similar bug on the mainline,
and I'll post a patch for it as soon as 'make check' finishes.
David Carlton
carlton@bactrian.org
2003-04-30 David Carlton <carlton@bactrian.org>
* cp-namespace.c (get_namespace_objfile): Copy the namespace
objfile's name.
* block.h (ALL_BLOCK_SYMBOLS): Move here from dictionary.h.
* dictionary.c: Sync up with mainline version I just posted.
Specifically, update some commments, and:
(dict_create_hashed): Fiddle with nsyms updating.
(dict_create_linear): Ditto.
(dict_lookup): Delete.
(iterator_next_hashed): Delete FIXME comment.
(iter_name_first_hashed): Replace 'sym' by 'sym != NULL'.
(iter_name_next_hashed): Replate 'next' by 'next != NULL'.
* dictionary.h: Sync up with mainline version I just posted: add
inclusion guards, delete declaration of dict_lookup, delete
ALL_BLOCK_SYMBOLs.
* Merge with mainline; tag is carlton_dictionary-20030430-merge.
^ permalink raw reply [flat|nested] 10+ messages in thread* [dictionary] merge with mainline
@ 2003-04-16 20:11 David Carlton
2003-04-17 15:39 ` David Carlton
0 siblings, 1 reply; 10+ messages in thread
From: David Carlton @ 2003-04-16 20:11 UTC (permalink / raw)
To: gdb-patches
I've merged carlton_dictionary-branch with mainline; the merge tag is
carlton_dictionary-20030416-merge. Some subsequent cleanups would be
a good idea (e.g. moving more stuff from cp-support.c into the new
cp-namespace.c), but it should be in a working state right now.
David Carlton
carlton@math.stanford.edu
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dictionary] merge with mainline
2003-04-16 20:11 David Carlton
@ 2003-04-17 15:39 ` David Carlton
0 siblings, 0 replies; 10+ messages in thread
From: David Carlton @ 2003-04-17 15:39 UTC (permalink / raw)
To: gdb-patches
On 16 Apr 2003 13:11:28 -0700, David Carlton <carlton@math.stanford.edu> said:
> I've merged carlton_dictionary-branch with mainline; the merge tag is
> carlton_dictionary-20030416-merge. Some subsequent cleanups would be
> a good idea (e.g. moving more stuff from cp-support.c into the new
> cp-namespace.c), but it should be in a working state right now.
Also, for what it's worth, an all-targets build passed on it.
David Carlton
carlton@math.stanford.edu
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2004-01-26 19:16 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-27 21:10 [dictionary] merge with mainline David Carlton
-- strict thread matches above, loose matches on Subject: below --
2004-01-26 19:16 David Carlton
2003-12-15 23:57 David Carlton
2003-11-11 23:48 David Carlton
2003-09-17 21:30 David Carlton
2003-08-05 17:40 David Carlton
2003-05-23 17:49 David Carlton
2003-05-01 0:51 David Carlton
2003-04-16 20:11 David Carlton
2003-04-17 15:39 ` David Carlton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox