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

Side by Side Diff: src/IceAssembler.cpp

Issue 1418523002: Add hybrid assembler concept to ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 2 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
OLDNEW
1 //===- subzero/src/IceAssembler.cpp - Assembler base class ----------------===// 1 //===- subzero/src/IceAssembler.cpp - Assembler base class ----------------===//
2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 // 5 //
6 // Modified by the Subzero authors. 6 // Modified by the Subzero authors.
7 // 7 //
8 // This is forked from Dart revision 39313. 8 // This is forked from Dart revision 39313.
9 // Please update the revision if we merge back changes from Dart. 9 // Please update the revision if we merge back changes from Dart.
10 // https://code.google.com/p/dart/wiki/GettingTheSource 10 // https://code.google.com/p/dart/wiki/GettingTheSource
(...skipping 17 matching lines...) Expand all
28 #include "IceGlobalContext.h" 28 #include "IceGlobalContext.h"
29 #include "IceOperand.h" 29 #include "IceOperand.h"
30 30
31 namespace Ice { 31 namespace Ice {
32 32
33 static uintptr_t NewContents(Assembler &Assemblr, intptr_t Capacity) { 33 static uintptr_t NewContents(Assembler &Assemblr, intptr_t Capacity) {
34 uintptr_t Result = Assemblr.allocateBytes(Capacity); 34 uintptr_t Result = Assemblr.allocateBytes(Capacity);
35 return Result; 35 return Result;
36 } 36 }
37 37
38 void AssemblerBuffer::installFixup(AssemblerFixup *F) {
39 F->set_position(0);
40 if (!Assemblr.getPreliminary())
41 Fixups.push_back(F);
42 }
43
38 AssemblerFixup *AssemblerBuffer::createFixup(FixupKind Kind, 44 AssemblerFixup *AssemblerBuffer::createFixup(FixupKind Kind,
39 const Constant *Value) { 45 const Constant *Value) {
40 AssemblerFixup *F = 46 AssemblerFixup *F =
41 new (Assemblr.allocate<AssemblerFixup>()) AssemblerFixup(); 47 new (Assemblr.allocate<AssemblerFixup>()) AssemblerFixup();
42 F->set_position(0);
43 F->set_kind(Kind); 48 F->set_kind(Kind);
44 F->set_value(Value); 49 F->set_value(Value);
45 if (!Assemblr.getPreliminary()) 50 installFixup(F);
46 Fixups.push_back(F);
47 return F; 51 return F;
48 } 52 }
49 53
50 void AssemblerBuffer::EnsureCapacity::validate(AssemblerBuffer *buffer) { 54 void AssemblerBuffer::EnsureCapacity::validate(AssemblerBuffer *buffer) {
51 // In debug mode, we save the assembler buffer along with the gap size before 55 // In debug mode, we save the assembler buffer along with the gap size before
52 // we start emitting to the buffer. This allows us to check that any single 56 // we start emitting to the buffer. This allows us to check that any single
53 // generated instruction doesn't overflow the limit implied by the minimum 57 // generated instruction doesn't overflow the limit implied by the minimum
54 // gap size. 58 // gap size.
55 Gap = computeGap(); 59 Gap = computeGap();
56 // Make sure that extending the capacity leaves a big enough gap for any kind 60 // Make sure that extending the capacity leaves a big enough gap for any kind
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 120
117 llvm::StringRef Assembler::getBufferView() const { 121 llvm::StringRef Assembler::getBufferView() const {
118 return llvm::StringRef(reinterpret_cast<const char *>(Buffer.contents()), 122 return llvm::StringRef(reinterpret_cast<const char *>(Buffer.contents()),
119 Buffer.size()); 123 Buffer.size());
120 } 124 }
121 125
122 void Assembler::emitIASBytes() const { 126 void Assembler::emitIASBytes() const {
123 Ostream &Str = Ctx->getStrEmit(); 127 Ostream &Str = Ctx->getStrEmit();
124 intptr_t EndPosition = Buffer.size(); 128 intptr_t EndPosition = Buffer.size();
125 intptr_t CurPosition = 0; 129 intptr_t CurPosition = 0;
126 const intptr_t FixupSize = 4;
127 for (const AssemblerFixup *NextFixup : fixups()) { 130 for (const AssemblerFixup *NextFixup : fixups()) {
128 intptr_t NextFixupLoc = NextFixup->position(); 131 intptr_t NextFixupLoc = NextFixup->position();
129 for (intptr_t i = CurPosition; i < NextFixupLoc; ++i) { 132 for (intptr_t i = CurPosition; i < NextFixupLoc; ++i) {
130 Str << "\t.byte 0x"; 133 Str << "\t.byte 0x";
131 Str.write_hex(Buffer.load<uint8_t>(i)); 134 Str.write_hex(Buffer.load<uint8_t>(i));
132 Str << "\n"; 135 Str << "\n";
133 } 136 }
134 Str << "\t.long ";
135 // For PCRel fixups, we write the pc-offset from a symbol into the Buffer 137 // For PCRel fixups, we write the pc-offset from a symbol into the Buffer
136 // (e.g., -4), but we don't represent that in the fixup's offset. Otherwise 138 // (e.g., -4), but we don't represent that in the fixup's offset. Otherwise
137 // the fixup holds the true offset, and so does the Buffer. Just load the 139 // the fixup holds the true offset, and so does the Buffer. Just load the
138 // offset from the buffer. 140 // offset from the buffer.
139 NextFixup->emit(Ctx, Buffer.load<RelocOffsetT>(NextFixupLoc)); 141 CurPosition = NextFixupLoc +
140 if (fixupIsPCRel(NextFixup->kind())) 142 NextFixup->emit(Ctx, Buffer.load<RelocOffsetT>(NextFixupLoc),
141 Str << " - ."; 143 fixupIsPCRel(NextFixup->kind()));
142 Str << "\n";
143 CurPosition = NextFixupLoc + FixupSize;
144 assert(CurPosition <= EndPosition); 144 assert(CurPosition <= EndPosition);
145 } 145 }
146 // Handle any bytes that are not prefixed by a fixup. 146 // Handle any bytes that are not prefixed by a fixup.
147 for (intptr_t i = CurPosition; i < EndPosition; ++i) { 147 for (intptr_t i = CurPosition; i < EndPosition; ++i) {
148 Str << "\t.byte 0x"; 148 Str << "\t.byte 0x";
149 Str.write_hex(Buffer.load<uint8_t>(i)); 149 Str.write_hex(Buffer.load<uint8_t>(i));
150 Str << "\n"; 150 Str << "\n";
151 } 151 }
152 } 152 }
153 153
154 } // end of namespace Ice 154 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceAssembler.h ('k') | src/IceAssemblerARM32.h » ('j') | src/IceAssemblerARM32.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698