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

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

Issue 12042014: Revert "Introduce InvokeMathCFunction that can be used to directly invoke mathematical function pro… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | runtime/vm/intermediate_language_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 (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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_ARM. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/intermediate_language.h" 8 #include "vm/intermediate_language.h"
9 9
10 #include "lib/error.h" 10 #include "lib/error.h"
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 UNIMPLEMENTED(); 488 UNIMPLEMENTED();
489 return NULL; 489 return NULL;
490 } 490 }
491 491
492 492
493 void DoubleToDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 493 void DoubleToDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
494 UNIMPLEMENTED(); 494 UNIMPLEMENTED();
495 } 495 }
496 496
497 497
498 LocationSummary* InvokeMathCFunctionInstr::MakeLocationSummary() const {
499 UNIMPLEMENTED();
500 return NULL;
501 }
502
503
504 void InvokeMathCFunctionInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
505 UNIMPLEMENTED();
506 }
507
508
509 LocationSummary* PolymorphicInstanceCallInstr::MakeLocationSummary() const { 498 LocationSummary* PolymorphicInstanceCallInstr::MakeLocationSummary() const {
510 UNIMPLEMENTED(); 499 UNIMPLEMENTED();
511 return NULL; 500 return NULL;
512 } 501 }
513 502
514 503
515 void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 504 void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
516 UNIMPLEMENTED(); 505 UNIMPLEMENTED();
517 } 506 }
518 507
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 735
747 736
748 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 737 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
749 UNIMPLEMENTED(); 738 UNIMPLEMENTED();
750 } 739 }
751 740
752 } // namespace dart 741 } // namespace dart
753 742
754 #endif // defined TARGET_ARCH_ARM 743 #endif // defined TARGET_ARCH_ARM
755 744
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698