blob: ce90dceacbc9f8b0e3651efd5fb4f18f50cc6d24 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +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.
33// Copyright 2006-2009 the V8 project authors. All rights reserved.
34
35#include "v8.h"
36
37#include "arguments.h"
38#include "execution.h"
39#include "ic-inl.h"
40#include "factory.h"
41#include "runtime.h"
42#include "serialize.h"
43#include "stub-cache.h"
44#include "regexp-stack.h"
45#include "ast.h"
46#include "regexp-macro-assembler.h"
Leon Clarkee46be812010-01-19 14:06:41 +000047#include "platform.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000048// Include native regexp-macro-assembler.
Steve Block6ded16b2010-05-10 14:33:55 +010049#ifndef V8_INTERPRETED_REGEXP
Steve Blocka7e24c12009-10-30 11:49:00 +000050#if V8_TARGET_ARCH_IA32
51#include "ia32/regexp-macro-assembler-ia32.h"
52#elif V8_TARGET_ARCH_X64
53#include "x64/regexp-macro-assembler-x64.h"
54#elif V8_TARGET_ARCH_ARM
55#include "arm/regexp-macro-assembler-arm.h"
56#else // Unknown architecture.
57#error "Unknown architecture."
58#endif // Target architecture.
Steve Block6ded16b2010-05-10 14:33:55 +010059#endif // V8_INTERPRETED_REGEXP
Steve Blocka7e24c12009-10-30 11:49:00 +000060
61namespace v8 {
62namespace internal {
63
64
65// -----------------------------------------------------------------------------
66// Implementation of Label
67
68int Label::pos() const {
69 if (pos_ < 0) return -pos_ - 1;
70 if (pos_ > 0) return pos_ - 1;
71 UNREACHABLE();
72 return 0;
73}
74
75
76// -----------------------------------------------------------------------------
77// Implementation of RelocInfoWriter and RelocIterator
78//
79// Encoding
80//
81// The most common modes are given single-byte encodings. Also, it is
82// easy to identify the type of reloc info and skip unwanted modes in
83// an iteration.
84//
85// The encoding relies on the fact that there are less than 14
86// different relocation modes.
87//
88// embedded_object: [6 bits pc delta] 00
89//
90// code_taget: [6 bits pc delta] 01
91//
92// position: [6 bits pc delta] 10,
93// [7 bits signed data delta] 0
94//
95// statement_position: [6 bits pc delta] 10,
96// [7 bits signed data delta] 1
97//
98// any nondata mode: 00 [4 bits rmode] 11, // rmode: 0..13 only
99// 00 [6 bits pc delta]
100//
101// pc-jump: 00 1111 11,
102// 00 [6 bits pc delta]
103//
104// pc-jump: 01 1111 11,
105// (variable length) 7 - 26 bit pc delta, written in chunks of 7
106// bits, the lowest 7 bits written first.
107//
108// data-jump + pos: 00 1110 11,
109// signed intptr_t, lowest byte written first
110//
111// data-jump + st.pos: 01 1110 11,
112// signed intptr_t, lowest byte written first
113//
114// data-jump + comm.: 10 1110 11,
115// signed intptr_t, lowest byte written first
116//
117const int kMaxRelocModes = 14;
118
119const int kTagBits = 2;
120const int kTagMask = (1 << kTagBits) - 1;
121const int kExtraTagBits = 4;
122const int kPositionTypeTagBits = 1;
123const int kSmallDataBits = kBitsPerByte - kPositionTypeTagBits;
124
125const int kEmbeddedObjectTag = 0;
126const int kCodeTargetTag = 1;
127const int kPositionTag = 2;
128const int kDefaultTag = 3;
129
130const int kPCJumpTag = (1 << kExtraTagBits) - 1;
131
132const int kSmallPCDeltaBits = kBitsPerByte - kTagBits;
133const int kSmallPCDeltaMask = (1 << kSmallPCDeltaBits) - 1;
134
135const int kVariableLengthPCJumpTopTag = 1;
136const int kChunkBits = 7;
137const int kChunkMask = (1 << kChunkBits) - 1;
138const int kLastChunkTagBits = 1;
139const int kLastChunkTagMask = 1;
140const int kLastChunkTag = 1;
141
142
143const int kDataJumpTag = kPCJumpTag - 1;
144
145const int kNonstatementPositionTag = 0;
146const int kStatementPositionTag = 1;
147const int kCommentTag = 2;
148
149
150uint32_t RelocInfoWriter::WriteVariableLengthPCJump(uint32_t pc_delta) {
151 // Return if the pc_delta can fit in kSmallPCDeltaBits bits.
152 // Otherwise write a variable length PC jump for the bits that do
153 // not fit in the kSmallPCDeltaBits bits.
154 if (is_uintn(pc_delta, kSmallPCDeltaBits)) return pc_delta;
155 WriteExtraTag(kPCJumpTag, kVariableLengthPCJumpTopTag);
156 uint32_t pc_jump = pc_delta >> kSmallPCDeltaBits;
157 ASSERT(pc_jump > 0);
158 // Write kChunkBits size chunks of the pc_jump.
159 for (; pc_jump > 0; pc_jump = pc_jump >> kChunkBits) {
160 byte b = pc_jump & kChunkMask;
161 *--pos_ = b << kLastChunkTagBits;
162 }
163 // Tag the last chunk so it can be identified.
164 *pos_ = *pos_ | kLastChunkTag;
165 // Return the remaining kSmallPCDeltaBits of the pc_delta.
166 return pc_delta & kSmallPCDeltaMask;
167}
168
169
170void RelocInfoWriter::WriteTaggedPC(uint32_t pc_delta, int tag) {
171 // Write a byte of tagged pc-delta, possibly preceded by var. length pc-jump.
172 pc_delta = WriteVariableLengthPCJump(pc_delta);
173 *--pos_ = pc_delta << kTagBits | tag;
174}
175
176
177void RelocInfoWriter::WriteTaggedData(intptr_t data_delta, int tag) {
Steve Blockd0582a62009-12-15 09:54:21 +0000178 *--pos_ = static_cast<byte>(data_delta << kPositionTypeTagBits | tag);
Steve Blocka7e24c12009-10-30 11:49:00 +0000179}
180
181
182void RelocInfoWriter::WriteExtraTag(int extra_tag, int top_tag) {
Steve Blockd0582a62009-12-15 09:54:21 +0000183 *--pos_ = static_cast<int>(top_tag << (kTagBits + kExtraTagBits) |
184 extra_tag << kTagBits |
185 kDefaultTag);
Steve Blocka7e24c12009-10-30 11:49:00 +0000186}
187
188
189void RelocInfoWriter::WriteExtraTaggedPC(uint32_t pc_delta, int extra_tag) {
190 // Write two-byte tagged pc-delta, possibly preceded by var. length pc-jump.
191 pc_delta = WriteVariableLengthPCJump(pc_delta);
192 WriteExtraTag(extra_tag, 0);
193 *--pos_ = pc_delta;
194}
195
196
197void RelocInfoWriter::WriteExtraTaggedData(intptr_t data_delta, int top_tag) {
198 WriteExtraTag(kDataJumpTag, top_tag);
199 for (int i = 0; i < kIntptrSize; i++) {
Steve Blockd0582a62009-12-15 09:54:21 +0000200 *--pos_ = static_cast<byte>(data_delta);
Steve Blocka7e24c12009-10-30 11:49:00 +0000201 // Signed right shift is arithmetic shift. Tested in test-utils.cc.
202 data_delta = data_delta >> kBitsPerByte;
203 }
204}
205
206
207void RelocInfoWriter::Write(const RelocInfo* rinfo) {
208#ifdef DEBUG
209 byte* begin_pos = pos_;
210#endif
211 Counters::reloc_info_count.Increment();
212 ASSERT(rinfo->pc() - last_pc_ >= 0);
213 ASSERT(RelocInfo::NUMBER_OF_MODES < kMaxRelocModes);
214 // Use unsigned delta-encoding for pc.
Steve Blockd0582a62009-12-15 09:54:21 +0000215 uint32_t pc_delta = static_cast<uint32_t>(rinfo->pc() - last_pc_);
Steve Blocka7e24c12009-10-30 11:49:00 +0000216 RelocInfo::Mode rmode = rinfo->rmode();
217
218 // The two most common modes are given small tags, and usually fit in a byte.
219 if (rmode == RelocInfo::EMBEDDED_OBJECT) {
220 WriteTaggedPC(pc_delta, kEmbeddedObjectTag);
221 } else if (rmode == RelocInfo::CODE_TARGET) {
222 WriteTaggedPC(pc_delta, kCodeTargetTag);
223 } else if (RelocInfo::IsPosition(rmode)) {
224 // Use signed delta-encoding for data.
225 intptr_t data_delta = rinfo->data() - last_data_;
226 int pos_type_tag = rmode == RelocInfo::POSITION ? kNonstatementPositionTag
227 : kStatementPositionTag;
228 // Check if data is small enough to fit in a tagged byte.
229 // We cannot use is_intn because data_delta is not an int32_t.
230 if (data_delta >= -(1 << (kSmallDataBits-1)) &&
231 data_delta < 1 << (kSmallDataBits-1)) {
232 WriteTaggedPC(pc_delta, kPositionTag);
233 WriteTaggedData(data_delta, pos_type_tag);
234 last_data_ = rinfo->data();
235 } else {
236 // Otherwise, use costly encoding.
237 WriteExtraTaggedPC(pc_delta, kPCJumpTag);
238 WriteExtraTaggedData(data_delta, pos_type_tag);
239 last_data_ = rinfo->data();
240 }
241 } else if (RelocInfo::IsComment(rmode)) {
242 // Comments are normally not generated, so we use the costly encoding.
243 WriteExtraTaggedPC(pc_delta, kPCJumpTag);
244 WriteExtraTaggedData(rinfo->data() - last_data_, kCommentTag);
245 last_data_ = rinfo->data();
246 } else {
247 // For all other modes we simply use the mode as the extra tag.
248 // None of these modes need a data component.
249 ASSERT(rmode < kPCJumpTag && rmode < kDataJumpTag);
250 WriteExtraTaggedPC(pc_delta, rmode);
251 }
252 last_pc_ = rinfo->pc();
253#ifdef DEBUG
254 ASSERT(begin_pos - pos_ <= kMaxSize);
255#endif
256}
257
258
259inline int RelocIterator::AdvanceGetTag() {
260 return *--pos_ & kTagMask;
261}
262
263
264inline int RelocIterator::GetExtraTag() {
265 return (*pos_ >> kTagBits) & ((1 << kExtraTagBits) - 1);
266}
267
268
269inline int RelocIterator::GetTopTag() {
270 return *pos_ >> (kTagBits + kExtraTagBits);
271}
272
273
274inline void RelocIterator::ReadTaggedPC() {
275 rinfo_.pc_ += *pos_ >> kTagBits;
276}
277
278
279inline void RelocIterator::AdvanceReadPC() {
280 rinfo_.pc_ += *--pos_;
281}
282
283
284void RelocIterator::AdvanceReadData() {
285 intptr_t x = 0;
286 for (int i = 0; i < kIntptrSize; i++) {
287 x |= static_cast<intptr_t>(*--pos_) << i * kBitsPerByte;
288 }
289 rinfo_.data_ += x;
290}
291
292
293void RelocIterator::AdvanceReadVariableLengthPCJump() {
294 // Read the 32-kSmallPCDeltaBits most significant bits of the
295 // pc jump in kChunkBits bit chunks and shift them into place.
296 // Stop when the last chunk is encountered.
297 uint32_t pc_jump = 0;
298 for (int i = 0; i < kIntSize; i++) {
299 byte pc_jump_part = *--pos_;
300 pc_jump |= (pc_jump_part >> kLastChunkTagBits) << i * kChunkBits;
301 if ((pc_jump_part & kLastChunkTagMask) == 1) break;
302 }
303 // The least significant kSmallPCDeltaBits bits will be added
304 // later.
305 rinfo_.pc_ += pc_jump << kSmallPCDeltaBits;
306}
307
308
309inline int RelocIterator::GetPositionTypeTag() {
310 return *pos_ & ((1 << kPositionTypeTagBits) - 1);
311}
312
313
314inline void RelocIterator::ReadTaggedData() {
315 int8_t signed_b = *pos_;
316 // Signed right shift is arithmetic shift. Tested in test-utils.cc.
317 rinfo_.data_ += signed_b >> kPositionTypeTagBits;
318}
319
320
321inline RelocInfo::Mode RelocIterator::DebugInfoModeFromTag(int tag) {
322 if (tag == kStatementPositionTag) {
323 return RelocInfo::STATEMENT_POSITION;
324 } else if (tag == kNonstatementPositionTag) {
325 return RelocInfo::POSITION;
326 } else {
327 ASSERT(tag == kCommentTag);
328 return RelocInfo::COMMENT;
329 }
330}
331
332
333void RelocIterator::next() {
334 ASSERT(!done());
335 // Basically, do the opposite of RelocInfoWriter::Write.
336 // Reading of data is as far as possible avoided for unwanted modes,
337 // but we must always update the pc.
338 //
339 // We exit this loop by returning when we find a mode we want.
340 while (pos_ > end_) {
341 int tag = AdvanceGetTag();
342 if (tag == kEmbeddedObjectTag) {
343 ReadTaggedPC();
344 if (SetMode(RelocInfo::EMBEDDED_OBJECT)) return;
345 } else if (tag == kCodeTargetTag) {
346 ReadTaggedPC();
Steve Blocka7e24c12009-10-30 11:49:00 +0000347 if (SetMode(RelocInfo::CODE_TARGET)) return;
348 } else if (tag == kPositionTag) {
349 ReadTaggedPC();
350 Advance();
351 // Check if we want source positions.
352 if (mode_mask_ & RelocInfo::kPositionMask) {
353 // Check if we want this type of source position.
354 if (SetMode(DebugInfoModeFromTag(GetPositionTypeTag()))) {
355 // Finally read the data before returning.
356 ReadTaggedData();
357 return;
358 }
359 }
360 } else {
361 ASSERT(tag == kDefaultTag);
362 int extra_tag = GetExtraTag();
363 if (extra_tag == kPCJumpTag) {
364 int top_tag = GetTopTag();
365 if (top_tag == kVariableLengthPCJumpTopTag) {
366 AdvanceReadVariableLengthPCJump();
367 } else {
368 AdvanceReadPC();
369 }
370 } else if (extra_tag == kDataJumpTag) {
371 // Check if we want debug modes (the only ones with data).
372 if (mode_mask_ & RelocInfo::kDebugMask) {
373 int top_tag = GetTopTag();
374 AdvanceReadData();
375 if (SetMode(DebugInfoModeFromTag(top_tag))) return;
376 } else {
377 // Otherwise, just skip over the data.
378 Advance(kIntptrSize);
379 }
380 } else {
381 AdvanceReadPC();
382 if (SetMode(static_cast<RelocInfo::Mode>(extra_tag))) return;
383 }
384 }
385 }
386 done_ = true;
387}
388
389
390RelocIterator::RelocIterator(Code* code, int mode_mask) {
391 rinfo_.pc_ = code->instruction_start();
392 rinfo_.data_ = 0;
393 // relocation info is read backwards
394 pos_ = code->relocation_start() + code->relocation_size();
395 end_ = code->relocation_start();
396 done_ = false;
397 mode_mask_ = mode_mask;
398 if (mode_mask_ == 0) pos_ = end_;
399 next();
400}
401
402
403RelocIterator::RelocIterator(const CodeDesc& desc, int mode_mask) {
404 rinfo_.pc_ = desc.buffer;
405 rinfo_.data_ = 0;
406 // relocation info is read backwards
407 pos_ = desc.buffer + desc.buffer_size;
408 end_ = pos_ - desc.reloc_size;
409 done_ = false;
410 mode_mask_ = mode_mask;
411 if (mode_mask_ == 0) pos_ = end_;
412 next();
413}
414
415
416// -----------------------------------------------------------------------------
417// Implementation of RelocInfo
418
419
420#ifdef ENABLE_DISASSEMBLER
421const char* RelocInfo::RelocModeName(RelocInfo::Mode rmode) {
422 switch (rmode) {
423 case RelocInfo::NONE:
424 return "no reloc";
425 case RelocInfo::EMBEDDED_OBJECT:
426 return "embedded object";
Steve Blocka7e24c12009-10-30 11:49:00 +0000427 case RelocInfo::CONSTRUCT_CALL:
428 return "code target (js construct call)";
429 case RelocInfo::CODE_TARGET_CONTEXT:
430 return "code target (context)";
Andrei Popescu402d9372010-02-26 13:31:12 +0000431 case RelocInfo::DEBUG_BREAK:
432#ifndef ENABLE_DEBUGGER_SUPPORT
433 UNREACHABLE();
434#endif
435 return "debug break";
Steve Blocka7e24c12009-10-30 11:49:00 +0000436 case RelocInfo::CODE_TARGET:
437 return "code target";
438 case RelocInfo::RUNTIME_ENTRY:
439 return "runtime entry";
440 case RelocInfo::JS_RETURN:
441 return "js return";
442 case RelocInfo::COMMENT:
443 return "comment";
444 case RelocInfo::POSITION:
445 return "position";
446 case RelocInfo::STATEMENT_POSITION:
447 return "statement position";
448 case RelocInfo::EXTERNAL_REFERENCE:
449 return "external reference";
450 case RelocInfo::INTERNAL_REFERENCE:
451 return "internal reference";
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100452 case RelocInfo::DEBUG_BREAK_SLOT:
453#ifndef ENABLE_DEBUGGER_SUPPORT
454 UNREACHABLE();
455#endif
456 return "debug break slot";
Steve Blocka7e24c12009-10-30 11:49:00 +0000457 case RelocInfo::NUMBER_OF_MODES:
458 UNREACHABLE();
459 return "number_of_modes";
460 }
461 return "unknown relocation type";
462}
463
464
465void RelocInfo::Print() {
466 PrintF("%p %s", pc_, RelocModeName(rmode_));
467 if (IsComment(rmode_)) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100468 PrintF(" (%s)", reinterpret_cast<char*>(data_));
Steve Blocka7e24c12009-10-30 11:49:00 +0000469 } else if (rmode_ == EMBEDDED_OBJECT) {
470 PrintF(" (");
471 target_object()->ShortPrint();
472 PrintF(")");
473 } else if (rmode_ == EXTERNAL_REFERENCE) {
474 ExternalReferenceEncoder ref_encoder;
475 PrintF(" (%s) (%p)",
476 ref_encoder.NameOfAddress(*target_reference_address()),
477 *target_reference_address());
478 } else if (IsCodeTarget(rmode_)) {
479 Code* code = Code::GetCodeFromTargetAddress(target_address());
480 PrintF(" (%s) (%p)", Code::Kind2String(code->kind()), target_address());
481 } else if (IsPosition(rmode_)) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100482 PrintF(" (%" V8_PTR_PREFIX "d)", data());
Steve Blocka7e24c12009-10-30 11:49:00 +0000483 }
484
485 PrintF("\n");
486}
487#endif // ENABLE_DISASSEMBLER
488
489
490#ifdef DEBUG
491void RelocInfo::Verify() {
492 switch (rmode_) {
493 case EMBEDDED_OBJECT:
494 Object::VerifyPointer(target_object());
495 break;
Andrei Popescu402d9372010-02-26 13:31:12 +0000496 case DEBUG_BREAK:
497#ifndef ENABLE_DEBUGGER_SUPPORT
498 UNREACHABLE();
499 break;
500#endif
Steve Blocka7e24c12009-10-30 11:49:00 +0000501 case CONSTRUCT_CALL:
502 case CODE_TARGET_CONTEXT:
503 case CODE_TARGET: {
504 // convert inline target address to code object
505 Address addr = target_address();
506 ASSERT(addr != NULL);
507 // Check that we can find the right code object.
508 Code* code = Code::GetCodeFromTargetAddress(addr);
509 Object* found = Heap::FindCodeObject(addr);
510 ASSERT(found->IsCode());
511 ASSERT(code->address() == HeapObject::cast(found)->address());
512 break;
513 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000514 case RUNTIME_ENTRY:
515 case JS_RETURN:
516 case COMMENT:
517 case POSITION:
518 case STATEMENT_POSITION:
519 case EXTERNAL_REFERENCE:
520 case INTERNAL_REFERENCE:
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100521 case DEBUG_BREAK_SLOT:
Steve Blocka7e24c12009-10-30 11:49:00 +0000522 case NONE:
523 break;
524 case NUMBER_OF_MODES:
525 UNREACHABLE();
526 break;
527 }
528}
529#endif // DEBUG
530
531
532// -----------------------------------------------------------------------------
533// Implementation of ExternalReference
534
535ExternalReference::ExternalReference(Builtins::CFunctionId id)
536 : address_(Redirect(Builtins::c_function_address(id))) {}
537
538
Steve Blockd0582a62009-12-15 09:54:21 +0000539ExternalReference::ExternalReference(ApiFunction* fun)
540 : address_(Redirect(fun->address())) {}
541
542
Steve Blocka7e24c12009-10-30 11:49:00 +0000543ExternalReference::ExternalReference(Builtins::Name name)
544 : address_(Builtins::builtin_address(name)) {}
545
546
547ExternalReference::ExternalReference(Runtime::FunctionId id)
548 : address_(Redirect(Runtime::FunctionForId(id)->entry)) {}
549
550
551ExternalReference::ExternalReference(Runtime::Function* f)
552 : address_(Redirect(f->entry)) {}
553
554
555ExternalReference::ExternalReference(const IC_Utility& ic_utility)
556 : address_(Redirect(ic_utility.address())) {}
557
558#ifdef ENABLE_DEBUGGER_SUPPORT
559ExternalReference::ExternalReference(const Debug_Address& debug_address)
560 : address_(debug_address.address()) {}
561#endif
562
563ExternalReference::ExternalReference(StatsCounter* counter)
564 : address_(reinterpret_cast<Address>(counter->GetInternalPointer())) {}
565
566
567ExternalReference::ExternalReference(Top::AddressId id)
568 : address_(Top::get_address_from_id(id)) {}
569
570
571ExternalReference::ExternalReference(const SCTableReference& table_ref)
572 : address_(table_ref.address()) {}
573
574
575ExternalReference ExternalReference::perform_gc_function() {
576 return ExternalReference(Redirect(FUNCTION_ADDR(Runtime::PerformGC)));
577}
578
579
Steve Block6ded16b2010-05-10 14:33:55 +0100580ExternalReference ExternalReference::fill_heap_number_with_random_function() {
581 return
582 ExternalReference(Redirect(FUNCTION_ADDR(V8::FillHeapNumberWithRandom)));
583}
584
585
John Reck59135872010-11-02 12:39:01 -0700586ExternalReference ExternalReference::delete_handle_scope_extensions() {
587 return ExternalReference(Redirect(FUNCTION_ADDR(
588 HandleScope::DeleteExtensions)));
589}
590
591
Steve Block6ded16b2010-05-10 14:33:55 +0100592ExternalReference ExternalReference::random_uint32_function() {
593 return ExternalReference(Redirect(FUNCTION_ADDR(V8::Random)));
Steve Blocka7e24c12009-10-30 11:49:00 +0000594}
595
596
Andrei Popescu402d9372010-02-26 13:31:12 +0000597ExternalReference ExternalReference::transcendental_cache_array_address() {
598 return ExternalReference(TranscendentalCache::cache_array_address());
599}
600
601
Leon Clarkee46be812010-01-19 14:06:41 +0000602ExternalReference ExternalReference::keyed_lookup_cache_keys() {
603 return ExternalReference(KeyedLookupCache::keys_address());
604}
605
606
607ExternalReference ExternalReference::keyed_lookup_cache_field_offsets() {
608 return ExternalReference(KeyedLookupCache::field_offsets_address());
Steve Blocka7e24c12009-10-30 11:49:00 +0000609}
610
611
612ExternalReference ExternalReference::the_hole_value_location() {
613 return ExternalReference(Factory::the_hole_value().location());
614}
615
616
617ExternalReference ExternalReference::roots_address() {
618 return ExternalReference(Heap::roots_address());
619}
620
621
Steve Blockd0582a62009-12-15 09:54:21 +0000622ExternalReference ExternalReference::address_of_stack_limit() {
Steve Blocka7e24c12009-10-30 11:49:00 +0000623 return ExternalReference(StackGuard::address_of_jslimit());
624}
625
626
Steve Blockd0582a62009-12-15 09:54:21 +0000627ExternalReference ExternalReference::address_of_real_stack_limit() {
628 return ExternalReference(StackGuard::address_of_real_jslimit());
629}
630
631
Steve Blocka7e24c12009-10-30 11:49:00 +0000632ExternalReference ExternalReference::address_of_regexp_stack_limit() {
633 return ExternalReference(RegExpStack::limit_address());
634}
635
636
637ExternalReference ExternalReference::new_space_start() {
638 return ExternalReference(Heap::NewSpaceStart());
639}
640
641
Andrei Popescu402d9372010-02-26 13:31:12 +0000642ExternalReference ExternalReference::new_space_mask() {
643 return ExternalReference(reinterpret_cast<Address>(Heap::NewSpaceMask()));
644}
645
646
Steve Blocka7e24c12009-10-30 11:49:00 +0000647ExternalReference ExternalReference::new_space_allocation_top_address() {
648 return ExternalReference(Heap::NewSpaceAllocationTopAddress());
649}
650
651
652ExternalReference ExternalReference::heap_always_allocate_scope_depth() {
653 return ExternalReference(Heap::always_allocate_scope_depth_address());
654}
655
656
657ExternalReference ExternalReference::new_space_allocation_limit_address() {
658 return ExternalReference(Heap::NewSpaceAllocationLimitAddress());
659}
660
Steve Blockd0582a62009-12-15 09:54:21 +0000661
John Reck59135872010-11-02 12:39:01 -0700662ExternalReference ExternalReference::handle_scope_level_address() {
663 return ExternalReference(HandleScope::current_level_address());
Steve Blockd0582a62009-12-15 09:54:21 +0000664}
665
666
667ExternalReference ExternalReference::handle_scope_next_address() {
668 return ExternalReference(HandleScope::current_next_address());
669}
670
671
672ExternalReference ExternalReference::handle_scope_limit_address() {
673 return ExternalReference(HandleScope::current_limit_address());
674}
675
676
677ExternalReference ExternalReference::scheduled_exception_address() {
678 return ExternalReference(Top::scheduled_exception_address());
679}
680
681
Steve Block6ded16b2010-05-10 14:33:55 +0100682#ifndef V8_INTERPRETED_REGEXP
Steve Blocka7e24c12009-10-30 11:49:00 +0000683
684ExternalReference ExternalReference::re_check_stack_guard_state() {
685 Address function;
686#ifdef V8_TARGET_ARCH_X64
687 function = FUNCTION_ADDR(RegExpMacroAssemblerX64::CheckStackGuardState);
688#elif V8_TARGET_ARCH_IA32
689 function = FUNCTION_ADDR(RegExpMacroAssemblerIA32::CheckStackGuardState);
690#elif V8_TARGET_ARCH_ARM
691 function = FUNCTION_ADDR(RegExpMacroAssemblerARM::CheckStackGuardState);
692#else
Leon Clarke4515c472010-02-03 11:58:03 +0000693 UNREACHABLE();
Steve Blocka7e24c12009-10-30 11:49:00 +0000694#endif
695 return ExternalReference(Redirect(function));
696}
697
698ExternalReference ExternalReference::re_grow_stack() {
699 return ExternalReference(
700 Redirect(FUNCTION_ADDR(NativeRegExpMacroAssembler::GrowStack)));
701}
702
703ExternalReference ExternalReference::re_case_insensitive_compare_uc16() {
704 return ExternalReference(Redirect(
705 FUNCTION_ADDR(NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16)));
706}
707
Leon Clarkee46be812010-01-19 14:06:41 +0000708ExternalReference ExternalReference::re_word_character_map() {
709 return ExternalReference(
710 NativeRegExpMacroAssembler::word_character_map_address());
711}
712
713ExternalReference ExternalReference::address_of_static_offsets_vector() {
714 return ExternalReference(OffsetsVector::static_offsets_vector_address());
715}
716
717ExternalReference ExternalReference::address_of_regexp_stack_memory_address() {
718 return ExternalReference(RegExpStack::memory_address());
719}
720
721ExternalReference ExternalReference::address_of_regexp_stack_memory_size() {
722 return ExternalReference(RegExpStack::memory_size_address());
723}
724
Steve Block6ded16b2010-05-10 14:33:55 +0100725#endif // V8_INTERPRETED_REGEXP
Steve Blocka7e24c12009-10-30 11:49:00 +0000726
727
728static double add_two_doubles(double x, double y) {
729 return x + y;
730}
731
732
733static double sub_two_doubles(double x, double y) {
734 return x - y;
735}
736
737
738static double mul_two_doubles(double x, double y) {
739 return x * y;
740}
741
742
743static double div_two_doubles(double x, double y) {
744 return x / y;
745}
746
747
748static double mod_two_doubles(double x, double y) {
Leon Clarkee46be812010-01-19 14:06:41 +0000749 return modulo(x, y);
Steve Blocka7e24c12009-10-30 11:49:00 +0000750}
751
752
Leon Clarkee46be812010-01-19 14:06:41 +0000753static int native_compare_doubles(double y, double x) {
754 if (x == y) return EQUAL;
755 return x < y ? LESS : GREATER;
Steve Blocka7e24c12009-10-30 11:49:00 +0000756}
757
758
759ExternalReference ExternalReference::double_fp_operation(
760 Token::Value operation) {
761 typedef double BinaryFPOperation(double x, double y);
762 BinaryFPOperation* function = NULL;
763 switch (operation) {
764 case Token::ADD:
765 function = &add_two_doubles;
766 break;
767 case Token::SUB:
768 function = &sub_two_doubles;
769 break;
770 case Token::MUL:
771 function = &mul_two_doubles;
772 break;
773 case Token::DIV:
774 function = &div_two_doubles;
775 break;
776 case Token::MOD:
777 function = &mod_two_doubles;
778 break;
779 default:
780 UNREACHABLE();
781 }
782 // Passing true as 2nd parameter indicates that they return an fp value.
783 return ExternalReference(Redirect(FUNCTION_ADDR(function), true));
784}
785
786
787ExternalReference ExternalReference::compare_doubles() {
788 return ExternalReference(Redirect(FUNCTION_ADDR(native_compare_doubles),
789 false));
790}
791
792
793ExternalReferenceRedirector* ExternalReference::redirector_ = NULL;
794
795
796#ifdef ENABLE_DEBUGGER_SUPPORT
797ExternalReference ExternalReference::debug_break() {
798 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break)));
799}
800
801
802ExternalReference ExternalReference::debug_step_in_fp_address() {
803 return ExternalReference(Debug::step_in_fp_addr());
804}
805#endif
806
807} } // namespace v8::internal