blob: 672e1503bebad8d13bd7193c2fb7754696b3b3ef [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070016
Ian Rogers166db042013-07-26 12:05:57 -070017#ifndef ART_COMPILER_UTILS_ASSEMBLER_H_
18#define ART_COMPILER_UTILS_ASSEMBLER_H_
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070019
Ian Rogers2c8f6532011-09-02 17:16:34 -070020#include <vector>
21
Ian Rogersd582fa42014-11-05 23:46:43 -080022#include "arch/instruction_set.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080023#include "base/logging.h"
Elliott Hughes76160052012-12-12 16:31:20 -080024#include "base/macros.h"
Ian Rogers166db042013-07-26 12:05:57 -070025#include "arm/constants_arm.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070026#include "managed_register.h"
27#include "memory_region.h"
Ian Rogersd582fa42014-11-05 23:46:43 -080028#include "mips/constants_mips.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070029#include "offsets.h"
Ian Rogersd582fa42014-11-05 23:46:43 -080030#include "x86/constants_x86.h"
31#include "x86_64/constants_x86_64.h"
David Srbeckydd973932015-04-07 20:29:48 +010032#include "dwarf/debug_frame_opcode_writer.h"
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070033
Carl Shapiro6b6b5f02011-06-21 15:05:09 -070034namespace art {
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070035
36class Assembler;
37class AssemblerBuffer;
38class AssemblerFixup;
39
Ian Rogers2c8f6532011-09-02 17:16:34 -070040namespace arm {
41 class ArmAssembler;
Dave Allison65fcc2c2014-04-28 13:45:27 -070042 class Arm32Assembler;
43 class Thumb2Assembler;
Ian Rogers2c8f6532011-09-02 17:16:34 -070044}
Stuart Monteithb95a5342014-03-12 13:32:32 +000045namespace arm64 {
46 class Arm64Assembler;
47}
jeffhao7fbee072012-08-24 17:56:54 -070048namespace mips {
49 class MipsAssembler;
50}
Andreas Gampe57b34292015-01-14 15:45:59 -080051namespace mips64 {
52 class Mips64Assembler;
53}
Ian Rogers2c8f6532011-09-02 17:16:34 -070054namespace x86 {
55 class X86Assembler;
56}
Dmitry Petrochenkofca82202014-03-21 11:21:37 +070057namespace x86_64 {
58 class X86_64Assembler;
59}
Ian Rogers2c8f6532011-09-02 17:16:34 -070060
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000061class ExternalLabel {
62 public:
Andreas Gampe277ccbd2014-11-03 21:36:10 -080063 ExternalLabel(const char* name_in, uintptr_t address_in)
64 : name_(name_in), address_(address_in) {
65 DCHECK(name_in != nullptr);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000066 }
67
68 const char* name() const { return name_; }
Ian Rogers13735952014-10-08 12:43:28 -070069 uintptr_t address() const {
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000070 return address_;
71 }
72
73 private:
74 const char* name_;
Ian Rogers13735952014-10-08 12:43:28 -070075 const uintptr_t address_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000076};
77
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070078class Label {
79 public:
80 Label() : position_(0) {}
81
82 ~Label() {
83 // Assert if label is being destroyed with unresolved branches pending.
84 CHECK(!IsLinked());
85 }
86
87 // Returns the position for bound and linked labels. Cannot be used
88 // for unused labels.
89 int Position() const {
90 CHECK(!IsUnused());
Ian Rogers13735952014-10-08 12:43:28 -070091 return IsBound() ? -position_ - sizeof(void*) : position_ - sizeof(void*);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070092 }
93
94 int LinkPosition() const {
95 CHECK(IsLinked());
Ian Rogers13735952014-10-08 12:43:28 -070096 return position_ - sizeof(void*);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070097 }
98
99 bool IsBound() const { return position_ < 0; }
100 bool IsUnused() const { return position_ == 0; }
101 bool IsLinked() const { return position_ > 0; }
102
103 private:
104 int position_;
105
106 void Reinitialize() {
107 position_ = 0;
108 }
109
110 void BindTo(int position) {
111 CHECK(!IsBound());
Ian Rogers13735952014-10-08 12:43:28 -0700112 position_ = -position - sizeof(void*);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700113 CHECK(IsBound());
114 }
115
116 void LinkTo(int position) {
117 CHECK(!IsBound());
Ian Rogers13735952014-10-08 12:43:28 -0700118 position_ = position + sizeof(void*);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700119 CHECK(IsLinked());
120 }
121
Ian Rogers2c8f6532011-09-02 17:16:34 -0700122 friend class arm::ArmAssembler;
Dave Allison65fcc2c2014-04-28 13:45:27 -0700123 friend class arm::Arm32Assembler;
124 friend class arm::Thumb2Assembler;
Alexandre Rames5319def2014-10-23 10:03:10 +0100125 friend class arm64::Arm64Assembler;
jeffhao7fbee072012-08-24 17:56:54 -0700126 friend class mips::MipsAssembler;
Andreas Gampe57b34292015-01-14 15:45:59 -0800127 friend class mips64::Mips64Assembler;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700128 friend class x86::X86Assembler;
Dmitry Petrochenkofca82202014-03-21 11:21:37 +0700129 friend class x86_64::X86_64Assembler;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700130
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700131 DISALLOW_COPY_AND_ASSIGN(Label);
132};
133
134
135// Assembler fixups are positions in generated code that require processing
136// after the code has been copied to executable memory. This includes building
137// relocation information.
138class AssemblerFixup {
139 public:
140 virtual void Process(const MemoryRegion& region, int position) = 0;
141 virtual ~AssemblerFixup() {}
142
143 private:
144 AssemblerFixup* previous_;
145 int position_;
146
147 AssemblerFixup* previous() const { return previous_; }
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800148 void set_previous(AssemblerFixup* previous_in) { previous_ = previous_in; }
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700149
150 int position() const { return position_; }
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800151 void set_position(int position_in) { position_ = position_in; }
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700152
153 friend class AssemblerBuffer;
154};
155
Ian Rogers45a76cb2011-07-21 22:00:15 -0700156// Parent of all queued slow paths, emitted during finalization
157class SlowPath {
158 public:
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700159 SlowPath() : next_(nullptr) {}
Ian Rogers45a76cb2011-07-21 22:00:15 -0700160 virtual ~SlowPath() {}
161
162 Label* Continuation() { return &continuation_; }
163 Label* Entry() { return &entry_; }
164 // Generate code for slow path
165 virtual void Emit(Assembler *sp_asm) = 0;
166
167 protected:
168 // Entry branched to by fast path
169 Label entry_;
170 // Optional continuation that is branched to at the end of the slow path
171 Label continuation_;
172 // Next in linked list of slow paths
173 SlowPath *next_;
174
Mathieu Chartier02e25112013-08-14 16:14:24 -0700175 private:
Ian Rogers45a76cb2011-07-21 22:00:15 -0700176 friend class AssemblerBuffer;
177 DISALLOW_COPY_AND_ASSIGN(SlowPath);
178};
179
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700180class AssemblerBuffer {
181 public:
182 AssemblerBuffer();
183 ~AssemblerBuffer();
184
185 // Basic support for emitting, loading, and storing.
186 template<typename T> void Emit(T value) {
187 CHECK(HasEnsuredCapacity());
188 *reinterpret_cast<T*>(cursor_) = value;
189 cursor_ += sizeof(T);
190 }
191
192 template<typename T> T Load(size_t position) {
193 CHECK_LE(position, Size() - static_cast<int>(sizeof(T)));
194 return *reinterpret_cast<T*>(contents_ + position);
195 }
196
197 template<typename T> void Store(size_t position, T value) {
198 CHECK_LE(position, Size() - static_cast<int>(sizeof(T)));
199 *reinterpret_cast<T*>(contents_ + position) = value;
200 }
201
Vladimir Markofbeb4ae2015-06-16 11:32:01 +0000202 void Move(size_t newposition, size_t oldposition) {
203 CHECK(HasEnsuredCapacity());
204 // Move the contents of the buffer from oldposition to
205 // newposition by nbytes.
206 size_t nbytes = Size() - oldposition;
207 memmove(contents_ + newposition, contents_ + oldposition, nbytes);
208 cursor_ += newposition - oldposition;
Dave Allison65fcc2c2014-04-28 13:45:27 -0700209 }
210
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700211 // Emit a fixup at the current location.
212 void EmitFixup(AssemblerFixup* fixup) {
213 fixup->set_previous(fixup_);
214 fixup->set_position(Size());
215 fixup_ = fixup;
216 }
217
Ian Rogers45a76cb2011-07-21 22:00:15 -0700218 void EnqueueSlowPath(SlowPath* slowpath) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700219 if (slow_path_ == nullptr) {
Ian Rogers45a76cb2011-07-21 22:00:15 -0700220 slow_path_ = slowpath;
221 } else {
222 SlowPath* cur = slow_path_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700223 for ( ; cur->next_ != nullptr ; cur = cur->next_) {}
Ian Rogers45a76cb2011-07-21 22:00:15 -0700224 cur->next_ = slowpath;
225 }
226 }
227
228 void EmitSlowPaths(Assembler* sp_asm) {
229 SlowPath* cur = slow_path_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700230 SlowPath* next = nullptr;
231 slow_path_ = nullptr;
232 for ( ; cur != nullptr ; cur = next) {
Ian Rogers45a76cb2011-07-21 22:00:15 -0700233 cur->Emit(sp_asm);
234 next = cur->next_;
235 delete cur;
236 }
237 }
238
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700239 // Get the size of the emitted code.
240 size_t Size() const {
241 CHECK_GE(cursor_, contents_);
242 return cursor_ - contents_;
243 }
244
Ian Rogers13735952014-10-08 12:43:28 -0700245 uint8_t* contents() const { return contents_; }
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700246
247 // Copy the assembled instructions into the specified memory block
248 // and apply all fixups.
249 void FinalizeInstructions(const MemoryRegion& region);
250
251 // To emit an instruction to the assembler buffer, the EnsureCapacity helper
252 // must be used to guarantee that the underlying data area is big enough to
253 // hold the emitted instruction. Usage:
254 //
255 // AssemblerBuffer buffer;
256 // AssemblerBuffer::EnsureCapacity ensured(&buffer);
257 // ... emit bytes for single instruction ...
258
Elliott Hughes31f1f4f2012-03-12 13:57:36 -0700259#ifndef NDEBUG
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700260
261 class EnsureCapacity {
262 public:
263 explicit EnsureCapacity(AssemblerBuffer* buffer) {
Elliott Hughes31f1f4f2012-03-12 13:57:36 -0700264 if (buffer->cursor() >= buffer->limit()) {
265 buffer->ExtendCapacity();
266 }
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700267 // In debug mode, we save the assembler buffer along with the gap
268 // size before we start emitting to the buffer. This allows us to
269 // check that any single generated instruction doesn't overflow the
270 // limit implied by the minimum gap size.
271 buffer_ = buffer;
272 gap_ = ComputeGap();
273 // Make sure that extending the capacity leaves a big enough gap
274 // for any kind of instruction.
275 CHECK_GE(gap_, kMinimumGap);
276 // Mark the buffer as having ensured the capacity.
277 CHECK(!buffer->HasEnsuredCapacity()); // Cannot nest.
278 buffer->has_ensured_capacity_ = true;
279 }
280
281 ~EnsureCapacity() {
282 // Unmark the buffer, so we cannot emit after this.
283 buffer_->has_ensured_capacity_ = false;
284 // Make sure the generated instruction doesn't take up more
285 // space than the minimum gap.
286 int delta = gap_ - ComputeGap();
Ian Rogersb033c752011-07-20 12:22:35 -0700287 CHECK_LE(delta, kMinimumGap);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700288 }
289
290 private:
291 AssemblerBuffer* buffer_;
292 int gap_;
293
294 int ComputeGap() { return buffer_->Capacity() - buffer_->Size(); }
295 };
296
297 bool has_ensured_capacity_;
298 bool HasEnsuredCapacity() const { return has_ensured_capacity_; }
299
300#else
301
302 class EnsureCapacity {
303 public:
304 explicit EnsureCapacity(AssemblerBuffer* buffer) {
305 if (buffer->cursor() >= buffer->limit()) buffer->ExtendCapacity();
306 }
307 };
308
309 // When building the C++ tests, assertion code is enabled. To allow
310 // asserting that the user of the assembler buffer has ensured the
311 // capacity needed for emitting, we add a dummy method in non-debug mode.
312 bool HasEnsuredCapacity() const { return true; }
313
314#endif
315
316 // Returns the position in the instruction stream.
317 int GetPosition() { return cursor_ - contents_; }
318
319 private:
320 // The limit is set to kMinimumGap bytes before the end of the data area.
321 // This leaves enough space for the longest possible instruction and allows
322 // for a single, fast space check per instruction.
323 static const int kMinimumGap = 32;
324
Ian Rogers13735952014-10-08 12:43:28 -0700325 uint8_t* contents_;
326 uint8_t* cursor_;
327 uint8_t* limit_;
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700328 AssemblerFixup* fixup_;
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800329#ifndef NDEBUG
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700330 bool fixups_processed_;
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800331#endif
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700332
Ian Rogers45a76cb2011-07-21 22:00:15 -0700333 // Head of linked list of slow paths
334 SlowPath* slow_path_;
335
Ian Rogers13735952014-10-08 12:43:28 -0700336 uint8_t* cursor() const { return cursor_; }
337 uint8_t* limit() const { return limit_; }
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700338 size_t Capacity() const {
339 CHECK_GE(limit_, contents_);
340 return (limit_ - contents_) + kMinimumGap;
341 }
342
343 // Process the fixup chain starting at the given fixup. The offset is
344 // non-zero for fixups in the body if the preamble is non-empty.
345 void ProcessFixups(const MemoryRegion& region);
346
347 // Compute the limit based on the data area and the capacity. See
348 // description of kMinimumGap for the reasoning behind the value.
Ian Rogers13735952014-10-08 12:43:28 -0700349 static uint8_t* ComputeLimit(uint8_t* data, size_t capacity) {
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700350 return data + capacity - kMinimumGap;
351 }
352
Vladimir Markofbeb4ae2015-06-16 11:32:01 +0000353 void ExtendCapacity();
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700354
355 friend class AssemblerFixup;
356};
357
David Srbeckydd973932015-04-07 20:29:48 +0100358// The purpose of this class is to ensure that we do not have to explicitly
359// call the AdvancePC method (which is good for convenience and correctness).
360class DebugFrameOpCodeWriterForAssembler FINAL
361 : public dwarf::DebugFrameOpCodeWriter<> {
362 public:
363 // This method is called the by the opcode writers.
364 virtual void ImplicitlyAdvancePC() FINAL;
365
366 explicit DebugFrameOpCodeWriterForAssembler(Assembler* buffer)
367 : dwarf::DebugFrameOpCodeWriter<>(),
368 assembler_(buffer) {
369 }
370
371 private:
372 Assembler* assembler_;
373};
374
Ian Rogers2c8f6532011-09-02 17:16:34 -0700375class Assembler {
376 public:
377 static Assembler* Create(InstructionSet instruction_set);
378
Vladimir Markofbeb4ae2015-06-16 11:32:01 +0000379 // Emit slow paths queued during assembly
380 virtual void EmitSlowPaths() { buffer_.EmitSlowPaths(this); }
Ian Rogers2c8f6532011-09-02 17:16:34 -0700381
382 // Size of generated code
Serban Constantinescued8dd492014-02-11 14:15:10 +0000383 virtual size_t CodeSize() const { return buffer_.Size(); }
Ian Rogers2c8f6532011-09-02 17:16:34 -0700384
385 // Copy instructions out of assembly buffer into the given region of memory
Serban Constantinescued8dd492014-02-11 14:15:10 +0000386 virtual void FinalizeInstructions(const MemoryRegion& region) {
Ian Rogers2c8f6532011-09-02 17:16:34 -0700387 buffer_.FinalizeInstructions(region);
388 }
389
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000390 // TODO: Implement with disassembler.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700391 virtual void Comment(const char* format, ...) { UNUSED(format); }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000392
Ian Rogers2c8f6532011-09-02 17:16:34 -0700393 // Emit code that will create an activation on the stack
394 virtual void BuildFrame(size_t frame_size, ManagedRegister method_reg,
Ian Rogersb5d09b22012-03-06 22:14:17 -0800395 const std::vector<ManagedRegister>& callee_save_regs,
Dmitry Petrochenkofca82202014-03-21 11:21:37 +0700396 const ManagedRegisterEntrySpills& entry_spills) = 0;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700397
398 // Emit code that will remove an activation from the stack
399 virtual void RemoveFrame(size_t frame_size,
Ian Rogersbdb03912011-09-14 00:55:44 -0700400 const std::vector<ManagedRegister>& callee_save_regs) = 0;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700401
402 virtual void IncreaseFrameSize(size_t adjust) = 0;
403 virtual void DecreaseFrameSize(size_t adjust) = 0;
404
405 // Store routines
406 virtual void Store(FrameOffset offs, ManagedRegister src, size_t size) = 0;
407 virtual void StoreRef(FrameOffset dest, ManagedRegister src) = 0;
408 virtual void StoreRawPtr(FrameOffset dest, ManagedRegister src) = 0;
409
410 virtual void StoreImmediateToFrame(FrameOffset dest, uint32_t imm,
411 ManagedRegister scratch) = 0;
412
Ian Rogersdd7624d2014-03-14 17:43:00 -0700413 virtual void StoreImmediateToThread32(ThreadOffset<4> dest, uint32_t imm,
414 ManagedRegister scratch);
415 virtual void StoreImmediateToThread64(ThreadOffset<8> dest, uint32_t imm,
416 ManagedRegister scratch);
Ian Rogers2c8f6532011-09-02 17:16:34 -0700417
Ian Rogersdd7624d2014-03-14 17:43:00 -0700418 virtual void StoreStackOffsetToThread32(ThreadOffset<4> thr_offs,
419 FrameOffset fr_offs,
420 ManagedRegister scratch);
421 virtual void StoreStackOffsetToThread64(ThreadOffset<8> thr_offs,
422 FrameOffset fr_offs,
423 ManagedRegister scratch);
Ian Rogers2c8f6532011-09-02 17:16:34 -0700424
Ian Rogersdd7624d2014-03-14 17:43:00 -0700425 virtual void StoreStackPointerToThread32(ThreadOffset<4> thr_offs);
426 virtual void StoreStackPointerToThread64(ThreadOffset<8> thr_offs);
Ian Rogers2c8f6532011-09-02 17:16:34 -0700427
428 virtual void StoreSpanning(FrameOffset dest, ManagedRegister src,
429 FrameOffset in_off, ManagedRegister scratch) = 0;
430
431 // Load routines
432 virtual void Load(ManagedRegister dest, FrameOffset src, size_t size) = 0;
433
Ian Rogersdd7624d2014-03-14 17:43:00 -0700434 virtual void LoadFromThread32(ManagedRegister dest, ThreadOffset<4> src, size_t size);
435 virtual void LoadFromThread64(ManagedRegister dest, ThreadOffset<8> src, size_t size);
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700436
Mathieu Chartiere401d142015-04-22 13:56:20 -0700437 virtual void LoadRef(ManagedRegister dest, FrameOffset src) = 0;
438 // If poison_reference is true and kPoisonReference is true, then we negate the read reference.
439 virtual void LoadRef(ManagedRegister dest, ManagedRegister base, MemberOffset offs,
440 bool poison_reference) = 0;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700441
Ian Rogersdd7624d2014-03-14 17:43:00 -0700442 virtual void LoadRawPtr(ManagedRegister dest, ManagedRegister base, Offset offs) = 0;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700443
Ian Rogersdd7624d2014-03-14 17:43:00 -0700444 virtual void LoadRawPtrFromThread32(ManagedRegister dest, ThreadOffset<4> offs);
445 virtual void LoadRawPtrFromThread64(ManagedRegister dest, ThreadOffset<8> offs);
Ian Rogers2c8f6532011-09-02 17:16:34 -0700446
447 // Copying routines
Ian Rogersb5d09b22012-03-06 22:14:17 -0800448 virtual void Move(ManagedRegister dest, ManagedRegister src, size_t size) = 0;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700449
Ian Rogersdd7624d2014-03-14 17:43:00 -0700450 virtual void CopyRawPtrFromThread32(FrameOffset fr_offs, ThreadOffset<4> thr_offs,
451 ManagedRegister scratch);
452 virtual void CopyRawPtrFromThread64(FrameOffset fr_offs, ThreadOffset<8> thr_offs,
453 ManagedRegister scratch);
Ian Rogers2c8f6532011-09-02 17:16:34 -0700454
Ian Rogersdd7624d2014-03-14 17:43:00 -0700455 virtual void CopyRawPtrToThread32(ThreadOffset<4> thr_offs, FrameOffset fr_offs,
456 ManagedRegister scratch);
457 virtual void CopyRawPtrToThread64(ThreadOffset<8> thr_offs, FrameOffset fr_offs,
458 ManagedRegister scratch);
Ian Rogers2c8f6532011-09-02 17:16:34 -0700459
460 virtual void CopyRef(FrameOffset dest, FrameOffset src,
461 ManagedRegister scratch) = 0;
462
Elliott Hughesa09aea22012-01-06 18:58:27 -0800463 virtual void Copy(FrameOffset dest, FrameOffset src, ManagedRegister scratch, size_t size) = 0;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700464
Ian Rogersdc51b792011-09-22 20:41:37 -0700465 virtual void Copy(FrameOffset dest, ManagedRegister src_base, Offset src_offset,
466 ManagedRegister scratch, size_t size) = 0;
467
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700468 virtual void Copy(ManagedRegister dest_base, Offset dest_offset, FrameOffset src,
469 ManagedRegister scratch, size_t size) = 0;
470
Ian Rogersdc51b792011-09-22 20:41:37 -0700471 virtual void Copy(FrameOffset dest, FrameOffset src_base, Offset src_offset,
472 ManagedRegister scratch, size_t size) = 0;
473
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700474 virtual void Copy(ManagedRegister dest, Offset dest_offset,
475 ManagedRegister src, Offset src_offset,
476 ManagedRegister scratch, size_t size) = 0;
477
478 virtual void Copy(FrameOffset dest, Offset dest_offset, FrameOffset src, Offset src_offset,
479 ManagedRegister scratch, size_t size) = 0;
Ian Rogersdc51b792011-09-22 20:41:37 -0700480
Ian Rogerse5de95b2011-09-18 20:31:38 -0700481 virtual void MemoryBarrier(ManagedRegister scratch) = 0;
482
jeffhao58136ca2012-05-24 13:40:11 -0700483 // Sign extension
484 virtual void SignExtend(ManagedRegister mreg, size_t size) = 0;
485
jeffhaocee4d0c2012-06-15 14:42:01 -0700486 // Zero extension
487 virtual void ZeroExtend(ManagedRegister mreg, size_t size) = 0;
488
Ian Rogers2c8f6532011-09-02 17:16:34 -0700489 // Exploit fast access in managed code to Thread::Current()
490 virtual void GetCurrentThread(ManagedRegister tr) = 0;
491 virtual void GetCurrentThread(FrameOffset dest_offset,
492 ManagedRegister scratch) = 0;
493
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700494 // Set up out_reg to hold a Object** into the handle scope, or to be null if the
Ian Rogers2c8f6532011-09-02 17:16:34 -0700495 // value is null and null_allowed. in_reg holds a possibly stale reference
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700496 // that can be used to avoid loading the handle scope entry to see if the value is
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700497 // null.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700498 virtual void CreateHandleScopeEntry(ManagedRegister out_reg, FrameOffset handlescope_offset,
Ian Rogers2c8f6532011-09-02 17:16:34 -0700499 ManagedRegister in_reg, bool null_allowed) = 0;
500
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700501 // Set up out_off to hold a Object** into the handle scope, or to be null if the
Ian Rogers2c8f6532011-09-02 17:16:34 -0700502 // value is null and null_allowed.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700503 virtual void CreateHandleScopeEntry(FrameOffset out_off, FrameOffset handlescope_offset,
Ian Rogers2c8f6532011-09-02 17:16:34 -0700504 ManagedRegister scratch, bool null_allowed) = 0;
505
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700506 // src holds a handle scope entry (Object**) load this into dst
507 virtual void LoadReferenceFromHandleScope(ManagedRegister dst,
Ian Rogers2c8f6532011-09-02 17:16:34 -0700508 ManagedRegister src) = 0;
509
510 // Heap::VerifyObject on src. In some cases (such as a reference to this) we
511 // know that src may not be null.
512 virtual void VerifyObject(ManagedRegister src, bool could_be_null) = 0;
513 virtual void VerifyObject(FrameOffset src, bool could_be_null) = 0;
514
515 // Call to address held at [base+offset]
516 virtual void Call(ManagedRegister base, Offset offset,
517 ManagedRegister scratch) = 0;
518 virtual void Call(FrameOffset base, Offset offset,
519 ManagedRegister scratch) = 0;
Ian Rogersdd7624d2014-03-14 17:43:00 -0700520 virtual void CallFromThread32(ThreadOffset<4> offset, ManagedRegister scratch);
521 virtual void CallFromThread64(ThreadOffset<8> offset, ManagedRegister scratch);
Ian Rogers2c8f6532011-09-02 17:16:34 -0700522
Ian Rogers2c8f6532011-09-02 17:16:34 -0700523 // Generate code to check if Thread::Current()->exception_ is non-null
524 // and branch to a ExceptionSlowPath if it is.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700525 virtual void ExceptionPoll(ManagedRegister scratch, size_t stack_adjust) = 0;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700526
527 virtual ~Assembler() {}
528
David Srbeckydd973932015-04-07 20:29:48 +0100529 /**
530 * @brief Buffer of DWARF's Call Frame Information opcodes.
531 * @details It is used by debuggers and other tools to unwind the call stack.
532 */
533 DebugFrameOpCodeWriterForAssembler& cfi() { return cfi_; }
534
Ian Rogers2c8f6532011-09-02 17:16:34 -0700535 protected:
David Srbeckydd973932015-04-07 20:29:48 +0100536 Assembler() : buffer_(), cfi_(this) {}
Ian Rogers2c8f6532011-09-02 17:16:34 -0700537
538 AssemblerBuffer buffer_;
David Srbeckydd973932015-04-07 20:29:48 +0100539
540 DebugFrameOpCodeWriterForAssembler cfi_;
Ian Rogers2c8f6532011-09-02 17:16:34 -0700541};
542
Carl Shapiro6b6b5f02011-06-21 15:05:09 -0700543} // namespace art
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700544
Ian Rogers166db042013-07-26 12:05:57 -0700545#endif // ART_COMPILER_UTILS_ASSEMBLER_H_