Encapsulate and protect all accesses to the vtable of Heap objects
[platform/upstream/qtdeclarative.git] / src / qml / jsruntime / qv4argumentsobject_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2015 The Qt Company Ltd.
4 ** Contact: http://www.qt.io/licensing/
5 **
6 ** This file is part of the QtQml module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL21$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and The Qt Company. For licensing terms
14 ** and conditions see http://www.qt.io/terms-conditions. For further
15 ** information use the contact form at http://www.qt.io/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 or version 3 as published by the Free
20 ** Software Foundation and appearing in the file LICENSE.LGPLv21 and
21 ** LICENSE.LGPLv3 included in the packaging of this file. Please review the
22 ** following information to ensure the GNU Lesser General Public License
23 ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
24 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
25 **
26 ** As a special exception, The Qt Company gives you certain additional
27 ** rights. These rights are described in The Qt Company LGPL Exception
28 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
29 **
30 ** $QT_END_LICENSE$
31 **
32 ****************************************************************************/
33 #ifndef QV4ARGUMENTSOBJECTS_H
34 #define QV4ARGUMENTSOBJECTS_H
35
36 #include "qv4object_p.h"
37 #include "qv4functionobject_p.h"
38
39 QT_BEGIN_NAMESPACE
40
41 namespace QV4 {
42
43 namespace Heap {
44
45 struct ArgumentsGetterFunction : FunctionObject {
46     inline ArgumentsGetterFunction(QV4::ExecutionContext *scope, uint index);
47     uint index;
48 };
49
50 struct ArgumentsSetterFunction : FunctionObject {
51     inline ArgumentsSetterFunction(QV4::ExecutionContext *scope, uint index);
52     uint index;
53 };
54
55 struct ArgumentsObject : Object {
56     enum {
57         LengthPropertyIndex = 0,
58         CalleePropertyIndex = 1,
59         CallerPropertyIndex = 3
60     };
61     ArgumentsObject(QV4::CallContext *context);
62     Pointer<CallContext> context;
63     bool fullyCreated;
64     Pointer<MemberData> mappedArguments;
65 };
66
67 }
68
69 struct ArgumentsGetterFunction: FunctionObject
70 {
71     V4_OBJECT2(ArgumentsGetterFunction, FunctionObject)
72
73     uint index() const { return d()->index; }
74     static ReturnedValue call(const Managed *that, CallData *d);
75 };
76
77 inline
78 Heap::ArgumentsGetterFunction::ArgumentsGetterFunction(QV4::ExecutionContext *scope, uint index)
79     : Heap::FunctionObject(scope)
80     , index(index)
81 {
82 }
83
84 struct ArgumentsSetterFunction: FunctionObject
85 {
86     V4_OBJECT2(ArgumentsSetterFunction, FunctionObject)
87
88     uint index() const { return d()->index; }
89     static ReturnedValue call(const Managed *that, CallData *callData);
90 };
91
92 inline
93 Heap::ArgumentsSetterFunction::ArgumentsSetterFunction(QV4::ExecutionContext *scope, uint index)
94     : Heap::FunctionObject(scope)
95     , index(index)
96 {
97 }
98
99
100 struct ArgumentsObject: Object {
101     V4_OBJECT2(ArgumentsObject, Object)
102     Q_MANAGED_TYPE(ArgumentsObject)
103
104     Heap::CallContext *context() const { return d()->context; }
105     bool fullyCreated() const { return d()->fullyCreated; }
106     Heap::MemberData *mappedArguments() { return d()->mappedArguments; }
107
108     static bool isNonStrictArgumentsObject(Managed *m) {
109         return m->d()->vtable()->type == Type_ArgumentsObject &&
110                 !static_cast<ArgumentsObject *>(m)->context()->strictMode;
111     }
112
113     bool defineOwnProperty(ExecutionEngine *engine, uint index, const Property *desc, PropertyAttributes attrs);
114     static ReturnedValue getIndexed(const Managed *m, uint index, bool *hasProperty);
115     static void putIndexed(Managed *m, uint index, const Value &value);
116     static bool deleteIndexedProperty(Managed *m, uint index);
117     static PropertyAttributes queryIndexed(const Managed *m, uint index);
118     static void markObjects(Heap::Base *that, ExecutionEngine *e);
119
120     void fullyCreate();
121 };
122
123 }
124
125 QT_END_NAMESPACE
126
127 #endif
128