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

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

Issue 10440099: Adding unary op optimizations. missing assembly operations/ (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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_IA32. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32.
6 #if defined(TARGET_ARCH_IA32) 6 #if defined(TARGET_ARCH_IA32)
7 7
8 #include "vm/flow_graph_compiler.h" 8 #include "vm/flow_graph_compiler.h"
9 #include "vm/locations.h" 9 #include "vm/locations.h"
10 10
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 LocationSummary* BinaryOpComp::MakeLocationSummary() const { 387 LocationSummary* BinaryOpComp::MakeLocationSummary() const {
388 return NULL; 388 return NULL;
389 } 389 }
390 390
391 391
392 void BinaryOpComp::EmitNativeCode(FlowGraphCompiler* compile) { 392 void BinaryOpComp::EmitNativeCode(FlowGraphCompiler* compile) {
393 UNIMPLEMENTED(); 393 UNIMPLEMENTED();
394 } 394 }
395 395
396 396
397 LocationSummary* UnaryOpComp::MakeLocationSummary() const {
398 return NULL;
399 }
400
401
402 void UnaryOpComp::EmitNativeCode(FlowGraphCompiler* compile) {
403 UNIMPLEMENTED();
404 }
405
406
397 } // namespace dart 407 } // namespace dart
398 408
399 #undef __ 409 #undef __
400 410
401 #endif // defined TARGET_ARCH_X64 411 #endif // defined TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698