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

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

Issue 11412106: Support VTune's JIT interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 8 years 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/tools/gyp/runtime-configurations.gypi ('k') | runtime/vm/assembler_ia32.h » ('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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 // Macros for High-level operations. 66 // Macros for High-level operations.
67 void AddConstant(Register reg, int value, Condition cond = AL) { 67 void AddConstant(Register reg, int value, Condition cond = AL) {
68 UNIMPLEMENTED(); 68 UNIMPLEMENTED();
69 } 69 }
70 70
71 // Misc. functionality 71 // Misc. functionality
72 int CodeSize() const { 72 int CodeSize() const {
73 UNIMPLEMENTED(); 73 UNIMPLEMENTED();
74 return 0; 74 return 0;
75 } 75 }
76 int prolog_offset() const { 76 int prologue_offset() const {
77 UNIMPLEMENTED(); 77 UNIMPLEMENTED();
78 return 0; 78 return 0;
79 } 79 }
80 const ZoneGrowableArray<int>& GetPointerOffsets() const { 80 const ZoneGrowableArray<int>& GetPointerOffsets() const {
81 UNIMPLEMENTED(); 81 UNIMPLEMENTED();
82 return *pointer_offsets_; 82 return *pointer_offsets_;
83 } 83 }
84 void FinalizeInstructions(const MemoryRegion& region) { 84 void FinalizeInstructions(const MemoryRegion& region) {
85 UNIMPLEMENTED(); 85 UNIMPLEMENTED();
86 } 86 }
(...skipping 10 matching lines...) Expand all
97 97
98 private: 98 private:
99 ZoneGrowableArray<int>* pointer_offsets_; 99 ZoneGrowableArray<int>* pointer_offsets_;
100 DISALLOW_ALLOCATION(); 100 DISALLOW_ALLOCATION();
101 DISALLOW_COPY_AND_ASSIGN(Assembler); 101 DISALLOW_COPY_AND_ASSIGN(Assembler);
102 }; 102 };
103 103
104 } // namespace dart 104 } // namespace dart
105 105
106 #endif // VM_ASSEMBLER_ARM_H_ 106 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « runtime/tools/gyp/runtime-configurations.gypi ('k') | runtime/vm/assembler_ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698