blob: 325a1496c98c9a26d05c9fffc1c97be132e401f0 [file] [log] [blame]
ager@chromium.org32912102009-01-16 10:38:43 +00001// Copyright 2009 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#include "v8.h"
ager@chromium.org32912102009-01-16 10:38:43 +000029#include "regexp-stack.h"
30
kasperl@chromium.org71affb52009-05-26 05:44:31 +000031namespace v8 {
32namespace internal {
ager@chromium.org32912102009-01-16 10:38:43 +000033
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000034RegExpStackScope::RegExpStackScope(Isolate* isolate)
35 : regexp_stack_(isolate->regexp_stack()) {
ager@chromium.org32912102009-01-16 10:38:43 +000036 // Initialize, if not already initialized.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000037 regexp_stack_->EnsureCapacity(0);
38}
39
40
41RegExpStackScope::~RegExpStackScope() {
42 ASSERT(Isolate::Current() == regexp_stack_->isolate_);
43 // Reset the buffer if it has grown.
44 regexp_stack_->Reset();
45}
46
47
48RegExpStack::RegExpStack()
49 : isolate_(NULL) {
ager@chromium.org32912102009-01-16 10:38:43 +000050}
51
52
53RegExpStack::~RegExpStack() {
danno@chromium.org72204d52012-10-31 10:02:10 +000054 thread_local_.Free();
ager@chromium.org32912102009-01-16 10:38:43 +000055}
56
57
58char* RegExpStack::ArchiveStack(char* to) {
59 size_t size = sizeof(thread_local_);
60 memcpy(reinterpret_cast<void*>(to),
61 &thread_local_,
62 size);
63 thread_local_ = ThreadLocal();
64 return to + size;
65}
66
67
68char* RegExpStack::RestoreStack(char* from) {
69 size_t size = sizeof(thread_local_);
70 memcpy(&thread_local_, reinterpret_cast<void*>(from), size);
71 return from + size;
72}
73
74
75void RegExpStack::Reset() {
76 if (thread_local_.memory_size_ > kMinimumStackSize) {
77 DeleteArray(thread_local_.memory_);
78 thread_local_ = ThreadLocal();
79 }
80}
81
82
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +000083void RegExpStack::ThreadLocal::Free() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000084 if (memory_size_ > 0) {
85 DeleteArray(memory_);
86 Clear();
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +000087 }
88}
89
90
ager@chromium.org32912102009-01-16 10:38:43 +000091Address RegExpStack::EnsureCapacity(size_t size) {
92 if (size > kMaximumStackSize) return NULL;
93 if (size < kMinimumStackSize) size = kMinimumStackSize;
94 if (thread_local_.memory_size_ < size) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +000095 Address new_memory = NewArray<byte>(static_cast<int>(size));
ager@chromium.org32912102009-01-16 10:38:43 +000096 if (thread_local_.memory_size_ > 0) {
97 // Copy original memory into top of new memory.
98 memcpy(reinterpret_cast<void*>(
99 new_memory + size - thread_local_.memory_size_),
100 reinterpret_cast<void*>(thread_local_.memory_),
101 thread_local_.memory_size_);
102 DeleteArray(thread_local_.memory_);
103 }
104 thread_local_.memory_ = new_memory;
105 thread_local_.memory_size_ = size;
106 thread_local_.limit_ = new_memory + kStackLimitSlack * kPointerSize;
107 }
108 return thread_local_.memory_ + thread_local_.memory_size_;
109}
110
111
ager@chromium.org32912102009-01-16 10:38:43 +0000112}} // namespace v8::internal