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

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

Issue 13936009: Inline Float32x4 constructors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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
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 2011 matching lines...) Expand 10 before | Expand all | Expand 10 after
2022 UNIMPLEMENTED(); 2022 UNIMPLEMENTED();
2023 return NULL; 2023 return NULL;
2024 } 2024 }
2025 2025
2026 2026
2027 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 2027 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2028 UNIMPLEMENTED(); 2028 UNIMPLEMENTED();
2029 } 2029 }
2030 2030
2031 2031
2032 LocationSummary* Float32x4ConstructorInstr::MakeLocationSummary() const {
2033 UNIMPLEMENTED();
2034 return NULL;
2035 }
2036
2037
2038 void Float32x4ConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2039 UNIMPLEMENTED();
2040 }
2041
2042
2043 LocationSummary* Float32x4ZeroInstr::MakeLocationSummary() const {
2044 UNIMPLEMENTED();
2045 return NULL;
2046 }
2047
2048
2049 void Float32x4ZeroInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2050 UNIMPLEMENTED();
2051 }
2052
2053
2054 LocationSummary* Float32x4SplatInstr::MakeLocationSummary() const {
2055 UNIMPLEMENTED();
2056 return NULL;
2057 }
2058
2059
2060 void Float32x4SplatInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2061 UNIMPLEMENTED();
2062 }
2063
2064
2032 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { 2065 LocationSummary* MathSqrtInstr::MakeLocationSummary() const {
2033 UNIMPLEMENTED(); 2066 UNIMPLEMENTED();
2034 return NULL; 2067 return NULL;
2035 } 2068 }
2036 2069
2037 2070
2038 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 2071 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2039 UNIMPLEMENTED(); 2072 UNIMPLEMENTED();
2040 } 2073 }
2041 2074
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
2596 &label, 2629 &label,
2597 PcDescriptors::kOther, 2630 PcDescriptors::kOther,
2598 locs()); 2631 locs());
2599 __ Drop(2); // Discard type arguments and receiver. 2632 __ Drop(2); // Discard type arguments and receiver.
2600 } 2633 }
2601 2634
2602 } // namespace dart 2635 } // namespace dart
2603 2636
2604 #endif // defined TARGET_ARCH_ARM 2637 #endif // defined TARGET_ARCH_ARM
2605 2638
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698