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

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

Issue 928833003: Add Function based profile tree (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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/vm/instructions_arm.cc ('k') | runtime/vm/instructions_arm64.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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 // Classes that describe assembly patterns as used by inline caches. 4 // Classes that describe assembly patterns as used by inline caches.
5 5
6 #ifndef VM_INSTRUCTIONS_ARM64_H_ 6 #ifndef VM_INSTRUCTIONS_ARM64_H_
7 #define VM_INSTRUCTIONS_ARM64_H_ 7 #define VM_INSTRUCTIONS_ARM64_H_
8 8
9 #ifndef VM_INSTRUCTIONS_H_ 9 #ifndef VM_INSTRUCTIONS_H_
10 #error Do not include instructions_arm64.h directly; use instructions.h instead. 10 #error Do not include instructions_arm64.h directly; use instructions.h instead.
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 bool IsValid() const; 98 bool IsValid() const;
99 uword TargetAddress() const; 99 uword TargetAddress() const;
100 void SetTargetAddress(uword target_address) const; 100 void SetTargetAddress(uword target_address) const;
101 101
102 private: 102 private:
103 const uword pc_; 103 const uword pc_;
104 104
105 DISALLOW_COPY_AND_ASSIGN(JumpPattern); 105 DISALLOW_COPY_AND_ASSIGN(JumpPattern);
106 }; 106 };
107 107
108
109 class ReturnPattern : public ValueObject {
110 public:
111 explicit ReturnPattern(uword pc);
112
113 // bx_lr = 1.
114 static const int kLengthInBytes = 1 * Instr::kInstrSize;
115
116 int pattern_length_in_bytes() const {
117 return kLengthInBytes;
118 }
119
120 bool IsValid() const;
121
122 private:
123 const uword pc_;
124 };
125
108 } // namespace dart 126 } // namespace dart
109 127
110 #endif // VM_INSTRUCTIONS_ARM64_H_ 128 #endif // VM_INSTRUCTIONS_ARM64_H_
OLDNEW
« no previous file with comments | « runtime/vm/instructions_arm.cc ('k') | runtime/vm/instructions_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698