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

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

Issue 1731743003: Move precompilation-related flags to flags list. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: make print_stop_message default false to fix build Created 4 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 | « runtime/vm/flow_graph_type_propagator.cc ('k') | runtime/vm/intermediate_language.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 #include "vm/il_printer.h" 5 #include "vm/il_printer.h"
6 6
7 #include "vm/flow_graph_range_analysis.h" 7 #include "vm/flow_graph_range_analysis.h"
8 #include "vm/intermediate_language.h" 8 #include "vm/intermediate_language.h"
9 #include "vm/os.h" 9 #include "vm/os.h"
10 #include "vm/parser.h" 10 #include "vm/parser.h"
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 } 440 }
441 441
442 442
443 void PolymorphicInstanceCallInstr::PrintOperandsTo(BufferFormatter* f) const { 443 void PolymorphicInstanceCallInstr::PrintOperandsTo(BufferFormatter* f) const {
444 f->Print(" %s", instance_call()->function_name().ToCString()); 444 f->Print(" %s", instance_call()->function_name().ToCString());
445 for (intptr_t i = 0; i < ArgumentCount(); ++i) { 445 for (intptr_t i = 0; i < ArgumentCount(); ++i) {
446 f->Print(", "); 446 f->Print(", ");
447 PushArgumentAt(i)->value()->PrintTo(f); 447 PushArgumentAt(i)->value()->PrintTo(f);
448 } 448 }
449 PrintICDataHelper(f, ic_data()); 449 PrintICDataHelper(f, ic_data());
450 if (with_checks()) {
451 f->Print(" WITH CHECKS");
452 }
450 } 453 }
451 454
452 455
453 void StrictCompareInstr::PrintOperandsTo(BufferFormatter* f) const { 456 void StrictCompareInstr::PrintOperandsTo(BufferFormatter* f) const {
454 f->Print("%s, ", Token::Str(kind())); 457 f->Print("%s, ", Token::Str(kind()));
455 left()->PrintTo(f); 458 left()->PrintTo(f);
456 f->Print(", "); 459 f->Print(", ");
457 right()->PrintTo(f); 460 right()->PrintTo(f);
458 if (needs_number_check()) { 461 if (needs_number_check()) {
459 f->Print(", with number check"); 462 f->Print(", with number check");
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 } 1256 }
1254 1257
1255 1258
1256 bool FlowGraphPrinter::ShouldPrint(const Function& function) { 1259 bool FlowGraphPrinter::ShouldPrint(const Function& function) {
1257 return false; 1260 return false;
1258 } 1261 }
1259 1262
1260 #endif // !PRODUCT 1263 #endif // !PRODUCT
1261 1264
1262 } // namespace dart 1265 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_type_propagator.cc ('k') | runtime/vm/intermediate_language.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698