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

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

Issue 1358773002: Load the native call wrapper via Thread. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « runtime/vm/assembler.cc ('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 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 660
661 void Drop(intptr_t stack_elements); 661 void Drop(intptr_t stack_elements);
662 662
663 void RestoreCodePointer(); 663 void RestoreCodePointer();
664 void LoadPoolPointer(Register reg = PP); 664 void LoadPoolPointer(Register reg = PP);
665 665
666 void LoadIsolate(Register rd); 666 void LoadIsolate(Register rd);
667 667
668 void LoadObject(Register rd, const Object& object, Condition cond = AL); 668 void LoadObject(Register rd, const Object& object, Condition cond = AL);
669 void LoadUniqueObject(Register rd, const Object& object, Condition cond = AL); 669 void LoadUniqueObject(Register rd, const Object& object, Condition cond = AL);
670 void LoadExternalLabel(Register dst,
671 const ExternalLabel* label,
672 Patchability patchable,
673 Condition cond = AL);
674 void LoadFunctionFromCalleePool(Register dst, 670 void LoadFunctionFromCalleePool(Register dst,
675 const Function& function, 671 const Function& function,
676 Register new_pp); 672 Register new_pp);
677 void LoadNativeEntry(Register dst, 673 void LoadNativeEntry(Register dst,
678 const ExternalLabel* label, 674 const ExternalLabel* label,
679 Patchability patchable, 675 Patchability patchable,
680 Condition cond = AL); 676 Condition cond = AL);
681 void PushObject(const Object& object); 677 void PushObject(const Object& object);
682 void CompareObject(Register rn, const Object& object); 678 void CompareObject(Register rn, const Object& object);
683 679
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
1152 Register new_value, 1148 Register new_value,
1153 FieldContent old_content); 1149 FieldContent old_content);
1154 1150
1155 DISALLOW_ALLOCATION(); 1151 DISALLOW_ALLOCATION();
1156 DISALLOW_COPY_AND_ASSIGN(Assembler); 1152 DISALLOW_COPY_AND_ASSIGN(Assembler);
1157 }; 1153 };
1158 1154
1159 } // namespace dart 1155 } // namespace dart
1160 1156
1161 #endif // VM_ASSEMBLER_ARM_H_ 1157 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « runtime/vm/assembler.cc ('k') | runtime/vm/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698