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
adf936a6
Commit
adf936a6
authored
Mar 15, 2003
by
Hans Boehm
Committed by
Hans Boehm
Mar 15, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* java/lang/natObject.cc (JV_SYNC_HASH): replace signed % by &.
From-SVN: r64386
parent
af2e51f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
libjava/ChangeLog
+4
-0
libjava/java/lang/natObject.cc
+3
-3
No files found.
libjava/ChangeLog
View file @
adf936a6
2003
-
03
-
14
Hans
Boehm
<
Hans
.
Boehm
@
hp
.
com
>
*
java
/
lang
/
natObject
.
cc
(
JV_SYNC_HASH
):
replace
signed
%
by
&.
2003
-
02
-
14
Jeroen
Frijters
<
jeroen
@
sumatra
.
nl
>
*
java
/
io
/
ObjectInputStream
.
java
(
readObject
):
Cleaned
up
the
class
...
...
libjava/java/lang/natObject.cc
View file @
adf936a6
...
...
@@ -351,7 +351,7 @@ struct heavy_lock {
obj_addr_t
address
;
// Object to which this lock corresponds.
// Should not be traced by GC.
// Cleared as heavy_lock is destroyed.
// Together with the rest of the hevy lock
// Together with the rest of the he
a
vy lock
// chain, this is protected by the lock
// bit in the hash table entry to which
// the chain is attached.
...
...
@@ -457,12 +457,12 @@ struct hash_entry {
};
#ifndef JV_SYNC_TABLE_SZ
# define JV_SYNC_TABLE_SZ 2048
# define JV_SYNC_TABLE_SZ 2048
// Must be power of 2.
#endif
hash_entry
light_locks
[
JV_SYNC_TABLE_SZ
];
#define JV_SYNC_HASH(p) (((long)p ^ ((long)p >> 10))
% JV_SYNC_TABLE_SZ
)
#define JV_SYNC_HASH(p) (((long)p ^ ((long)p >> 10))
& (JV_SYNC_TABLE_SZ-1)
)
// Note that the light_locks table is scanned conservatively by the
// collector. It is essential the the heavy_locks field is scanned.
...
...
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