2 * Copyright (C) 2008 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.
26 #ifndef StructureStubInfo_h
27 #define StructureStubInfo_h
31 #include "Instruction.h"
32 #include "MacroAssembler.h"
34 #include "Structure.h"
39 access_get_by_id_self
,
40 access_get_by_id_proto
,
41 access_get_by_id_chain
,
42 access_get_by_id_self_list
,
43 access_get_by_id_proto_list
,
44 access_put_by_id_transition
,
45 access_put_by_id_replace
,
48 access_get_by_id_generic
,
49 access_put_by_id_generic
,
50 access_get_array_length
,
51 access_get_string_length
,
54 struct StructureStubInfo
{
55 StructureStubInfo(AccessType accessType
)
56 : accessType(accessType
)
61 void initGetByIdSelf(Structure
* baseObjectStructure
)
63 accessType
= access_get_by_id_self
;
65 u
.getByIdSelf
.baseObjectStructure
= baseObjectStructure
;
66 baseObjectStructure
->ref();
69 void initGetByIdProto(Structure
* baseObjectStructure
, Structure
* prototypeStructure
)
71 accessType
= access_get_by_id_proto
;
73 u
.getByIdProto
.baseObjectStructure
= baseObjectStructure
;
74 baseObjectStructure
->ref();
76 u
.getByIdProto
.prototypeStructure
= prototypeStructure
;
77 prototypeStructure
->ref();
80 void initGetByIdChain(Structure
* baseObjectStructure
, StructureChain
* chain
)
82 accessType
= access_get_by_id_chain
;
84 u
.getByIdChain
.baseObjectStructure
= baseObjectStructure
;
85 baseObjectStructure
->ref();
87 u
.getByIdChain
.chain
= chain
;
91 void initGetByIdSelfList(PolymorphicAccessStructureList
* structureList
, int listSize
)
93 accessType
= access_get_by_id_self_list
;
95 u
.getByIdProtoList
.structureList
= structureList
;
96 u
.getByIdProtoList
.listSize
= listSize
;
99 void initGetByIdProtoList(PolymorphicAccessStructureList
* structureList
, int listSize
)
101 accessType
= access_get_by_id_proto_list
;
103 u
.getByIdProtoList
.structureList
= structureList
;
104 u
.getByIdProtoList
.listSize
= listSize
;
109 void initPutByIdTransition(Structure
* previousStructure
, Structure
* structure
, StructureChain
* chain
)
111 accessType
= access_put_by_id_transition
;
113 u
.putByIdTransition
.previousStructure
= previousStructure
;
114 previousStructure
->ref();
116 u
.putByIdTransition
.structure
= structure
;
119 u
.putByIdTransition
.chain
= chain
;
123 void initPutByIdReplace(Structure
* baseObjectStructure
)
125 accessType
= access_put_by_id_replace
;
127 u
.putByIdReplace
.baseObjectStructure
= baseObjectStructure
;
128 baseObjectStructure
->ref();
148 Structure
* baseObjectStructure
;
151 Structure
* baseObjectStructure
;
152 Structure
* prototypeStructure
;
155 Structure
* baseObjectStructure
;
156 StructureChain
* chain
;
159 PolymorphicAccessStructureList
* structureList
;
163 PolymorphicAccessStructureList
* structureList
;
167 Structure
* previousStructure
;
168 Structure
* structure
;
169 StructureChain
* chain
;
172 Structure
* baseObjectStructure
;
176 CodeLocationLabel stubRoutine
;
177 CodeLocationCall callReturnLocation
;
178 CodeLocationLabel hotPathBegin
;
185 #endif // StructureStubInfo_h