Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
bb0fe6ce
Commit
bb0fe6ce
authored
Jun 03, 2008
by
Simon Marlow
Browse files
comment updates
parent
37eae200
Changes
1
Show whitespace changes
Inline
Side-by-side
rts/sm/GCThread.h
View file @
bb0fe6ce
...
...
@@ -105,7 +105,7 @@ typedef struct step_workspace_ {
GC thread object
Every GC thread has one of these. It contains all the step specific
workspaces and other GC thread lo
a
cl information. At some later
workspaces and other GC thread loc
a
l information. At some later
point it maybe useful to move this other into the TLS store of the
GC threads
------------------------------------------------------------------------- */
...
...
@@ -185,7 +185,13 @@ extern gc_thread **gc_threads;
/* -----------------------------------------------------------------------------
The gct variable is thread-local and points to the current thread's
gc_thread structure. It is heavily accessed, so we try to put gct
into a global register variable if possible.
into a global register variable if possible; if we don't have a
register then use gcc's __thread extension to create a thread-local
variable.
Even on x86 where registers are scarce, it is worthwhile using a
register variable here: I measured about a 2-5% slowdown with the
__thread version.
-------------------------------------------------------------------------- */
#define GLOBAL_REG_DECL(type,name,reg) register type name REG(reg);
...
...
Write
Preview
Supports
Markdown
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