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

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

Issue 1409733009: ARM: Fix double use of IP when storing object fields with large offsets. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « no previous file | runtime/vm/assembler_arm.cc » ('j') | runtime/vm/assembler_arm.cc » ('J')
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_ARM_H_ 5 #ifndef VM_ASSEMBLER_ARM_H_
6 #define VM_ASSEMBLER_ARM_H_ 6 #define VM_ASSEMBLER_ARM_H_
7 7
8 #ifndef VM_ASSEMBLER_H_ 8 #ifndef VM_ASSEMBLER_H_
9 #error Do not include assembler_arm.h directly; use assembler.h instead. 9 #error Do not include assembler_arm.h directly; use assembler.h instead.
10 #endif 10 #endif
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1193 intptr_t offset, 1193 intptr_t offset,
1194 Register value, 1194 Register value,
1195 Condition cond = AL); 1195 Condition cond = AL);
1196 void WriteShadowedFieldPair(Register base, 1196 void WriteShadowedFieldPair(Register base,
1197 intptr_t offset, 1197 intptr_t offset,
1198 Register value_even, 1198 Register value_even,
1199 Register value_odd, 1199 Register value_odd,
1200 Condition cond = AL); 1200 Condition cond = AL);
1201 // Writes new_value to address and its shadow location, if enabled, after 1201 // Writes new_value to address and its shadow location, if enabled, after
1202 // verifying that its old value matches its shadow. 1202 // verifying that its old value matches its shadow.
1203 void VerifiedWrite(const Address& address, 1203 void VerifiedWrite(Register object,
1204 const Address& address,
1204 Register new_value, 1205 Register new_value,
1205 FieldContent old_content); 1206 FieldContent old_content);
1206 1207
1207 DISALLOW_ALLOCATION(); 1208 DISALLOW_ALLOCATION();
1208 DISALLOW_COPY_AND_ASSIGN(Assembler); 1209 DISALLOW_COPY_AND_ASSIGN(Assembler);
1209 }; 1210 };
1210 1211
1211 } // namespace dart 1212 } // namespace dart
1212 1213
1213 #endif // VM_ASSEMBLER_ARM_H_ 1214 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_arm.cc » ('j') | runtime/vm/assembler_arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698