1 | /*
|
---|
2 | * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
|
---|
3 | *
|
---|
4 | * This library is free software; you can redistribute it and/or
|
---|
5 | * modify it under the terms of the GNU Library General Public
|
---|
6 | * License as published by the Free Software Foundation; either
|
---|
7 | * version 2 of the License, or (at your option) any later version.
|
---|
8 | *
|
---|
9 | * This library is distributed in the hope that it will be useful,
|
---|
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
12 | * Library General Public License for more details.
|
---|
13 | *
|
---|
14 | * You should have received a copy of the GNU Library General Public License
|
---|
15 | * along with this library; see the file COPYING.LIB. If not, write to
|
---|
16 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
---|
17 | * Boston, MA 02110-1301, USA.
|
---|
18 | *
|
---|
19 | */
|
---|
20 |
|
---|
21 | // This file exists to help compile the essential code of
|
---|
22 | // JavaScriptCore all as one file, for compilers and build systems
|
---|
23 | // that see a significant speed gain from this.
|
---|
24 |
|
---|
25 | #define KDE_USE_FINAL 1
|
---|
26 | #define JAVASCRIPTCORE_BUILDING_ALL_IN_ONE_FILE 1
|
---|
27 | #include "config.h"
|
---|
28 |
|
---|
29 | #include "JSStaticScopeObject.cpp"
|
---|
30 | #include "JSFunction.cpp"
|
---|
31 | #include "IndexToNameMap.cpp"
|
---|
32 | #include "Arguments.cpp"
|
---|
33 | #include "JSGlobalObjectFunctions.cpp"
|
---|
34 | #include "PrototypeFunction.cpp"
|
---|
35 | #include "GlobalEvalFunction.cpp"
|
---|
36 | #include "debugger.cpp"
|
---|
37 | #include "JSArray.cpp"
|
---|
38 | #include "ArrayConstructor.cpp"
|
---|
39 | #include "ArrayPrototype.cpp"
|
---|
40 | #include "BooleanConstructor.cpp"
|
---|
41 | #include "BooleanObject.cpp"
|
---|
42 | #include "BooleanPrototype.cpp"
|
---|
43 | #include "collector.cpp"
|
---|
44 | #include "CommonIdentifiers.cpp"
|
---|
45 | #include "DateConstructor.cpp"
|
---|
46 | #include "DateMath.cpp"
|
---|
47 | #include "DatePrototype.cpp"
|
---|
48 | #include "DateInstance.cpp"
|
---|
49 | #include "dtoa.cpp"
|
---|
50 | #include "ErrorInstance.cpp"
|
---|
51 | #include "ErrorPrototype.cpp"
|
---|
52 | #include "ErrorConstructor.cpp"
|
---|
53 | #include "FunctionConstructor.cpp"
|
---|
54 | #include "FunctionPrototype.cpp"
|
---|
55 | #include "grammar.cpp"
|
---|
56 | #include "identifier.cpp"
|
---|
57 | #include "JSString.cpp"
|
---|
58 | #include "JSNumberCell.cpp"
|
---|
59 | #include "GetterSetter.cpp"
|
---|
60 | #include "LabelStack.cpp"
|
---|
61 | #include "InternalFunction.cpp"
|
---|
62 | #include "interpreter.cpp"
|
---|
63 | #include "JSImmediate.cpp"
|
---|
64 | #include "JSLock.cpp"
|
---|
65 | #include "JSWrapperObject.cpp"
|
---|
66 | #include "lexer.cpp"
|
---|
67 | #include "ArgList.cpp"
|
---|
68 | #include "lookup.cpp"
|
---|
69 | #include "MathObject.cpp"
|
---|
70 | #include "NativeErrorConstructor.cpp"
|
---|
71 | #include "NativeErrorPrototype.cpp"
|
---|
72 | #include "NumberConstructor.cpp"
|
---|
73 | #include "NumberObject.cpp"
|
---|
74 | #include "NumberPrototype.cpp"
|
---|
75 | #include "nodes.cpp"
|
---|
76 | #include "nodes2string.cpp"
|
---|
77 | #include "JSObject.cpp"
|
---|
78 | #include "Error.cpp"
|
---|
79 | #include "JSGlobalObject.cpp"
|
---|
80 | #include "ObjectConstructor.cpp"
|
---|
81 | #include "ObjectPrototype.cpp"
|
---|
82 | #include "operations.cpp"
|
---|
83 | #include "Parser.cpp"
|
---|
84 | #include "PropertyMap.cpp"
|
---|
85 | #include "PropertySlot.cpp"
|
---|
86 | #include "PropertyNameArray.cpp"
|
---|
87 | #include "regexp.cpp"
|
---|
88 | #include "RegExpConstructor.cpp"
|
---|
89 | #include "RegExpObject.cpp"
|
---|
90 | #include "RegExpPrototype.cpp"
|
---|
91 | #include "ScopeChain.cpp"
|
---|
92 | #include "StringConstructor.cpp"
|
---|
93 | #include "StringObject.cpp"
|
---|
94 | #include "StringPrototype.cpp"
|
---|
95 | #include "ustring.cpp"
|
---|
96 | #include "JSValue.cpp"
|
---|
97 | #include "CallData.cpp"
|
---|
98 | #include "ConstructData.cpp"
|
---|
99 | #include "JSCell.cpp"
|
---|
100 | #include "JSVariableObject.cpp"
|
---|
101 | #include "wtf/FastMalloc.cpp"
|
---|
102 | #include "wtf/TCSystemAlloc.cpp"
|
---|
103 | #include "VM/CodeGenerator.cpp"
|
---|
104 | #include "VM/RegisterFile.cpp"
|
---|