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

Unified Diff: vm/code_generator_ia32.cc

Issue 9265021: Improve compile times for swarm application startup (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | vm/code_generator_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/code_generator_ia32.cc
===================================================================
--- vm/code_generator_ia32.cc (revision 3422)
+++ vm/code_generator_ia32.cc (working copy)
@@ -2490,7 +2490,8 @@
void CodeGenerator::GenerateInstanceGetterCall(intptr_t node_id,
intptr_t token_index,
const String& field_name) {
- const String& getter_name = String::ZoneHandle(Field::GetterName(field_name));
+ const String& getter_name =
+ String::ZoneHandle(Field::GetterSymbol(field_name));
const int kNumberOfArguments = 1;
const Array& kNoArgumentNames = Array::Handle();
const int kNumArgumentsChecked = 1;
@@ -2520,7 +2521,8 @@
void CodeGenerator::GenerateInstanceSetterCall(intptr_t node_id,
intptr_t token_index,
const String& field_name) {
- const String& setter_name = String::ZoneHandle(Field::SetterName(field_name));
+ const String& setter_name =
+ String::ZoneHandle(Field::SetterSymbol(field_name));
const int kNumberOfArguments = 2; // receiver + value.
const Array& kNoArgumentNames = Array::Handle();
const int kNumArgumentsChecked = 1;
« no previous file with comments | « no previous file | vm/code_generator_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698