Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
4,253
Issues
4,253
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
394
Merge Requests
394
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
c1123a7d
Commit
c1123a7d
authored
Apr 17, 2008
by
simonmarhaskell@gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
declare the GC thread register variable more portably
parent
4e79709d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
2 deletions
+29
-2
rts/sm/GCThread.h
rts/sm/GCThread.h
+29
-2
No files found.
rts/sm/GCThread.h
View file @
c1123a7d
...
...
@@ -181,8 +181,35 @@ typedef struct gc_thread_ {
extern
nat
n_gc_threads
;
extern
gc_thread
**
gc_threads
;
register
gc_thread
*
gct
__asm__
(
"%rbx"
);
// extern gc_thread *gct; // this thread's gct TODO: make thread-local
/* -----------------------------------------------------------------------------
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.
-------------------------------------------------------------------------- */
#define GLOBAL_REG_DECL(type,name,reg) register type name REG(reg);
#if defined(REG_Base)
GLOBAL_REG_DECL
(
gc_thread
*
,
gct
,
REG_Base
)
#define DECLARE_GCT
/* nothing */
#elif defined(REG_R1)
GLOBAL_REG_DECL
(
gc_thread
*
,
gct
,
REG_R1
)
#define DECLARE_GCT
/* nothing */
#elif defined(__GNUC__)
extern
__thread
gc_thread
*
gct
;
#define DECLARE_GCT __thread gc_thread* gct;
#else
#error Cannot find a way to declare the thread-local gct
#endif
#endif // GCTHREAD_H
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