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

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

Issue 11043020: Add fast 64-bit bitwise negation to the IA32 optimizing compiler. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: fixed bug in the optimizer that prevented optimization Created 8 years, 2 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) 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/globals.h" // Needed here to get TARGET_ARCH_X64. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_X64.
6 #if defined(TARGET_ARCH_X64) 6 #if defined(TARGET_ARCH_X64)
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 2158 matching lines...) Expand 10 before | Expand all | Expand 10 after
2169 UNIMPLEMENTED(); 2169 UNIMPLEMENTED();
2170 return NULL; 2170 return NULL;
2171 } 2171 }
2172 2172
2173 2173
2174 void UnboxedMintBinaryOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 2174 void UnboxedMintBinaryOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2175 UNIMPLEMENTED(); 2175 UNIMPLEMENTED();
2176 } 2176 }
2177 2177
2178 2178
2179 LocationSummary* UnboxedMintUnaryOpInstr::MakeLocationSummary() const {
2180 UNIMPLEMENTED();
2181 return NULL;
2182 }
2183
2184
2185 void UnboxedMintUnaryOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2186 UNIMPLEMENTED();
2187 }
2188
2189
2179 } // namespace dart 2190 } // namespace dart
2180 2191
2181 #undef __ 2192 #undef __
2182 2193
2183 #endif // defined TARGET_ARCH_X64 2194 #endif // defined TARGET_ARCH_X64
OLDNEW
« runtime/vm/flow_graph_optimizer.cc ('K') | « runtime/vm/intermediate_language_ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698