Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: src/deoptimizer.h

Issue 7321008: Try to fix Windows compilation error. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/deoptimizer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 // back to a normal stack guard check. 187 // back to a normal stack guard check.
188 static void RevertStackCheckCodeAt(Address pc_after, 188 static void RevertStackCheckCodeAt(Address pc_after,
189 Code* check_code, 189 Code* check_code,
190 Code* replacement_code); 190 Code* replacement_code);
191 191
192 ~Deoptimizer(); 192 ~Deoptimizer();
193 193
194 void MaterializeHeapNumbers(); 194 void MaterializeHeapNumbers();
195 #ifdef ENABLE_DEBUGGER_SUPPORT 195 #ifdef ENABLE_DEBUGGER_SUPPORT
196 void MaterializeHeapNumbersForDebuggerInspectableFrame( 196 void MaterializeHeapNumbersForDebuggerInspectableFrame(
197 Address top, intptr_t size, DeoptimizedFrameInfo* info); 197 Address top, uint32_t size, DeoptimizedFrameInfo* info);
198 #endif 198 #endif
199 199
200 static void ComputeOutputFrames(Deoptimizer* deoptimizer); 200 static void ComputeOutputFrames(Deoptimizer* deoptimizer);
201 201
202 static Address GetDeoptimizationEntry(int id, BailoutType type); 202 static Address GetDeoptimizationEntry(int id, BailoutType type);
203 static int GetDeoptimizationId(Address addr, BailoutType type); 203 static int GetDeoptimizationId(Address addr, BailoutType type);
204 static int GetOutputInfo(DeoptimizationOutputData* data, 204 static int GetOutputInfo(DeoptimizationOutputData* data,
205 unsigned node_id, 205 unsigned node_id,
206 SharedFunctionInfo* shared); 206 SharedFunctionInfo* shared);
207 207
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 Object** parameters_; 715 Object** parameters_;
716 Object** expression_stack_; 716 Object** expression_stack_;
717 717
718 friend class Deoptimizer; 718 friend class Deoptimizer;
719 }; 719 };
720 #endif 720 #endif
721 721
722 } } // namespace v8::internal 722 } } // namespace v8::internal
723 723
724 #endif // V8_DEOPTIMIZER_H_ 724 #endif // V8_DEOPTIMIZER_H_
OLDNEW
« no previous file with comments | « no previous file | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698