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

Side by Side Diff: runtime/vm/assembler_mips.h

Issue 17634003: Fixes bugs in arm and mips intrinsifier. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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 | « no previous file | runtime/vm/intermediate_language_mips.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 #ifndef VM_ASSEMBLER_MIPS_H_ 5 #ifndef VM_ASSEMBLER_MIPS_H_
6 #define VM_ASSEMBLER_MIPS_H_ 6 #define VM_ASSEMBLER_MIPS_H_
7 7
8 #ifndef VM_ASSEMBLER_H_ 8 #ifndef VM_ASSEMBLER_H_
9 #error Do not include assembler_mips.h directly; use assembler.h instead. 9 #error Do not include assembler_mips.h directly; use assembler.h instead.
10 #endif 10 #endif
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 131
132 friend class Assembler; 132 friend class Assembler;
133 DISALLOW_COPY_AND_ASSIGN(Label); 133 DISALLOW_COPY_AND_ASSIGN(Label);
134 }; 134 };
135 135
136 136
137 class CPUFeatures : public AllStatic { 137 class CPUFeatures : public AllStatic {
138 public: 138 public:
139 static void InitOnce() { } 139 static void InitOnce() { }
140 static bool double_truncate_round_supported() { 140 static bool double_truncate_round_supported() {
141 UNIMPLEMENTED();
142 return false; 141 return false;
143 } 142 }
144 }; 143 };
145 144
146 145
147 class Assembler : public ValueObject { 146 class Assembler : public ValueObject {
148 public: 147 public:
149 Assembler() 148 Assembler()
150 : buffer_(), 149 : buffer_(),
151 object_pool_(GrowableObjectArray::Handle()), 150 object_pool_(GrowableObjectArray::Handle()),
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after
1224 Register value, 1223 Register value,
1225 Label* no_update); 1224 Label* no_update);
1226 1225
1227 DISALLOW_ALLOCATION(); 1226 DISALLOW_ALLOCATION();
1228 DISALLOW_COPY_AND_ASSIGN(Assembler); 1227 DISALLOW_COPY_AND_ASSIGN(Assembler);
1229 }; 1228 };
1230 1229
1231 } // namespace dart 1230 } // namespace dart
1232 1231
1233 #endif // VM_ASSEMBLER_MIPS_H_ 1232 #endif // VM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/intermediate_language_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698