]>
git.saurik.com Git - apple/javascriptcore.git/blob - heap/HandleStack.h
2 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
29 #include "Assertions.h"
30 #include "BlockStack.h"
33 #include <wtf/UnusedParam.h>
38 class HeapRootVisitor
;
50 void enterScope(Frame
&);
51 void leaveScope(Frame
&);
55 void mark(HeapRootVisitor
&);
60 HandleSlot
findFirstAfter(HandleSlot
);
65 BlockStack
<JSValue
> m_blockStack
;
69 inline void HandleStack::enterScope(Frame
& lastFrame
)
80 inline void HandleStack::zapTo(Frame
& lastFrame
)
83 UNUSED_PARAM(lastFrame
);
85 const Vector
<HandleSlot
>& blocks
= m_blockStack
.blocks();
87 if (lastFrame
.m_end
!= m_frame
.m_end
) { // Zapping to a frame in a different block.
88 int i
= blocks
.size() - 1;
89 for ( ; blocks
[i
] + m_blockStack
.blockLength
!= lastFrame
.m_end
; --i
) {
90 for (int j
= m_blockStack
.blockLength
- 1; j
>= 0; --j
)
91 blocks
[i
][j
] = JSValue();
94 for (HandleSlot it
= blocks
[i
] + m_blockStack
.blockLength
- 1; it
!= lastFrame
.m_next
- 1; --it
)
100 for (HandleSlot it
= m_frame
.m_next
- 1; it
!= lastFrame
.m_next
- 1; --it
)
105 inline void HandleStack::leaveScope(Frame
& lastFrame
)
113 if (lastFrame
.m_end
!= m_frame
.m_end
) // Popping to a frame in a different block.
114 m_blockStack
.shrink(lastFrame
.m_end
);
119 inline HandleSlot
HandleStack::push()
121 ASSERT(m_scopeDepth
); // Creating a Local outside of a LocalScope is a memory leak.
122 if (m_frame
.m_next
== m_frame
.m_end
)
124 return m_frame
.m_next
++;