blob: 249a771d843214b30a81e052e892ff839aa9a7d4 [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 Rogers2c8f6532011-09-02 17:16:34 -070017#include "assembler.h"
18
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070019#include <algorithm>
20#include <vector>
Ian Rogers2c8f6532011-09-02 17:16:34 -070021
Ian Rogers57b86d42012-03-27 16:05:41 -070022#include "arm/assembler_arm.h"
23#include "x86/assembler_x86.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070024#include "globals.h"
25#include "memory_region.h"
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070026
Carl Shapiro6b6b5f02011-06-21 15:05:09 -070027namespace art {
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070028
29static byte* NewContents(size_t capacity) {
Elliott Hughes31f1f4f2012-03-12 13:57:36 -070030 return new byte[capacity];
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070031}
32
33
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070034AssemblerBuffer::AssemblerBuffer() {
35 static const size_t kInitialBufferCapacity = 4 * KB;
36 contents_ = NewContents(kInitialBufferCapacity);
37 cursor_ = contents_;
38 limit_ = ComputeLimit(contents_, kInitialBufferCapacity);
39 fixup_ = NULL;
Ian Rogers45a76cb2011-07-21 22:00:15 -070040 slow_path_ = NULL;
Elliott Hughes31f1f4f2012-03-12 13:57:36 -070041#ifndef NDEBUG
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070042 has_ensured_capacity_ = false;
43 fixups_processed_ = false;
44#endif
45
46 // Verify internal state.
47 CHECK_EQ(Capacity(), kInitialBufferCapacity);
Elliott Hughes1f359b02011-07-17 14:27:17 -070048 CHECK_EQ(Size(), 0U);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070049}
50
51
52AssemblerBuffer::~AssemblerBuffer() {
Elliott Hughesc1674ed2011-08-25 18:09:09 -070053 delete[] contents_;
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070054}
55
56
57void AssemblerBuffer::ProcessFixups(const MemoryRegion& region) {
58 AssemblerFixup* fixup = fixup_;
59 while (fixup != NULL) {
60 fixup->Process(region, fixup->position());
61 fixup = fixup->previous();
62 }
63}
64
65
66void AssemblerBuffer::FinalizeInstructions(const MemoryRegion& instructions) {
67 // Copy the instructions from the buffer.
68 MemoryRegion from(reinterpret_cast<void*>(contents()), Size());
69 instructions.CopyFrom(0, from);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070070 // Process fixups in the instructions.
71 ProcessFixups(instructions);
Elliott Hughes31f1f4f2012-03-12 13:57:36 -070072#ifndef NDEBUG
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070073 fixups_processed_ = true;
74#endif
75}
76
77
78void AssemblerBuffer::ExtendCapacity() {
79 size_t old_size = Size();
80 size_t old_capacity = Capacity();
81 size_t new_capacity = std::min(old_capacity * 2, old_capacity + 1 * MB);
82
83 // Allocate the new data area and copy contents of the old one to it.
84 byte* new_contents = NewContents(new_capacity);
85 memmove(reinterpret_cast<void*>(new_contents),
86 reinterpret_cast<void*>(contents_),
87 old_size);
88
89 // Compute the relocation delta and switch to the new contents area.
90 ptrdiff_t delta = new_contents - contents_;
91 contents_ = new_contents;
92
93 // Update the cursor and recompute the limit.
94 cursor_ += delta;
95 limit_ = ComputeLimit(new_contents, new_capacity);
96
97 // Verify internal state.
98 CHECK_EQ(Capacity(), new_capacity);
99 CHECK_EQ(Size(), old_size);
100}
101
Ian Rogers2c8f6532011-09-02 17:16:34 -0700102
103Assembler* Assembler::Create(InstructionSet instruction_set) {
104 if (instruction_set == kX86) {
105 return new x86::X86Assembler();
106 } else {
107 CHECK(instruction_set == kArm || instruction_set == kThumb2);
108 return new arm::ArmAssembler();
109 }
110}
111
Carl Shapiro6b6b5f02011-06-21 15:05:09 -0700112} // namespace art