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

Side by Side Diff: src/full-codegen.h

Issue 995013005: Simplify pending message script handling. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix hardcoded constant. Created 5 years, 9 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
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/ia32/full-codegen-ia32.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_FULL_CODEGEN_H_ 5 #ifndef V8_FULL_CODEGEN_H_
6 #define V8_FULL_CODEGEN_H_ 6 #define V8_FULL_CODEGEN_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 242
243 virtual NestedStatement* Exit(int* stack_depth, int* context_length); 243 virtual NestedStatement* Exit(int* stack_depth, int* context_length);
244 244
245 private: 245 private:
246 Label* finally_entry_; 246 Label* finally_entry_;
247 }; 247 };
248 248
249 // The finally block of a try/finally statement. 249 // The finally block of a try/finally statement.
250 class Finally : public NestedStatement { 250 class Finally : public NestedStatement {
251 public: 251 public:
252 static const int kElementCount = 5; 252 static const int kElementCount = 4;
253 253
254 explicit Finally(FullCodeGenerator* codegen) : NestedStatement(codegen) { } 254 explicit Finally(FullCodeGenerator* codegen) : NestedStatement(codegen) { }
255 virtual ~Finally() {} 255 virtual ~Finally() {}
256 256
257 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { 257 virtual NestedStatement* Exit(int* stack_depth, int* context_length) {
258 *stack_depth += kElementCount; 258 *stack_depth += kElementCount;
259 return previous_; 259 return previous_;
260 } 260 }
261 }; 261 };
262 262
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
1029 1029
1030 Address start_; 1030 Address start_;
1031 Address instruction_start_; 1031 Address instruction_start_;
1032 uint32_t length_; 1032 uint32_t length_;
1033 }; 1033 };
1034 1034
1035 1035
1036 } } // namespace v8::internal 1036 } } // namespace v8::internal
1037 1037
1038 #endif // V8_FULL_CODEGEN_H_ 1038 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698