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

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

Issue 11032003: Add integer negate back to list of intrinsified methods. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
« no previous file with comments | « runtime/vm/intrinsifier.h ('k') | runtime/vm/intrinsifier_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) 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_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/intrinsifier.h" 8 #include "vm/intrinsifier.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 bool Intrinsifier::Integer_modulo(Assembler* assembler) { 118 bool Intrinsifier::Integer_modulo(Assembler* assembler) {
119 return false; 119 return false;
120 } 120 }
121 121
122 122
123 bool Intrinsifier::Integer_truncDivide(Assembler* assembler) { 123 bool Intrinsifier::Integer_truncDivide(Assembler* assembler) {
124 return false; 124 return false;
125 } 125 }
126 126
127 127
128 bool Intrinsifier::Integer_negate(Assembler* assembler) {
129 return false;
130 }
131
132
128 bool Intrinsifier::Integer_bitAndFromInteger(Assembler* assembler) { 133 bool Intrinsifier::Integer_bitAndFromInteger(Assembler* assembler) {
129 return false; 134 return false;
130 } 135 }
131 136
132 137
133 bool Intrinsifier::Integer_bitAnd(Assembler* assembler) { 138 bool Intrinsifier::Integer_bitAnd(Assembler* assembler) {
134 return false; 139 return false;
135 } 140 }
136 141
137 142
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 } 324 }
320 325
321 326
322 bool Intrinsifier::String_isEmpty(Assembler* assembler) { 327 bool Intrinsifier::String_isEmpty(Assembler* assembler) {
323 return false; 328 return false;
324 } 329 }
325 330
326 } // namespace dart 331 } // namespace dart
327 332
328 #endif // defined TARGET_ARCH_ARM 333 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/intrinsifier.h ('k') | runtime/vm/intrinsifier_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698