2 * Copyright (C) 2012 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. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #include "PolymorphicPutByIdList.h"
31 #include "StructureStubInfo.h"
35 PutByIdAccess
PutByIdAccess::fromStructureStubInfo(
36 StructureStubInfo
& stubInfo
,
37 MacroAssemblerCodePtr initialSlowPath
)
41 switch (stubInfo
.accessType
) {
42 case access_put_by_id_replace
:
43 result
.m_type
= Replace
;
44 result
.m_oldStructure
.copyFrom(stubInfo
.u
.putByIdReplace
.baseObjectStructure
);
45 result
.m_stubRoutine
= JITStubRoutine::createSelfManagedRoutine(initialSlowPath
);
48 case access_put_by_id_transition_direct
:
49 case access_put_by_id_transition_normal
:
50 result
.m_type
= Transition
;
51 result
.m_oldStructure
.copyFrom(stubInfo
.u
.putByIdTransition
.previousStructure
);
52 result
.m_newStructure
.copyFrom(stubInfo
.u
.putByIdTransition
.structure
);
53 result
.m_chain
.copyFrom(stubInfo
.u
.putByIdTransition
.chain
);
54 result
.m_stubRoutine
= stubInfo
.stubRoutine
;
58 RELEASE_ASSERT_NOT_REACHED();
64 bool PutByIdAccess::visitWeak() const
68 if (!Heap::isMarked(m_oldStructure
.get()))
72 if (!Heap::isMarked(m_oldStructure
.get()))
74 if (!Heap::isMarked(m_newStructure
.get()))
76 if (!Heap::isMarked(m_chain
.get()))
80 RELEASE_ASSERT_NOT_REACHED();
86 PolymorphicPutByIdList::PolymorphicPutByIdList(
88 StructureStubInfo
& stubInfo
,
89 MacroAssemblerCodePtr initialSlowPath
)
92 m_list
.append(PutByIdAccess::fromStructureStubInfo(stubInfo
, initialSlowPath
));
95 PolymorphicPutByIdList
* PolymorphicPutByIdList::from(
97 StructureStubInfo
& stubInfo
,
98 MacroAssemblerCodePtr initialSlowPath
)
100 if (stubInfo
.accessType
== access_put_by_id_list
)
101 return stubInfo
.u
.putByIdList
.list
;
103 ASSERT(stubInfo
.accessType
== access_put_by_id_replace
104 || stubInfo
.accessType
== access_put_by_id_transition_normal
105 || stubInfo
.accessType
== access_put_by_id_transition_direct
);
107 PolymorphicPutByIdList
* result
=
108 new PolymorphicPutByIdList(putKind
, stubInfo
, initialSlowPath
);
110 stubInfo
.initPutByIdList(result
);
115 PolymorphicPutByIdList::~PolymorphicPutByIdList() { }
117 bool PolymorphicPutByIdList::isFull() const
119 ASSERT(size() <= POLYMORPHIC_LIST_CACHE_SIZE
);
120 return size() == POLYMORPHIC_LIST_CACHE_SIZE
;
123 bool PolymorphicPutByIdList::isAlmostFull() const
125 ASSERT(size() <= POLYMORPHIC_LIST_CACHE_SIZE
);
126 return size() >= POLYMORPHIC_LIST_CACHE_SIZE
- 1;
129 void PolymorphicPutByIdList::addAccess(const PutByIdAccess
& putByIdAccess
)
132 // Make sure that the resizing optimizes for space, not time.
133 m_list
.resize(m_list
.size() + 1);
134 m_list
.last() = putByIdAccess
;
137 bool PolymorphicPutByIdList::visitWeak() const
139 for (unsigned i
= 0; i
< size(); ++i
) {
140 if (!at(i
).visitWeak())
148 #endif // ENABLE(JIT)