Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
4bb4ae96
Commit
4bb4ae96
authored
May 28, 2004
by
Geoffrey Keating
Committed by
Geoffrey Keating
May 28, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* stringpool.c: Add comments to PCH saving/restoring routines.
From-SVN: r82380
parent
711e3187
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
2 deletions
+25
-2
gcc/ChangeLog
+4
-0
gcc/stringpool.c
+21
-2
No files found.
gcc/ChangeLog
View file @
4bb4ae96
2004-05-28 Geoffrey Keating <geoffk@apple.com>
* stringpool.c: Add comments to PCH saving/restoring routines.
2004-05-28 Andrew Pinski <pinskia@physics.uc.edu>
* c-common.c (c_estimate_num_insns_1): Kill.
...
...
gcc/stringpool.c
View file @
4bb4ae96
...
...
@@ -146,7 +146,7 @@ stringpool_statistics (void)
{
ht_dump_statistics
(
ident_hash
);
}
/* Mark an identifier for GC. */
static
int
...
...
@@ -193,9 +193,12 @@ gt_pch_n_S (const void *x)
{
gt_pch_note_object
((
void
*
)
x
,
(
void
*
)
x
,
&
gt_pch_p_S
);
}
/* Handle saving and restoring the string pool for PCH. */
/* SPD is saved in the PCH file and holds the information needed
to restore the string pool. */
struct
string_pool_data
GTY
(())
{
tree
*
GTY
((
length
(
"%h.nslots"
)))
entries
;
...
...
@@ -205,6 +208,9 @@ struct string_pool_data GTY(())
static
GTY
(())
struct
string_pool_data
*
spd
;
/* Copy HP into the corresponding entry in HT2, and then clear
the cpplib parts of HP. */
static
int
ht_copy_and_clear
(
cpp_reader
*
r
ATTRIBUTE_UNUSED
,
hashnode
hp
,
const
void
*
ht2_p
)
{
...
...
@@ -227,8 +233,15 @@ ht_copy_and_clear (cpp_reader *r ATTRIBUTE_UNUSED, hashnode hp, const void *ht2_
return
1
;
}
/* The hash table as it was before gt_pch_save_stringpool was called. */
static
struct
ht
*
saved_ident_hash
;
/* The hash table contains pointers to the cpp_hashnode inside the
lang_identifier. The PCH machinery can't handle pointers that refer
to the inside of an object, so to save the hash table for PCH the
pointers are adjusted and stored in the variable SPD. */
void
gt_pch_save_stringpool
(
void
)
{
...
...
@@ -249,6 +262,9 @@ gt_pch_save_stringpool (void)
ht_forall
(
ident_hash
,
ht_copy_and_clear
,
saved_ident_hash
);
}
/* Return the stringpool to its state before gt_pch_save_stringpool
was called. */
void
gt_pch_fixup_stringpool
(
void
)
{
...
...
@@ -257,6 +273,9 @@ gt_pch_fixup_stringpool (void)
saved_ident_hash
=
0
;
}
/* A PCH file has been restored, which loaded SPD; fill the real hash table
with adjusted pointers from SPD. */
void
gt_pch_restore_stringpool
(
void
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment