Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
189c7ac1
Commit
189c7ac1
authored
Jan 25, 2016
by
Marius Wachtler
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1025 from undingen/pp_stack
llvm tier: reduce scratch size
parents
02bd71a8
cc9c6ee0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/codegen/patchpoints.h
src/codegen/patchpoints.h
+1
-1
No files found.
src/codegen/patchpoints.h
View file @
189c7ac1
...
...
@@ -129,7 +129,7 @@ public:
const
std
::
vector
<
FrameVarInfo
>&
getFrameVars
()
{
return
frame_vars
;
}
int
scratchStackmapArg
()
{
return
0
;
}
int
scratchSize
()
{
return
80
+
MAX_FRAME_SPILLS
*
sizeof
(
void
*
)
;
}
int
scratchSize
()
{
return
isDeopt
()
?
MAX_FRAME_SPILLS
*
sizeof
(
void
*
)
:
96
;
}
bool
isDeopt
()
const
{
return
icinfo
?
icinfo
->
isDeopt
()
:
false
;
}
bool
isFrameInfoStackmap
()
const
{
return
is_frame_info_stackmap
;
}
int
numFrameSpillsSupported
()
const
{
return
isDeopt
()
?
MAX_FRAME_SPILLS
:
0
;
}
...
...
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