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

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

Issue 12663024: Implement optional parameter handling in ARM vm. (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
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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 548
549 // Load and Store. May clobber IP. 549 // Load and Store. May clobber IP.
550 void LoadImmediate(Register rd, int32_t value, Condition cond = AL); 550 void LoadImmediate(Register rd, int32_t value, Condition cond = AL);
551 void LoadSImmediate(SRegister sd, float value, Condition cond = AL); 551 void LoadSImmediate(SRegister sd, float value, Condition cond = AL);
552 void LoadDImmediate(DRegister dd, double value, 552 void LoadDImmediate(DRegister dd, double value,
553 Register scratch, Condition cond = AL); 553 Register scratch, Condition cond = AL);
554 void MarkExceptionHandler(Label* label); 554 void MarkExceptionHandler(Label* label);
555 void Drop(intptr_t stack_elements); 555 void Drop(intptr_t stack_elements);
556 void LoadObject(Register rd, const Object& object); 556 void LoadObject(Register rd, const Object& object);
557 void PushObject(const Object& object); 557 void PushObject(const Object& object);
558 void CompareObject(Register rn, const Object& object);
558 void LoadWordFromPoolOffset(Register rd, int32_t offset); 559 void LoadWordFromPoolOffset(Register rd, int32_t offset);
559 void LoadFromOffset(LoadOperandType type, 560 void LoadFromOffset(LoadOperandType 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);
564 void StoreToOffset(StoreOperandType type, 565 void StoreToOffset(StoreOperandType type,
565 Register reg, 566 Register reg,
566 Register base, 567 Register base,
567 int32_t offset, 568 int32_t offset,
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 return *reg1 - *reg2; 774 return *reg1 - *reg2;
774 } 775 }
775 776
776 DISALLOW_ALLOCATION(); 777 DISALLOW_ALLOCATION();
777 DISALLOW_COPY_AND_ASSIGN(Assembler); 778 DISALLOW_COPY_AND_ASSIGN(Assembler);
778 }; 779 };
779 780
780 } // namespace dart 781 } // namespace dart
781 782
782 #endif // VM_ASSEMBLER_ARM_H_ 783 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698