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

Side by Side Diff: runtime/vm/code_generator_ia32.cc

Issue 9316071: Dart_PropagateError, take 2. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 10 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 | « runtime/vm/code_generator.cc ('k') | runtime/vm/code_generator_ia32_test.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 (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32.
6 #if defined(TARGET_ARCH_IA32) 6 #if defined(TARGET_ARCH_IA32)
7 7
8 #include "vm/code_generator.h" 8 #include "vm/code_generator.h"
9 9
10 #include "lib/error.h" 10 #include "lib/error.h"
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 const ParsedFunction& parsed_function) 181 const ParsedFunction& parsed_function)
182 : assembler_(assembler), 182 : assembler_(assembler),
183 parsed_function_(parsed_function), 183 parsed_function_(parsed_function),
184 locals_space_size_(-1), 184 locals_space_size_(-1),
185 state_(NULL), 185 state_(NULL),
186 pc_descriptors_list_(NULL), 186 pc_descriptors_list_(NULL),
187 exception_handlers_list_(NULL), 187 exception_handlers_list_(NULL),
188 try_index_(CatchClauseNode::kInvalidTryIndex) { 188 try_index_(CatchClauseNode::kInvalidTryIndex) {
189 ASSERT(assembler_ != NULL); 189 ASSERT(assembler_ != NULL);
190 ASSERT(parsed_function.node_sequence() != NULL); 190 ASSERT(parsed_function.node_sequence() != NULL);
191 ASSERT(Isolate::Current()->long_jump_base()->IsSafeToJump());
191 pc_descriptors_list_ = new CodeGenerator::DescriptorList(); 192 pc_descriptors_list_ = new CodeGenerator::DescriptorList();
192 exception_handlers_list_ = new CodeGenerator::HandlerList(); 193 exception_handlers_list_ = new CodeGenerator::HandlerList();
193 } 194 }
194 195
195 196
196 bool CodeGenerator::IsResultNeeded(AstNode* node) const { 197 bool CodeGenerator::IsResultNeeded(AstNode* node) const {
197 return !state()->IsRootNode(node); 198 return !state()->IsRootNode(node);
198 } 199 }
199 200
200 201
(...skipping 2592 matching lines...) Expand 10 before | Expand all | Expand 10 after
2793 const Error& error = Error::Handle( 2794 const Error& error = Error::Handle(
2794 Parser::FormatError(script, token_index, "Error", format, args)); 2795 Parser::FormatError(script, token_index, "Error", format, args));
2795 va_end(args); 2796 va_end(args);
2796 Isolate::Current()->long_jump_base()->Jump(1, error); 2797 Isolate::Current()->long_jump_base()->Jump(1, error);
2797 UNREACHABLE(); 2798 UNREACHABLE();
2798 } 2799 }
2799 2800
2800 } // namespace dart 2801 } // namespace dart
2801 2802
2802 #endif // defined TARGET_ARCH_IA32 2803 #endif // defined TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/code_generator_ia32_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698