v8  3.25.30(node0.11.13)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
store-buffer-inl.h
Go to the documentation of this file.
1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 
28 #ifndef V8_STORE_BUFFER_INL_H_
29 #define V8_STORE_BUFFER_INL_H_
30 
31 #include "store-buffer.h"
32 
33 namespace v8 {
34 namespace internal {
35 
37  return reinterpret_cast<Address>(heap_->store_buffer_top_address());
38 }
39 
40 
42  ASSERT(!heap_->cell_space()->Contains(addr));
43  ASSERT(!heap_->code_space()->Contains(addr));
44  ASSERT(!heap_->old_data_space()->Contains(addr));
45  Address* top = reinterpret_cast<Address*>(heap_->store_buffer_top());
46  *top++ = addr;
47  heap_->public_set_store_buffer_top(top);
48  if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) {
49  ASSERT(top == limit_);
50  Compact();
51  } else {
52  ASSERT(top < limit_);
53  }
54 }
55 
56 
58  if (store_buffer_rebuilding_enabled_) {
59  SLOW_ASSERT(!heap_->cell_space()->Contains(addr) &&
60  !heap_->code_space()->Contains(addr) &&
61  !heap_->old_data_space()->Contains(addr) &&
62  !heap_->new_space()->Contains(addr));
63  Address* top = old_top_;
64  *top++ = addr;
65  old_top_ = top;
66  old_buffer_is_sorted_ = false;
67  old_buffer_is_filtered_ = false;
68  if (top >= old_limit_) {
69  ASSERT(callback_ != NULL);
70  (*callback_)(heap_,
73  }
74  }
75 }
76 
77 
78 void StoreBuffer::ClearDeadObject(HeapObject* object) {
79  Address& map_field = Memory::Address_at(object->address());
80  if (heap_->map_space()->Contains(map_field)) {
81  map_field = NULL;
82  }
83 }
84 
85 
86 } } // namespace v8::internal
87 
88 #endif // V8_STORE_BUFFER_INL_H_
byte * Address
Definition: globals.h:186
enable upcoming ES6 features enable harmony block scoping enable harmony enable harmony proxies enable harmony generators enable harmony numeric enable harmony string enable harmony math functions harmony_scoping harmony_symbols harmony_collections harmony_iteration harmony_strings harmony_scoping harmony_maths tracks arrays with only smi values Optimize object Array DOM strings and string pretenure call new trace pretenuring decisions of HAllocate instructions track fields with only smi values track fields with heap values track_fields track_fields Enables optimizations which favor memory size over execution speed use string slices optimization filter maximum number of GVN fix point iterations use function inlining use allocation folding eliminate write barriers targeting allocations in optimized code maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining crankshaft harvests type feedback from stub cache trace check elimination phase hydrogen tracing filter NULL
Definition: flags.cc:269
#define SLOW_ASSERT(condition)
Definition: checks.h:306
#define ASSERT(condition)
Definition: checks.h:329
Address * store_buffer_top_address()
Definition: heap.h:1453
void Mark(Address addr)
bool Contains(Address a)
Definition: spaces.h:2427
bool Contains(Address a)
Definition: spaces-inl.h:179
static const int kStoreBufferOverflowBit
Definition: store-buffer.h:92
static Address & Address_at(Address addr)
Definition: v8memory.h:79
static MemoryChunk * FromAnyPointerAddress(Heap *heap, Address addr)
Definition: spaces-inl.h:198
OldSpace * code_space()
Definition: heap.h:640
void public_set_store_buffer_top(Address *top)
Definition: heap.h:1442
CellSpace * cell_space()
Definition: heap.h:642
MapSpace * map_space()
Definition: heap.h:641
void EnterDirectlyIntoStoreBuffer(Address addr)
NewSpace * new_space()
Definition: heap.h:637
OldSpace * old_data_space()
Definition: heap.h:639