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

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

Issue 12629004: Implement native call stub on ARM and native call redirection in ARM simulator. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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/tests/vm/vm.status ('k') | runtime/vm/assembler_arm.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_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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 void CompareImmediate(Register rn, int32_t value, Condition cond = AL); 544 void CompareImmediate(Register rn, int32_t value, Condition cond = AL);
545 545
546 // Load and Store. May clobber IP. 546 // Load and Store. May clobber IP.
547 void LoadImmediate(Register rd, int32_t value, Condition cond = AL); 547 void LoadImmediate(Register rd, int32_t value, Condition cond = AL);
548 void LoadSImmediate(SRegister sd, float value, Condition cond = AL); 548 void LoadSImmediate(SRegister sd, float value, Condition cond = AL);
549 void LoadDImmediate(DRegister dd, double value, 549 void LoadDImmediate(DRegister dd, double value,
550 Register scratch, Condition cond = AL); 550 Register scratch, Condition cond = AL);
551 void MarkExceptionHandler(Label* label); 551 void MarkExceptionHandler(Label* label);
552 void Drop(intptr_t stack_elements); 552 void Drop(intptr_t stack_elements);
553 void LoadObject(Register rd, const Object& object); 553 void LoadObject(Register rd, const Object& object);
554 void PushObject(const Object& object);
554 void LoadFromOffset(LoadOperandType type, 555 void LoadFromOffset(LoadOperandType type,
555 Register reg, 556 Register reg,
556 Register base, 557 Register base,
557 int32_t offset, 558 int32_t offset,
558 Condition cond = AL); 559 Condition cond = AL);
559 void StoreToOffset(StoreOperandType type, 560 void StoreToOffset(StoreOperandType type,
560 Register reg, 561 Register reg,
561 Register base, 562 Register base,
562 int32_t offset, 563 int32_t offset,
563 Condition cond = AL); 564 Condition cond = AL);
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 return *reg1 - *reg2; 769 return *reg1 - *reg2;
769 } 770 }
770 771
771 DISALLOW_ALLOCATION(); 772 DISALLOW_ALLOCATION();
772 DISALLOW_COPY_AND_ASSIGN(Assembler); 773 DISALLOW_COPY_AND_ASSIGN(Assembler);
773 }; 774 };
774 775
775 } // namespace dart 776 } // namespace dart
776 777
777 #endif // VM_ASSEMBLER_ARM_H_ 778 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « runtime/tests/vm/vm.status ('k') | runtime/vm/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698