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,249
Issues
4,249
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
393
Merge Requests
393
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
47ef1f6c
Commit
47ef1f6c
authored
Jan 12, 2000
by
simonmar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[project @ 2000-01-12 12:39:20 by simonmar]
mark INDirections as non-sparkable.
parent
94ab5da3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
ghc/rts/ClosureFlags.c
ghc/rts/ClosureFlags.c
+13
-6
No files found.
ghc/rts/ClosureFlags.c
View file @
47ef1f6c
/* -----------------------------------------------------------------------------
* $Id: ClosureFlags.c,v 1.
4 1999/11/09 15:46:49
simonmar Exp $
* $Id: ClosureFlags.c,v 1.
5 2000/01/12 12:39:20
simonmar Exp $
*
* (c) The GHC Team 1998-1999
*
...
...
@@ -16,6 +16,13 @@ StgWord16 closure_flags[] = {
* ClosureTypes.h.
*/
/* ToDo: some of these flags seem to be duplicated.
* - NS is the same as HNF, and the negation of THU
* (however, we set NS for indirections, which is probably the
* right thing to do, since we never get indirections pointing
* to thunks.)
*/
/* HNF BTM NS STA THU MUT UPT SRT */
/* INVALID_OBJECT */
(
0
),
...
...
@@ -47,11 +54,11 @@ StgWord16 closure_flags[] = {
/* BCO */
(
_HNF
|
_NS
),
/* AP_UPD */
(
_BTM
|
_THU
),
/* PAP */
(
_HNF
|
_NS
),
/* IND */
(
0
),
/* IND_OLDGEN */
(
0
),
/* IND_PERM */
(
0
),
/* IND_OLDGEN_PERM */
(
0
),
/* IND_STATIC */
(
_STA
),
/* IND */
(
_NS
),
/* IND_OLDGEN */
(
_NS
),
/* IND_PERM */
(
_NS
),
/* IND_OLDGEN_PERM */
(
_NS
),
/* IND_STATIC */
(
_NS
|
_STA
),
/* CAF_UNENTERED */
(
0
),
/* CAF_ENTERED */
(
0
),
/* CAF_BLACKHOLE */
(
_BTM
|
_NS
|
_MUT
|
_UPT
),
...
...
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