blob: d58034df0d7567ab05622ae1c6ab08857e667053 [file] [log] [blame]
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001// Copyright (c) 1994-2006 Sun Microsystems Inc.
2// All Rights Reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met:
7//
8// - Redistributions of source code must retain the above copyright notice,
9// this list of conditions and the following disclaimer.
10//
11// - Redistribution in binary form must reproduce the above copyright
12// notice, this list of conditions and the following disclaimer in the
13// documentation and/or other materials provided with the distribution.
14//
15// - Neither the name of Sun Microsystems or the names of contributors may
16// be used to endorse or promote products derived from this software without
17// specific prior written permission.
18//
19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31// The original source code covered by the above license above has been
32// modified significantly by Google Inc.
karlklose@chromium.org44bc7082011-04-11 12:33:05 +000033// Copyright 2011 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000034
35#ifndef V8_ASSEMBLER_H_
36#define V8_ASSEMBLER_H_
37
lrn@chromium.org1c092762011-05-09 09:42:16 +000038#include "allocation.h"
erik.corry@gmail.com0511e242011-01-19 11:11:08 +000039#include "gdb-jit.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000040#include "runtime.h"
ager@chromium.org65dad4b2009-04-23 08:48:43 +000041#include "token.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000042
kasperl@chromium.org71affb52009-05-26 05:44:31 +000043namespace v8 {
44namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000045
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000046const unsigned kNoASTId = -1;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000047// -----------------------------------------------------------------------------
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000048// Platform independent assembler base class.
49
50class AssemblerBase: public Malloced {
51 public:
vegorov@chromium.org7304bca2011-05-16 12:14:13 +000052 explicit AssemblerBase(Isolate* isolate);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000053
54 Isolate* isolate() const { return isolate_; }
vegorov@chromium.org7304bca2011-05-16 12:14:13 +000055 int jit_cookie() { return jit_cookie_; }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000056
57 private:
58 Isolate* isolate_;
vegorov@chromium.org7304bca2011-05-16 12:14:13 +000059 int jit_cookie_;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000060};
61
62// -----------------------------------------------------------------------------
kasperl@chromium.orga5551262010-12-07 12:49:48 +000063// Common double constants.
64
65class DoubleConstant: public AllStatic {
66 public:
67 static const double min_int;
68 static const double one_half;
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000069 static const double minus_zero;
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +000070 static const double zero;
71 static const double uint8_max_value;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000072 static const double negative_infinity;
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000073 static const double canonical_non_hole_nan;
74 static const double the_hole_nan;
kasperl@chromium.orga5551262010-12-07 12:49:48 +000075};
76
77
78// -----------------------------------------------------------------------------
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000079// Labels represent pc locations; they are typically jump or call targets.
80// After declaration, a label can be freely used to denote known or (yet)
81// unknown pc location. Assembler::bind() is used to bind a label to the
82// current pc. A label can be bound only once.
83
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000084class Label BASE_EMBEDDED {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000085 public:
karlklose@chromium.org83a47282011-05-11 11:54:09 +000086 enum Distance {
87 kNear, kFar
88 };
89
90 INLINE(Label()) {
91 Unuse();
92 UnuseNear();
93 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000094
whesse@chromium.org7b260152011-06-20 15:33:18 +000095 INLINE(~Label()) {
96 ASSERT(!is_linked());
97 ASSERT(!is_near_linked());
98 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000099
whesse@chromium.org7b260152011-06-20 15:33:18 +0000100 INLINE(void Unuse()) { pos_ = 0; }
101 INLINE(void UnuseNear()) { near_link_pos_ = 0; }
102
103 INLINE(bool is_bound() const) { return pos_ < 0; }
104 INLINE(bool is_unused() const) { return pos_ == 0 && near_link_pos_ == 0; }
105 INLINE(bool is_linked() const) { return pos_ > 0; }
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000106 INLINE(bool is_near_linked() const) { return near_link_pos_ > 0; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000107
108 // Returns the position of bound or linked labels. Cannot be used
109 // for unused labels.
110 int pos() const;
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000111 int near_link_pos() const { return near_link_pos_ - 1; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000112
113 private:
114 // pos_ encodes both the binding state (via its sign)
115 // and the binding position (via its value) of a label.
116 //
117 // pos_ < 0 bound label, pos() returns the jump target position
118 // pos_ == 0 unused label
119 // pos_ > 0 linked label, pos() returns the last reference position
120 int pos_;
121
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000122 // Behaves like |pos_| in the "> 0" case, but for near jumps to this label.
123 int near_link_pos_;
124
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000125 void bind_to(int pos) {
126 pos_ = -pos - 1;
127 ASSERT(is_bound());
128 }
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000129 void link_to(int pos, Distance distance = kFar) {
130 if (distance == kNear) {
131 near_link_pos_ = pos + 1;
132 ASSERT(is_near_linked());
133 } else {
134 pos_ = pos + 1;
135 ASSERT(is_linked());
136 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000137 }
138
139 friend class Assembler;
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000140 friend class RegexpAssembler;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000141 friend class Displacement;
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000142 friend class RegExpMacroAssemblerIrregexp;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000143};
144
145
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000146// -----------------------------------------------------------------------------
147// Relocation information
148
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000149
150// Relocation information consists of the address (pc) of the datum
151// to which the relocation information applies, the relocation mode
152// (rmode), and an optional data field. The relocation mode may be
153// "descriptive" and not indicate a need for relocation, but simply
154// describe a property of the datum. Such rmodes are useful for GC
155// and nice disassembly output.
156
157class RelocInfo BASE_EMBEDDED {
158 public:
ager@chromium.org236ad962008-09-25 09:45:57 +0000159 // The constant kNoPosition is used with the collecting of source positions
160 // in the relocation information. Two types of source positions are collected
161 // "position" (RelocMode position) and "statement position" (RelocMode
162 // statement_position). The "position" is collected at places in the source
163 // code which are of interest when making stack traces to pin-point the source
164 // location of a stack frame as close as possible. The "statement position" is
165 // collected at the beginning at each statement, and is used to indicate
166 // possible break locations. kNoPosition is used to indicate an
167 // invalid/uninitialized position value.
168 static const int kNoPosition = -1;
169
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +0000170 // This string is used to add padding comments to the reloc info in cases
171 // where we are not sure to have enough space for patching in during
172 // lazy deoptimization. This is the case if we have indirect calls for which
173 // we do not normally record relocation info.
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000174 static const char* const kFillerCommentString;
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +0000175
ricow@chromium.org22334512011-02-25 07:28:50 +0000176 // The minimum size of a comment is equal to three bytes for the extra tagged
177 // pc + the tag for the data, and kPointerSize for the actual pointer to the
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +0000178 // comment.
ricow@chromium.org22334512011-02-25 07:28:50 +0000179 static const int kMinRelocCommentSize = 3 + kPointerSize;
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +0000180
181 // The maximum size for a call instruction including pc-jump.
182 static const int kMaxCallSize = 6;
183
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000184 // The maximum pc delta that will use the short encoding.
185 static const int kMaxSmallPCDelta;
186
ager@chromium.org236ad962008-09-25 09:45:57 +0000187 enum Mode {
188 // Please note the order is important (see IsCodeTarget, IsGCRelocMode).
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000189 CODE_TARGET, // Code target which is not any of the above.
190 CODE_TARGET_WITH_ID,
ager@chromium.org236ad962008-09-25 09:45:57 +0000191 CONSTRUCT_CALL, // code target that is a call to a JavaScript constructor.
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000192 CODE_TARGET_CONTEXT, // Code target used for contextual loads and stores.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000193 DEBUG_BREAK, // Code target for the debugger statement.
ager@chromium.org236ad962008-09-25 09:45:57 +0000194 EMBEDDED_OBJECT,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000195 GLOBAL_PROPERTY_CELL,
196
ager@chromium.org236ad962008-09-25 09:45:57 +0000197 // Everything after runtime_entry (inclusive) is not GC'ed.
198 RUNTIME_ENTRY,
199 JS_RETURN, // Marks start of the ExitJSFrame code.
200 COMMENT,
201 POSITION, // See comment for kNoPosition above.
202 STATEMENT_POSITION, // See comment for kNoPosition above.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000203 DEBUG_BREAK_SLOT, // Additional code inserted for debug break slot.
ager@chromium.org236ad962008-09-25 09:45:57 +0000204 EXTERNAL_REFERENCE, // The address of an external C++ function.
205 INTERNAL_REFERENCE, // An address inside the same function.
206
207 // add more as needed
208 // Pseudo-types
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000209 NUMBER_OF_MODES, // There are at most 14 modes with noncompact encoding.
ager@chromium.org236ad962008-09-25 09:45:57 +0000210 NONE, // never recorded
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000211 LAST_CODE_ENUM = DEBUG_BREAK,
212 LAST_GCED_ENUM = GLOBAL_PROPERTY_CELL,
213 // Modes <= LAST_COMPACT_ENUM are guaranteed to have compact encoding.
214 LAST_COMPACT_ENUM = CODE_TARGET_WITH_ID
ager@chromium.org236ad962008-09-25 09:45:57 +0000215 };
216
217
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000218 RelocInfo() {}
ager@chromium.org236ad962008-09-25 09:45:57 +0000219 RelocInfo(byte* pc, Mode rmode, intptr_t data)
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000220 : pc_(pc), rmode_(rmode), data_(data) {
221 }
222
ager@chromium.org236ad962008-09-25 09:45:57 +0000223 static inline bool IsConstructCall(Mode mode) {
224 return mode == CONSTRUCT_CALL;
225 }
226 static inline bool IsCodeTarget(Mode mode) {
227 return mode <= LAST_CODE_ENUM;
228 }
229 // Is the relocation mode affected by GC?
230 static inline bool IsGCRelocMode(Mode mode) {
231 return mode <= LAST_GCED_ENUM;
232 }
233 static inline bool IsJSReturn(Mode mode) {
234 return mode == JS_RETURN;
235 }
236 static inline bool IsComment(Mode mode) {
237 return mode == COMMENT;
238 }
239 static inline bool IsPosition(Mode mode) {
240 return mode == POSITION || mode == STATEMENT_POSITION;
241 }
242 static inline bool IsStatementPosition(Mode mode) {
243 return mode == STATEMENT_POSITION;
244 }
245 static inline bool IsExternalReference(Mode mode) {
246 return mode == EXTERNAL_REFERENCE;
247 }
248 static inline bool IsInternalReference(Mode mode) {
249 return mode == INTERNAL_REFERENCE;
250 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000251 static inline bool IsDebugBreakSlot(Mode mode) {
252 return mode == DEBUG_BREAK_SLOT;
253 }
ager@chromium.org236ad962008-09-25 09:45:57 +0000254 static inline int ModeMask(Mode mode) { return 1 << mode; }
255
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000256 // Accessors
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000257 byte* pc() const { return pc_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000258 void set_pc(byte* pc) { pc_ = pc; }
ager@chromium.org236ad962008-09-25 09:45:57 +0000259 Mode rmode() const { return rmode_; }
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000260 intptr_t data() const { return data_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000261
262 // Apply a relocation by delta bytes
ager@chromium.org3e875802009-06-29 08:26:34 +0000263 INLINE(void apply(intptr_t delta));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000264
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000265 // Is the pointer this relocation info refers to coded like a plain pointer
266 // or is it strange in some way (eg relative or patched into a series of
267 // instructions).
268 bool IsCodedSpecially();
269
ager@chromium.org32912102009-01-16 10:38:43 +0000270 // Read/modify the code target in the branch/call instruction
271 // this relocation applies to;
272 // can only be called if IsCodeTarget(rmode_) || rmode_ == RUNTIME_ENTRY
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000273 INLINE(Address target_address());
274 INLINE(void set_target_address(Address target));
275 INLINE(Object* target_object());
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000276 INLINE(Handle<Object> target_object_handle(Assembler* origin));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000277 INLINE(Object** target_object_address());
278 INLINE(void set_target_object(Object* target));
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000279 INLINE(JSGlobalPropertyCell* target_cell());
280 INLINE(Handle<JSGlobalPropertyCell> target_cell_handle());
281 INLINE(void set_target_cell(JSGlobalPropertyCell* cell));
282
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000283
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000284 // Read the address of the word containing the target_address in an
285 // instruction stream. What this means exactly is architecture-independent.
286 // The only architecture-independent user of this function is the serializer.
287 // The serializer uses it to find out how many raw bytes of instruction to
288 // output before the next target. Architecture-independent code shouldn't
289 // dereference the pointer it gets back from this.
ager@chromium.org32912102009-01-16 10:38:43 +0000290 INLINE(Address target_address_address());
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000291 // This indicates how much space a target takes up when deserializing a code
292 // stream. For most architectures this is just the size of a pointer. For
293 // an instruction like movw/movt where the target bits are mixed into the
294 // instruction bits the size of the target will be zero, indicating that the
295 // serializer should not step forwards in memory after a target is resolved
296 // and written. In this case the target_address_address function above
297 // should return the end of the instructions to be patched, allowing the
298 // deserializer to deserialize the instructions as raw bytes and put them in
299 // place, ready to be patched with the target.
300 INLINE(int target_address_size());
ager@chromium.org32912102009-01-16 10:38:43 +0000301
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000302 // Read/modify the reference in the instruction this relocation
303 // applies to; can only be called if rmode_ is external_reference
304 INLINE(Address* target_reference_address());
305
306 // Read/modify the address of a call instruction. This is used to relocate
307 // the break points where straight-line code is patched with a call
308 // instruction.
309 INLINE(Address call_address());
310 INLINE(void set_call_address(Address target));
311 INLINE(Object* call_object());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000312 INLINE(void set_call_object(Object* target));
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +0000313 INLINE(Object** call_object_address());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000314
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000315 template<typename StaticVisitor> inline void Visit(Heap* heap);
kmillikin@chromium.org9155e252010-05-26 13:27:57 +0000316 inline void Visit(ObjectVisitor* v);
317
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000318 // Patch the code with some other code.
iposva@chromium.org245aa852009-02-10 00:49:54 +0000319 void PatchCode(byte* instructions, int instruction_count);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000320
321 // Patch the code with a call.
iposva@chromium.org245aa852009-02-10 00:49:54 +0000322 void PatchCodeWithCall(Address target, int guard_bytes);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +0000323
324 // Check whether this return sequence has been patched
325 // with a call to the debugger.
326 INLINE(bool IsPatchedReturnSequence());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000327
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000328 // Check whether this debug break slot has been patched with a call to the
329 // debugger.
330 INLINE(bool IsPatchedDebugBreakSlotSequence());
331
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000332#ifdef ENABLE_DISASSEMBLER
333 // Printing
ager@chromium.org236ad962008-09-25 09:45:57 +0000334 static const char* RelocModeName(Mode rmode);
whesse@chromium.org023421e2010-12-21 12:19:12 +0000335 void Print(FILE* out);
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000336#endif // ENABLE_DISASSEMBLER
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000337#ifdef DEBUG
338 // Debugging
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000339 void Verify();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000340#endif
341
ager@chromium.org236ad962008-09-25 09:45:57 +0000342 static const int kCodeTargetMask = (1 << (LAST_CODE_ENUM + 1)) - 1;
343 static const int kPositionMask = 1 << POSITION | 1 << STATEMENT_POSITION;
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000344 static const int kDataMask =
345 (1 << CODE_TARGET_WITH_ID) | kPositionMask | (1 << COMMENT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000346 static const int kApplyMask; // Modes affected by apply. Depends on arch.
347
348 private:
349 // On ARM, note that pc_ is the address of the constant pool entry
350 // to be relocated and not the address of the instruction
351 // referencing the constant pool entry (except when rmode_ ==
352 // comment).
353 byte* pc_;
ager@chromium.org236ad962008-09-25 09:45:57 +0000354 Mode rmode_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000355 intptr_t data_;
danno@chromium.org40cb8782011-05-25 07:58:50 +0000356#ifdef V8_TARGET_ARCH_MIPS
357 // Code and Embedded Object pointers in mips are stored split
358 // across two consecutive 32-bit instructions. Heap management
359 // routines expect to access these pointers indirectly. The following
360 // location provides a place for these pointers to exist natually
361 // when accessed via the Iterator.
362 Object *reconstructed_obj_ptr_;
363 // External-reference pointers are also split across instruction-pairs
364 // in mips, but are accessed via indirect pointers. This location
365 // provides a place for that pointer to exist naturally. Its address
366 // is returned by RelocInfo::target_reference_address().
367 Address reconstructed_adr_ptr_;
368#endif // V8_TARGET_ARCH_MIPS
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000369 friend class RelocIterator;
370};
371
372
373// RelocInfoWriter serializes a stream of relocation info. It writes towards
374// lower addresses.
375class RelocInfoWriter BASE_EMBEDDED {
376 public:
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000377 RelocInfoWriter() : pos_(NULL),
378 last_pc_(NULL),
379 last_id_(0),
380 last_position_(0) {}
381 RelocInfoWriter(byte* pos, byte* pc) : pos_(pos),
382 last_pc_(pc),
383 last_id_(0),
384 last_position_(0) {}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000385
386 byte* pos() const { return pos_; }
387 byte* last_pc() const { return last_pc_; }
388
389 void Write(const RelocInfo* rinfo);
390
391 // Update the state of the stream after reloc info buffer
392 // and/or code is moved while the stream is active.
393 void Reposition(byte* pos, byte* pc) {
394 pos_ = pos;
395 last_pc_ = pc;
396 }
397
ager@chromium.org3e875802009-06-29 08:26:34 +0000398 // Max size (bytes) of a written RelocInfo. Longest encoding is
399 // ExtraTag, VariableLengthPCJump, ExtraTag, pc_delta, ExtraTag, data_delta.
400 // On ia32 and arm this is 1 + 4 + 1 + 1 + 1 + 4 = 12.
401 // On x64 this is 1 + 4 + 1 + 1 + 1 + 8 == 16;
402 // Here we use the maximum of the two.
403 static const int kMaxSize = 16;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000404
405 private:
406 inline uint32_t WriteVariableLengthPCJump(uint32_t pc_delta);
407 inline void WriteTaggedPC(uint32_t pc_delta, int tag);
408 inline void WriteExtraTaggedPC(uint32_t pc_delta, int extra_tag);
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000409 inline void WriteExtraTaggedIntData(int data_delta, int top_tag);
ager@chromium.orge2902be2009-06-08 12:21:35 +0000410 inline void WriteExtraTaggedData(intptr_t data_delta, int top_tag);
411 inline void WriteTaggedData(intptr_t data_delta, int tag);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000412 inline void WriteExtraTag(int extra_tag, int top_tag);
413
414 byte* pos_;
415 byte* last_pc_;
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000416 int last_id_;
417 int last_position_;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000418 DISALLOW_COPY_AND_ASSIGN(RelocInfoWriter);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000419};
420
421
422// A RelocIterator iterates over relocation information.
423// Typical use:
424//
425// for (RelocIterator it(code); !it.done(); it.next()) {
426// // do something with it.rinfo() here
427// }
428//
429// A mask can be specified to skip unwanted modes.
430class RelocIterator: public Malloced {
431 public:
432 // Create a new iterator positioned at
433 // the beginning of the reloc info.
434 // Relocation information with mode k is included in the
435 // iteration iff bit k of mode_mask is set.
436 explicit RelocIterator(Code* code, int mode_mask = -1);
437 explicit RelocIterator(const CodeDesc& desc, int mode_mask = -1);
438
439 // Iteration
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000440 bool done() const { return done_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000441 void next();
442
443 // Return pointer valid until next next().
444 RelocInfo* rinfo() {
445 ASSERT(!done());
446 return &rinfo_;
447 }
448
449 private:
450 // Advance* moves the position before/after reading.
451 // *Read* reads from current byte(s) into rinfo_.
452 // *Get* just reads and returns info on current byte.
453 void Advance(int bytes = 1) { pos_ -= bytes; }
454 int AdvanceGetTag();
455 int GetExtraTag();
456 int GetTopTag();
457 void ReadTaggedPC();
458 void AdvanceReadPC();
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000459 void AdvanceReadId();
460 void AdvanceReadPosition();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000461 void AdvanceReadData();
462 void AdvanceReadVariableLengthPCJump();
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000463 int GetLocatableTypeTag();
464 void ReadTaggedId();
465 void ReadTaggedPosition();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000466
467 // If the given mode is wanted, set it in rinfo_ and return true.
468 // Else return false. Used for efficiently skipping unwanted modes.
ager@chromium.org236ad962008-09-25 09:45:57 +0000469 bool SetMode(RelocInfo::Mode mode) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000470 return (mode_mask_ & (1 << mode)) ? (rinfo_.rmode_ = mode, true) : false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000471 }
472
473 byte* pos_;
474 byte* end_;
475 RelocInfo rinfo_;
476 bool done_;
477 int mode_mask_;
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000478 int last_id_;
479 int last_position_;
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000480 DISALLOW_COPY_AND_ASSIGN(RelocIterator);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000481};
482
483
484//------------------------------------------------------------------------------
485// External function
486
487//----------------------------------------------------------------------------
488class IC_Utility;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000489class SCTableReference;
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000490#ifdef ENABLE_DEBUGGER_SUPPORT
491class Debug_Address;
492#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000493
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000494
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000495// An ExternalReference represents a C++ address used in the generated
496// code. All references to C++ functions and variables must be encapsulated in
497// an ExternalReference instance. This is done in order to track the origin of
498// all external references in the code so that they can be bound to the correct
499// addresses when deserializing a heap.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000500class ExternalReference BASE_EMBEDDED {
501 public:
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000502 // Used in the simulator to support different native api calls.
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000503 enum Type {
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +0000504 // Builtin call.
505 // MaybeObject* f(v8::internal::Arguments).
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000506 BUILTIN_CALL, // default
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +0000507
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000508 // Builtin that takes float arguments and returns an int.
509 // int f(double, double).
510 BUILTIN_COMPARE_CALL,
511
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +0000512 // Builtin call that returns floating point.
513 // double f(double, double).
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000514 BUILTIN_FP_FP_CALL,
515
516 // Builtin call that returns floating point.
517 // double f(double).
518 BUILTIN_FP_CALL,
519
520 // Builtin call that returns floating point.
521 // double f(double, int).
522 BUILTIN_FP_INT_CALL,
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +0000523
524 // Direct call to API function callback.
525 // Handle<Value> f(v8::Arguments&)
526 DIRECT_API_CALL,
527
528 // Direct call to accessor getter callback.
529 // Handle<value> f(Local<String> property, AccessorInfo& info)
530 DIRECT_GETTER_CALL
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000531 };
532
533 typedef void* ExternalReferenceRedirector(void* original, Type type);
534
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000535 ExternalReference(Builtins::CFunctionId id, Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000536
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000537 ExternalReference(ApiFunction* ptr, Type type, Isolate* isolate);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000538
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000539 ExternalReference(Builtins::Name name, Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000540
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000541 ExternalReference(Runtime::FunctionId id, Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000542
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000543 ExternalReference(const Runtime::Function* f, Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000544
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000545 ExternalReference(const IC_Utility& ic_utility, Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000546
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000547#ifdef ENABLE_DEBUGGER_SUPPORT
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000548 ExternalReference(const Debug_Address& debug_address, Isolate* isolate);
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000549#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000550
551 explicit ExternalReference(StatsCounter* counter);
552
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000553 ExternalReference(Isolate::AddressId id, Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000554
555 explicit ExternalReference(const SCTableReference& table_ref);
556
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000557 // Isolate::Current() as an external reference.
558 static ExternalReference isolate_address();
559
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000560 // One-of-a-kind references. These references are not part of a general
561 // pattern. This means that they have to be added to the
562 // ExternalReferenceTable in serialize.cc manually.
563
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000564 static ExternalReference perform_gc_function(Isolate* isolate);
565 static ExternalReference fill_heap_number_with_random_function(
566 Isolate* isolate);
567 static ExternalReference random_uint32_function(Isolate* isolate);
568 static ExternalReference transcendental_cache_array_address(Isolate* isolate);
569 static ExternalReference delete_handle_scope_extensions(Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000570
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000571 // Deoptimization support.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000572 static ExternalReference new_deoptimizer_function(Isolate* isolate);
573 static ExternalReference compute_output_frames_function(Isolate* isolate);
574 static ExternalReference global_contexts_list(Isolate* isolate);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000575
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000576 // Static data in the keyed lookup cache.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000577 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate);
578 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate);
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000579
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000580 // Static variable Factory::the_hole_value.location()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000581 static ExternalReference the_hole_value_location(Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000582
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000583 // Static variable Factory::arguments_marker.location()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000584 static ExternalReference arguments_marker_location(Isolate* isolate);
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000585
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000586 // Static variable Heap::roots_address()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000587 static ExternalReference roots_address(Isolate* isolate);
ager@chromium.orgab99eea2009-08-25 07:05:41 +0000588
ager@chromium.org6f10e412009-02-13 10:11:16 +0000589 // Static variable StackGuard::address_of_jslimit()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000590 static ExternalReference address_of_stack_limit(Isolate* isolate);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000591
592 // Static variable StackGuard::address_of_real_jslimit()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000593 static ExternalReference address_of_real_stack_limit(Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000594
ager@chromium.org32912102009-01-16 10:38:43 +0000595 // Static variable RegExpStack::limit_address()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000596 static ExternalReference address_of_regexp_stack_limit(Isolate* isolate);
ager@chromium.org32912102009-01-16 10:38:43 +0000597
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000598 // Static variables for RegExp.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000599 static ExternalReference address_of_static_offsets_vector(Isolate* isolate);
600 static ExternalReference address_of_regexp_stack_memory_address(
601 Isolate* isolate);
602 static ExternalReference address_of_regexp_stack_memory_size(
603 Isolate* isolate);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000604
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000605 // Static variable Heap::NewSpaceStart()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000606 static ExternalReference new_space_start(Isolate* isolate);
607 static ExternalReference new_space_mask(Isolate* isolate);
608 static ExternalReference heap_always_allocate_scope_depth(Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000609
610 // Used for fast allocation in generated code.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000611 static ExternalReference new_space_allocation_top_address(Isolate* isolate);
612 static ExternalReference new_space_allocation_limit_address(Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000613
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000614 static ExternalReference double_fp_operation(Token::Value operation,
615 Isolate* isolate);
616 static ExternalReference compare_doubles(Isolate* isolate);
617 static ExternalReference power_double_double_function(Isolate* isolate);
618 static ExternalReference power_double_int_function(Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000619
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000620 static ExternalReference handle_scope_next_address();
621 static ExternalReference handle_scope_limit_address();
lrn@chromium.org303ada72010-10-27 09:33:13 +0000622 static ExternalReference handle_scope_level_address();
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000623
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000624 static ExternalReference scheduled_exception_address(Isolate* isolate);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000625
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000626 // Static variables containing common double constants.
627 static ExternalReference address_of_min_int();
628 static ExternalReference address_of_one_half();
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000629 static ExternalReference address_of_minus_zero();
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +0000630 static ExternalReference address_of_zero();
631 static ExternalReference address_of_uint8_max_value();
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000632 static ExternalReference address_of_negative_infinity();
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +0000633 static ExternalReference address_of_canonical_non_hole_nan();
634 static ExternalReference address_of_the_hole_nan();
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000635
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000636 static ExternalReference math_sin_double_function(Isolate* isolate);
637 static ExternalReference math_cos_double_function(Isolate* isolate);
638 static ExternalReference math_log_double_function(Isolate* isolate);
karlklose@chromium.org8f806e82011-03-07 14:06:08 +0000639
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000640 Address address() const {return reinterpret_cast<Address>(address_);}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000641
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000642#ifdef ENABLE_DEBUGGER_SUPPORT
643 // Function Debug::Break()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000644 static ExternalReference debug_break(Isolate* isolate);
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000645
646 // Used to check if single stepping is enabled in generated code.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000647 static ExternalReference debug_step_in_fp_address(Isolate* isolate);
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000648#endif
649
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000650#ifndef V8_INTERPRETED_REGEXP
ager@chromium.org18ad94b2009-09-02 08:22:29 +0000651 // C functions called from RegExp generated code.
652
653 // Function NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000654 static ExternalReference re_case_insensitive_compare_uc16(Isolate* isolate);
ager@chromium.org18ad94b2009-09-02 08:22:29 +0000655
656 // Function RegExpMacroAssembler*::CheckStackGuardState()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000657 static ExternalReference re_check_stack_guard_state(Isolate* isolate);
ager@chromium.org18ad94b2009-09-02 08:22:29 +0000658
659 // Function NativeRegExpMacroAssembler::GrowStack()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000660 static ExternalReference re_grow_stack(Isolate* isolate);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000661
662 // byte NativeRegExpMacroAssembler::word_character_bitmap
663 static ExternalReference re_word_character_map();
664
ager@chromium.org18ad94b2009-09-02 08:22:29 +0000665#endif
666
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000667 // This lets you register a function that rewrites all external references.
668 // Used by the ARM simulator to catch calls to external references.
lrn@chromium.org1c092762011-05-09 09:42:16 +0000669 static void set_redirector(Isolate* isolate,
670 ExternalReferenceRedirector* redirector) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000671 // We can't stack them.
lrn@chromium.org1c092762011-05-09 09:42:16 +0000672 ASSERT(isolate->external_reference_redirector() == NULL);
673 isolate->set_external_reference_redirector(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000674 reinterpret_cast<ExternalReferenceRedirectorPointer*>(redirector));
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000675 }
676
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000677 private:
678 explicit ExternalReference(void* address)
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000679 : address_(address) {}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000680
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000681 static void* Redirect(Isolate* isolate,
682 void* address,
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000683 Type type = ExternalReference::BUILTIN_CALL) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000684 ExternalReferenceRedirector* redirector =
685 reinterpret_cast<ExternalReferenceRedirector*>(
686 isolate->external_reference_redirector());
687 if (redirector == NULL) return address;
688 void* answer = (*redirector)(address, type);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000689 return answer;
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000690 }
691
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000692 static void* Redirect(Isolate* isolate,
693 Address address_arg,
ricow@chromium.org83aa5492011-02-07 12:42:56 +0000694 Type type = ExternalReference::BUILTIN_CALL) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000695 ExternalReferenceRedirector* redirector =
696 reinterpret_cast<ExternalReferenceRedirector*>(
697 isolate->external_reference_redirector());
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000698 void* address = reinterpret_cast<void*>(address_arg);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000699 void* answer = (redirector == NULL) ?
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000700 address :
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000701 (*redirector)(address, type);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000702 return answer;
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000703 }
704
705 void* address_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000706};
707
708
709// -----------------------------------------------------------------------------
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000710// Position recording support
711
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000712struct PositionState {
713 PositionState() : current_position(RelocInfo::kNoPosition),
714 written_position(RelocInfo::kNoPosition),
715 current_statement_position(RelocInfo::kNoPosition),
716 written_statement_position(RelocInfo::kNoPosition) {}
717
718 int current_position;
719 int written_position;
720
721 int current_statement_position;
722 int written_statement_position;
723};
724
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000725
726class PositionsRecorder BASE_EMBEDDED {
727 public:
728 explicit PositionsRecorder(Assembler* assembler)
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000729 : assembler_(assembler) {
730#ifdef ENABLE_GDB_JIT_INTERFACE
731 gdbjit_lineinfo_ = NULL;
732#endif
733 }
734
735#ifdef ENABLE_GDB_JIT_INTERFACE
736 ~PositionsRecorder() {
737 delete gdbjit_lineinfo_;
738 }
739
740 void StartGDBJITLineInfoRecording() {
741 if (FLAG_gdbjit) {
742 gdbjit_lineinfo_ = new GDBJITLineInfo();
743 }
744 }
745
746 GDBJITLineInfo* DetachGDBJITLineInfo() {
747 GDBJITLineInfo* lineinfo = gdbjit_lineinfo_;
748 gdbjit_lineinfo_ = NULL; // To prevent deallocation in destructor.
749 return lineinfo;
750 }
751#endif
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000752
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000753 // Set current position to pos.
754 void RecordPosition(int pos);
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000755
756 // Set current statement position to pos.
757 void RecordStatementPosition(int pos);
758
759 // Write recorded positions to relocation information.
760 bool WriteRecordedPositions();
761
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000762 int current_position() const { return state_.current_position; }
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000763
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000764 int current_statement_position() const {
765 return state_.current_statement_position;
766 }
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000767
768 private:
769 Assembler* assembler_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000770 PositionState state_;
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000771#ifdef ENABLE_GDB_JIT_INTERFACE
772 GDBJITLineInfo* gdbjit_lineinfo_;
773#endif
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000774
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000775 friend class PreservePositionScope;
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000776
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000777 DISALLOW_COPY_AND_ASSIGN(PositionsRecorder);
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000778};
779
780
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000781class PreservePositionScope BASE_EMBEDDED {
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000782 public:
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000783 explicit PreservePositionScope(PositionsRecorder* positions_recorder)
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000784 : positions_recorder_(positions_recorder),
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000785 saved_state_(positions_recorder->state_) {}
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000786
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000787 ~PreservePositionScope() {
788 positions_recorder_->state_ = saved_state_;
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000789 }
790
791 private:
792 PositionsRecorder* positions_recorder_;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000793 const PositionState saved_state_;
794
795 DISALLOW_COPY_AND_ASSIGN(PreservePositionScope);
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000796};
797
798
799// -----------------------------------------------------------------------------
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000800// Utility functions
801
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000802static inline bool is_intn(int x, int n) {
803 return -(1 << (n-1)) <= x && x < (1 << (n-1));
804}
805
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000806static inline bool is_int8(int x) { return is_intn(x, 8); }
ager@chromium.org5c838252010-02-19 08:53:10 +0000807static inline bool is_int16(int x) { return is_intn(x, 16); }
808static inline bool is_int18(int x) { return is_intn(x, 18); }
809static inline bool is_int24(int x) { return is_intn(x, 24); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000810
811static inline bool is_uintn(int x, int n) {
812 return (x & -(1 << n)) == 0;
813}
814
ager@chromium.orge2902be2009-06-08 12:21:35 +0000815static inline bool is_uint2(int x) { return is_uintn(x, 2); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000816static inline bool is_uint3(int x) { return is_uintn(x, 3); }
817static inline bool is_uint4(int x) { return is_uintn(x, 4); }
818static inline bool is_uint5(int x) { return is_uintn(x, 5); }
ager@chromium.orge2902be2009-06-08 12:21:35 +0000819static inline bool is_uint6(int x) { return is_uintn(x, 6); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000820static inline bool is_uint8(int x) { return is_uintn(x, 8); }
ager@chromium.org5c838252010-02-19 08:53:10 +0000821static inline bool is_uint10(int x) { return is_uintn(x, 10); }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000822static inline bool is_uint12(int x) { return is_uintn(x, 12); }
823static inline bool is_uint16(int x) { return is_uintn(x, 16); }
824static inline bool is_uint24(int x) { return is_uintn(x, 24); }
ager@chromium.org5c838252010-02-19 08:53:10 +0000825static inline bool is_uint26(int x) { return is_uintn(x, 26); }
826static inline bool is_uint28(int x) { return is_uintn(x, 28); }
827
828static inline int NumberOfBitsSet(uint32_t x) {
829 unsigned int num_bits_set;
830 for (num_bits_set = 0; x; x >>= 1) {
831 num_bits_set += x & 1;
832 }
833 return num_bits_set;
834}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000835
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000836// Computes pow(x, y) with the special cases in the spec for Math.pow.
837double power_double_int(double x, int y);
838double power_double_double(double x, double y);
839
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +0000840// Helper class for generating code or data associated with the code
841// right after a call instruction. As an example this can be used to
842// generate safepoint data after calls for crankshaft.
843class CallWrapper {
844 public:
845 CallWrapper() { }
846 virtual ~CallWrapper() { }
847 // Called just before emitting a call. Argument is the size of the generated
848 // call code.
849 virtual void BeforeCall(int call_size) const = 0;
850 // Called just after emitting a call, i.e., at the return site for the call.
851 virtual void AfterCall() const = 0;
852};
853
854class NullCallWrapper : public CallWrapper {
855 public:
856 NullCallWrapper() { }
857 virtual ~NullCallWrapper() { }
858 virtual void BeforeCall(int call_size) const { }
859 virtual void AfterCall() const { }
860};
861
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000862} } // namespace v8::internal
863
864#endif // V8_ASSEMBLER_H_