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

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

Issue 14205023: Fully implement integer modulo in intrinsifier, fall-through only for throwing exceptions. Also int… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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_ia32.cc ('k') | runtime/vm/intrinsifier_x64.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_MIPS. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS.
6 #if defined(TARGET_ARCH_MIPS) 6 #if defined(TARGET_ARCH_MIPS)
7 7
8 #include "vm/intrinsifier.h" 8 #include "vm/intrinsifier.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 10
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 bool Intrinsifier::Integer_mul(Assembler* assembler) { 124 bool Intrinsifier::Integer_mul(Assembler* assembler) {
125 return false; 125 return false;
126 } 126 }
127 127
128 128
129 bool Intrinsifier::Integer_modulo(Assembler* assembler) { 129 bool Intrinsifier::Integer_modulo(Assembler* assembler) {
130 return false; 130 return false;
131 } 131 }
132 132
133 133
134 bool Intrinsifier::Integer_remainder(Assembler* assembler) {
135 return false;
136 }
137
138
134 bool Intrinsifier::Integer_truncDivide(Assembler* assembler) { 139 bool Intrinsifier::Integer_truncDivide(Assembler* assembler) {
135 return false; 140 return false;
136 } 141 }
137 142
138 143
139 bool Intrinsifier::Integer_negate(Assembler* assembler) { 144 bool Intrinsifier::Integer_negate(Assembler* assembler) {
140 return false; 145 return false;
141 } 146 }
142 147
143 148
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 } 341 }
337 342
338 343
339 bool Intrinsifier::OneByteString_substringUnchecked(Assembler* assembler) { 344 bool Intrinsifier::OneByteString_substringUnchecked(Assembler* assembler) {
340 return false; 345 return false;
341 } 346 }
342 347
343 } // namespace dart 348 } // namespace dart
344 349
345 #endif // defined TARGET_ARCH_MIPS 350 #endif // defined TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « runtime/vm/intrinsifier_ia32.cc ('k') | runtime/vm/intrinsifier_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698