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

Side by Side Diff: runtime/vm/parser.h

Issue 17315008: Optimizing noSuchMethod invocation with no arguments. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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/object.cc ('k') | runtime/vm/parser.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 #ifndef VM_PARSER_H_ 5 #ifndef VM_PARSER_H_
6 #define VM_PARSER_H_ 6 #define VM_PARSER_H_
7 7
8 #include "include/dart_api.h" 8 #include "include/dart_api.h"
9 9
10 #include "lib/invocation_mirror.h" 10 #include "lib/invocation_mirror.h"
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 Array& default_parameter_values); 431 Array& default_parameter_values);
432 SequenceNode* ParseFunc(const Function& func, 432 SequenceNode* ParseFunc(const Function& func,
433 Array& default_parameter_values); 433 Array& default_parameter_values);
434 434
435 void ParseNativeFunctionBlock(const ParamList* params, const Function& func); 435 void ParseNativeFunctionBlock(const ParamList* params, const Function& func);
436 436
437 SequenceNode* ParseInstanceGetter(const Function& func); 437 SequenceNode* ParseInstanceGetter(const Function& func);
438 SequenceNode* ParseInstanceSetter(const Function& func); 438 SequenceNode* ParseInstanceSetter(const Function& func);
439 SequenceNode* ParseStaticConstGetter(const Function& func); 439 SequenceNode* ParseStaticConstGetter(const Function& func);
440 SequenceNode* ParseMethodExtractor(const Function& func); 440 SequenceNode* ParseMethodExtractor(const Function& func);
441 SequenceNode* ParseNoSuchMethodDispatcher(const Function& func);
441 442
442 void ChainNewBlock(LocalScope* outer_scope); 443 void ChainNewBlock(LocalScope* outer_scope);
443 void OpenBlock(); 444 void OpenBlock();
444 void OpenLoopBlock(); 445 void OpenLoopBlock();
445 void OpenFunctionBlock(const Function& func); 446 void OpenFunctionBlock(const Function& func);
446 SequenceNode* CloseBlock(); 447 SequenceNode* CloseBlock();
447 448
448 LocalVariable* LookupPhaseParameter(); 449 LocalVariable* LookupPhaseParameter();
449 LocalVariable* LookupReceiver(LocalScope* from_scope, bool test_only); 450 LocalVariable* LookupReceiver(LocalScope* from_scope, bool test_only);
450 LocalVariable* LookupTypeArgumentsParameter(LocalScope* from_scope, 451 LocalVariable* LookupTypeArgumentsParameter(LocalScope* from_scope,
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 // code at all points in the try block where an exit from the block is 685 // code at all points in the try block where an exit from the block is
685 // done using 'return', 'break' or 'continue' statements. 686 // done using 'return', 'break' or 'continue' statements.
686 TryBlocks* try_blocks_list_; 687 TryBlocks* try_blocks_list_;
687 688
688 DISALLOW_COPY_AND_ASSIGN(Parser); 689 DISALLOW_COPY_AND_ASSIGN(Parser);
689 }; 690 };
690 691
691 } // namespace dart 692 } // namespace dart
692 693
693 #endif // VM_PARSER_H_ 694 #endif // VM_PARSER_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698