1javascriptcore_h_api += \
2	Source/JavaScriptCore/API/JSBase.h \
3	Source/JavaScriptCore/API/JSContextRef.h \
4	Source/JavaScriptCore/API/JSObjectRef.h \
5	Source/JavaScriptCore/API/JSStringRef.h \
6	Source/JavaScriptCore/API/JSValueRef.h \
7	Source/JavaScriptCore/API/JavaScript.h \
8	Source/JavaScriptCore/API/WebKitAvailability.h
9
10javascriptcore_built_nosources += \
11	DerivedSources/JavaScriptCore/KeywordLookup.h \
12	DerivedSources/JavaScriptCore/Lexer.lut.h \
13	DerivedSources/JavaScriptCore/RegExpJitTables.h \
14	DerivedSources/JavaScriptCore/ArrayConstructor.lut.h \
15	DerivedSources/JavaScriptCore/ArrayPrototype.lut.h \
16	DerivedSources/JavaScriptCore/BooleanPrototype.lut.h \
17	DerivedSources/JavaScriptCore/DateConstructor.lut.h \
18	DerivedSources/JavaScriptCore/DatePrototype.lut.h \
19	DerivedSources/JavaScriptCore/ErrorPrototype.lut.h \
20	DerivedSources/JavaScriptCore/JSGlobalObject.lut.h \
21	DerivedSources/JavaScriptCore/JSONObject.lut.h \
22	DerivedSources/JavaScriptCore/MathObject.lut.h \
23	DerivedSources/JavaScriptCore/NamePrototype.lut.h \
24	DerivedSources/JavaScriptCore/NumberConstructor.lut.h \
25	DerivedSources/JavaScriptCore/NumberPrototype.lut.h \
26	DerivedSources/JavaScriptCore/ObjectConstructor.lut.h \
27	DerivedSources/JavaScriptCore/RegExpConstructor.lut.h \
28	DerivedSources/JavaScriptCore/RegExpObject.lut.h \
29	DerivedSources/JavaScriptCore/RegExpPrototype.lut.h \
30	DerivedSources/JavaScriptCore/StringConstructor.lut.h \
31	DerivedSources/JavaScriptCore/LLIntDesiredOffsets.h \
32	DerivedSources/JavaScriptCore/LLIntAssembly.h
33
34javascriptcore_sources += \
35	Source/JavaScriptCore/API/APICast.h \
36	Source/JavaScriptCore/API/APIShims.h \
37    Source/JavaScriptCore/API/JSAPIWrapperObject.h \
38	Source/JavaScriptCore/API/JSBase.cpp \
39	Source/JavaScriptCore/API/JSBasePrivate.h \
40	Source/JavaScriptCore/API/JSCallbackConstructor.cpp \
41	Source/JavaScriptCore/API/JSCallbackConstructor.h \
42	Source/JavaScriptCore/API/JSCallbackFunction.cpp \
43	Source/JavaScriptCore/API/JSCallbackFunction.h \
44	Source/JavaScriptCore/API/JSCallbackObject.cpp \
45	Source/JavaScriptCore/API/JSCallbackObjectFunctions.h \
46	Source/JavaScriptCore/API/JSCallbackObject.h \
47	Source/JavaScriptCore/API/JSClassRef.cpp \
48	Source/JavaScriptCore/API/JSClassRef.h \
49	Source/JavaScriptCore/API/JSContextRef.cpp \
50	Source/JavaScriptCore/API/JSContextRefPrivate.h \
51	Source/JavaScriptCore/API/JSObjectRef.cpp \
52	Source/JavaScriptCore/API/JSObjectRefPrivate.h \
53	Source/JavaScriptCore/API/JSRetainPtr.h \
54	Source/JavaScriptCore/API/JSScriptRef.cpp \
55	Source/JavaScriptCore/API/JSScriptRefPrivate.h \
56	Source/JavaScriptCore/API/JSStringRef.cpp \
57	Source/JavaScriptCore/API/JSValueRef.cpp \
58	Source/JavaScriptCore/API/JSWeakObjectMapRefInternal.h \
59    Source/JavaScriptCore/API/ObjCCallbackFunction.h \
60	Source/JavaScriptCore/API/OpaqueJSString.cpp \
61	Source/JavaScriptCore/API/OpaqueJSString.h \
62	Source/JavaScriptCore/assembler/AbstractMacroAssembler.h \
63	Source/JavaScriptCore/assembler/ARMAssembler.cpp \
64	Source/JavaScriptCore/assembler/ARMAssembler.h \
65	Source/JavaScriptCore/assembler/ARMv7Assembler.cpp \
66	Source/JavaScriptCore/assembler/ARMv7Assembler.h \
67	Source/JavaScriptCore/assembler/AssemblerBuffer.h \
68	Source/JavaScriptCore/assembler/AssemblerBufferWithConstantPool.h \
69	Source/JavaScriptCore/assembler/CodeLocation.h \
70	Source/JavaScriptCore/assembler/LinkBuffer.cpp \
71	Source/JavaScriptCore/assembler/LinkBuffer.h \
72	Source/JavaScriptCore/assembler/MacroAssembler.cpp \
73	Source/JavaScriptCore/assembler/MacroAssembler.h \
74	Source/JavaScriptCore/assembler/MacroAssemblerARM.cpp \
75	Source/JavaScriptCore/assembler/MacroAssemblerARM.h \
76	Source/JavaScriptCore/assembler/MacroAssemblerARMv7.h \
77	Source/JavaScriptCore/assembler/MacroAssemblerCodeRef.h \
78	Source/JavaScriptCore/assembler/MacroAssemblerMIPS.h \
79	Source/JavaScriptCore/assembler/MacroAssemblerSH4.h \
80	Source/JavaScriptCore/assembler/MacroAssemblerX86.h \
81	Source/JavaScriptCore/assembler/MacroAssemblerX86Common.h \
82	Source/JavaScriptCore/assembler/MacroAssemblerX86_64.h \
83	Source/JavaScriptCore/assembler/MIPSAssembler.h \
84	Source/JavaScriptCore/assembler/RepatchBuffer.h \
85	Source/JavaScriptCore/assembler/SH4Assembler.h \
86	Source/JavaScriptCore/assembler/X86Assembler.h \
87	Source/JavaScriptCore/bytecode/ArrayAllocationProfile.cpp \
88	Source/JavaScriptCore/bytecode/ArrayAllocationProfile.h \
89	Source/JavaScriptCore/bytecode/ArrayProfile.cpp \
90	Source/JavaScriptCore/bytecode/ArrayProfile.h \
91	Source/JavaScriptCore/bytecode/ByValInfo.h \
92	Source/JavaScriptCore/bytecode/BytecodeConventions.h \
93	Source/JavaScriptCore/bytecode/CallLinkInfo.cpp \
94	Source/JavaScriptCore/bytecode/CallLinkInfo.h \
95	Source/JavaScriptCore/bytecode/CallLinkStatus.cpp \
96	Source/JavaScriptCore/bytecode/CallLinkStatus.h \
97	Source/JavaScriptCore/bytecode/CallReturnOffsetToBytecodeOffset.h \
98	Source/JavaScriptCore/bytecode/CodeType.cpp \
99	Source/JavaScriptCore/bytecode/CodeType.h \
100	Source/JavaScriptCore/bytecode/CodeBlock.cpp \
101	Source/JavaScriptCore/bytecode/CodeBlock.h \
102	Source/JavaScriptCore/bytecode/CodeBlockHash.cpp \
103	Source/JavaScriptCore/bytecode/CodeBlockHash.h \
104	Source/JavaScriptCore/bytecode/CodeBlockWithJITType.h \
105	Source/JavaScriptCore/bytecode/CodeOrigin.cpp \
106	Source/JavaScriptCore/bytecode/CodeOrigin.h \
107	Source/JavaScriptCore/bytecode/DataFormat.h \
108	Source/JavaScriptCore/bytecode/DFGExitProfile.cpp \
109	Source/JavaScriptCore/bytecode/DFGExitProfile.h \
110	Source/JavaScriptCore/bytecode/EvalCodeCache.h \
111	Source/JavaScriptCore/bytecode/ExecutionCounter.cpp \
112	Source/JavaScriptCore/bytecode/ExecutionCounter.h \
113	Source/JavaScriptCore/bytecode/ExitKind.cpp \
114	Source/JavaScriptCore/bytecode/ExitKind.h \
115	Source/JavaScriptCore/bytecode/ExpressionRangeInfo.h \
116	Source/JavaScriptCore/bytecode/GetByIdStatus.cpp \
117	Source/JavaScriptCore/bytecode/GetByIdStatus.h \
118	Source/JavaScriptCore/bytecode/HandlerInfo.h \
119	Source/JavaScriptCore/bytecode/Instruction.h \
120	Source/JavaScriptCore/bytecode/JumpTable.cpp \
121	Source/JavaScriptCore/bytecode/JumpTable.h \
122	Source/JavaScriptCore/bytecode/LLIntCallLinkInfo.h \
123	Source/JavaScriptCore/bytecode/LazyOperandValueProfile.cpp \
124	Source/JavaScriptCore/bytecode/LazyOperandValueProfile.h \
125	Source/JavaScriptCore/bytecode/LineInfo.h \
126	Source/JavaScriptCore/bytecode/MethodOfGettingAValueProfile.cpp \
127	Source/JavaScriptCore/bytecode/MethodOfGettingAValueProfile.h \
128	Source/JavaScriptCore/bytecode/ObjectAllocationProfile.h \
129	Source/JavaScriptCore/bytecode/Opcode.cpp \
130	Source/JavaScriptCore/bytecode/Opcode.h \
131	Source/JavaScriptCore/bytecode/Operands.h \
132	Source/JavaScriptCore/bytecode/PolymorphicAccessStructureList.h \
133	Source/JavaScriptCore/bytecode/PolymorphicPutByIdList.cpp \
134	Source/JavaScriptCore/bytecode/PolymorphicPutByIdList.h \
135	Source/JavaScriptCore/bytecode/PreciseJumpTargets.cpp \
136	Source/JavaScriptCore/bytecode/PreciseJumpTargets.h \
137	Source/JavaScriptCore/bytecode/SpeculatedType.cpp \
138	Source/JavaScriptCore/bytecode/SpeculatedType.h \
139	Source/JavaScriptCore/bytecode/PutByIdStatus.cpp \
140	Source/JavaScriptCore/bytecode/PutByIdStatus.h \
141	Source/JavaScriptCore/bytecode/PutKind.h \
142	Source/JavaScriptCore/bytecode/ReduceWhitespace.cpp \
143	Source/JavaScriptCore/bytecode/ReduceWhitespace.h \
144	Source/JavaScriptCore/bytecode/ResolveGlobalStatus.cpp \
145	Source/JavaScriptCore/bytecode/ResolveGlobalStatus.h \
146	Source/JavaScriptCore/bytecode/ResolveOperation.h \
147	Source/JavaScriptCore/bytecode/SamplingTool.cpp \
148	Source/JavaScriptCore/bytecode/SamplingTool.h \
149	Source/JavaScriptCore/bytecode/SpecialPointer.cpp \
150	Source/JavaScriptCore/bytecode/SpecialPointer.h \
151	Source/JavaScriptCore/bytecode/StructureSet.h \
152	Source/JavaScriptCore/bytecode/StructureStubInfo.cpp \
153	Source/JavaScriptCore/bytecode/StructureStubInfo.h \
154	Source/JavaScriptCore/bytecode/StructureStubClearingWatchpoint.cpp \
155	Source/JavaScriptCore/bytecode/StructureStubClearingWatchpoint.h \
156	Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.cpp \
157	Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h \
158	Source/JavaScriptCore/bytecode/ValueProfile.h \
159	Source/JavaScriptCore/bytecode/ValueRecovery.h \
160	Source/JavaScriptCore/bytecode/VirtualRegister.h \
161	Source/JavaScriptCore/bytecode/Watchpoint.cpp \
162	Source/JavaScriptCore/bytecode/Watchpoint.h \
163	Source/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp \
164	Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h \
165	Source/JavaScriptCore/bytecompiler/Label.h \
166	Source/JavaScriptCore/bytecompiler/LabelScope.h \
167	Source/JavaScriptCore/bytecompiler/NodesCodegen.cpp \
168	Source/JavaScriptCore/bytecompiler/RegisterID.h \
169	Source/JavaScriptCore/bytecompiler/StaticPropertyAnalysis.h \
170	Source/JavaScriptCore/bytecompiler/StaticPropertyAnalyzer.h \
171	Source/JavaScriptCore/dfg/DFGAbstractState.cpp \
172	Source/JavaScriptCore/dfg/DFGAbstractState.h \
173	Source/JavaScriptCore/dfg/DFGAbstractValue.h \
174	Source/JavaScriptCore/dfg/DFGAdjacencyList.h \
175	Source/JavaScriptCore/dfg/DFGAllocator.h \
176	Source/JavaScriptCore/dfg/DFGArgumentPosition.h \
177	Source/JavaScriptCore/dfg/DFGArgumentsSimplificationPhase.cpp \
178	Source/JavaScriptCore/dfg/DFGArgumentsSimplificationPhase.h \
179	Source/JavaScriptCore/dfg/DFGArrayMode.cpp \
180	Source/JavaScriptCore/dfg/DFGArrayMode.h \
181	Source/JavaScriptCore/dfg/DFGArrayifySlowPathGenerator.h \
182	Source/JavaScriptCore/dfg/DFGAssemblyHelpers.cpp \
183	Source/JavaScriptCore/dfg/DFGAssemblyHelpers.h \
184	Source/JavaScriptCore/dfg/DFGBackwardsPropagationPhase.cpp \
185	Source/JavaScriptCore/dfg/DFGBackwardsPropagationPhase.h \
186	Source/JavaScriptCore/dfg/DFGBasicBlock.h \
187	Source/JavaScriptCore/dfg/DFGBasicBlockInlines.h \
188	Source/JavaScriptCore/dfg/DFGBranchDirection.h \
189	Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp \
190	Source/JavaScriptCore/dfg/DFGByteCodeParser.h \
191	Source/JavaScriptCore/dfg/DFGCCallHelpers.h \
192	Source/JavaScriptCore/dfg/DFGCFGSimplificationPhase.cpp \
193	Source/JavaScriptCore/dfg/DFGCFGSimplificationPhase.h \
194	Source/JavaScriptCore/dfg/DFGCallArrayAllocatorSlowPathGenerator.h \
195	Source/JavaScriptCore/dfg/DFGCapabilities.cpp \
196	Source/JavaScriptCore/dfg/DFGCapabilities.h \
197	Source/JavaScriptCore/dfg/DFGCFAPhase.cpp \
198	Source/JavaScriptCore/dfg/DFGCFAPhase.h \
199	Source/JavaScriptCore/dfg/DFGCPSRethreadingPhase.cpp \
200	Source/JavaScriptCore/dfg/DFGCPSRethreadingPhase.h \
201	Source/JavaScriptCore/dfg/DFGCommon.cpp \
202	Source/JavaScriptCore/dfg/DFGCommon.h \
203	Source/JavaScriptCore/dfg/DFGConstantFoldingPhase.cpp \
204	Source/JavaScriptCore/dfg/DFGConstantFoldingPhase.h \
205	Source/JavaScriptCore/dfg/DFGCSEPhase.cpp \
206	Source/JavaScriptCore/dfg/DFGCSEPhase.h \
207	Source/JavaScriptCore/dfg/DFGDCEPhase.cpp \
208	Source/JavaScriptCore/dfg/DFGDCEPhase.h \
209	Source/JavaScriptCore/dfg/DFGDisassembler.cpp \
210	Source/JavaScriptCore/dfg/DFGDisassembler.h \
211	Source/JavaScriptCore/dfg/DFGDominators.cpp \
212	Source/JavaScriptCore/dfg/DFGDominators.h \
213	Source/JavaScriptCore/dfg/DFGDoubleFormatState.h \
214	Source/JavaScriptCore/dfg/DFGDriver.cpp \
215	Source/JavaScriptCore/dfg/DFGDriver.h \
216	Source/JavaScriptCore/dfg/DFGEdge.cpp \
217	Source/JavaScriptCore/dfg/DFGEdge.h \
218	Source/JavaScriptCore/dfg/DFGFPRInfo.h \
219	Source/JavaScriptCore/dfg/DFGFixupPhase.cpp \
220	Source/JavaScriptCore/dfg/DFGFixupPhase.h \
221	Source/JavaScriptCore/dfg/DFGGenerationInfo.h \
222	Source/JavaScriptCore/dfg/DFGGPRInfo.h \
223	Source/JavaScriptCore/dfg/DFGGraph.cpp \
224	Source/JavaScriptCore/dfg/DFGGraph.h \
225	Source/JavaScriptCore/dfg/DFGInsertionSet.h \
226	Source/JavaScriptCore/dfg/DFGJITCompiler.cpp \
227	Source/JavaScriptCore/dfg/DFGJITCompiler.h \
228	Source/JavaScriptCore/dfg/DFGLongLivedState.cpp \
229	Source/JavaScriptCore/dfg/DFGLongLivedState.h \
230	Source/JavaScriptCore/dfg/DFGMinifiedGraph.h \
231	Source/JavaScriptCore/dfg/DFGMinifiedID.h \
232	Source/JavaScriptCore/dfg/DFGMinifiedNode.cpp \
233	Source/JavaScriptCore/dfg/DFGMinifiedNode.h \
234	Source/JavaScriptCore/dfg/DFGNode.cpp \
235	Source/JavaScriptCore/dfg/DFGNode.h \
236	Source/JavaScriptCore/dfg/DFGNodeAllocator.h \
237	Source/JavaScriptCore/dfg/DFGNodeFlags.cpp \
238	Source/JavaScriptCore/dfg/DFGNodeFlags.h \
239	Source/JavaScriptCore/dfg/DFGNodeType.h \
240	Source/JavaScriptCore/dfg/DFGOperations.cpp \
241	Source/JavaScriptCore/dfg/DFGOperations.h \
242	Source/JavaScriptCore/dfg/DFGOSREntry.cpp \
243	Source/JavaScriptCore/dfg/DFGOSREntry.h \
244	Source/JavaScriptCore/dfg/DFGOSRExitCompiler32_64.cpp \
245	Source/JavaScriptCore/dfg/DFGOSRExitCompiler64.cpp \
246	Source/JavaScriptCore/dfg/DFGOSRExitCompiler.cpp \
247	Source/JavaScriptCore/dfg/DFGOSRExitCompiler.h \
248	Source/JavaScriptCore/dfg/DFGOSRExit.h \
249	Source/JavaScriptCore/dfg/DFGOSRExit.cpp \
250	Source/JavaScriptCore/dfg/DFGOSRExitCompilationInfo.h \
251	Source/JavaScriptCore/dfg/DFGOSRExitJumpPlaceholder.cpp \
252	Source/JavaScriptCore/dfg/DFGOSRExitJumpPlaceholder.h \
253	Source/JavaScriptCore/dfg/DFGPhase.cpp \
254	Source/JavaScriptCore/dfg/DFGPhase.h \
255	Source/JavaScriptCore/dfg/DFGPredictionPropagationPhase.cpp \
256	Source/JavaScriptCore/dfg/DFGPredictionPropagationPhase.h \
257	Source/JavaScriptCore/dfg/DFGPredictionInjectionPhase.cpp \
258	Source/JavaScriptCore/dfg/DFGPredictionInjectionPhase.h \
259	Source/JavaScriptCore/dfg/DFGRegisterBank.h \
260	Source/JavaScriptCore/dfg/DFGRegisterSet.h \
261	Source/JavaScriptCore/dfg/DFGRepatch.cpp \
262	Source/JavaScriptCore/dfg/DFGRepatch.h \
263	Source/JavaScriptCore/dfg/DFGScoreBoard.h \
264	Source/JavaScriptCore/dfg/DFGScratchRegisterAllocator.h \
265	Source/JavaScriptCore/dfg/DFGSilentRegisterSavePlan.h \
266	Source/JavaScriptCore/dfg/DFGSlowPathGenerator.h \
267	Source/JavaScriptCore/dfg/DFGSpeculativeJIT32_64.cpp \
268	Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp \
269	Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp \
270	Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h \
271	Source/JavaScriptCore/dfg/DFGStructureAbstractValue.h \
272	Source/JavaScriptCore/dfg/DFGTypeCheckHoistingPhase.cpp \
273	Source/JavaScriptCore/dfg/DFGTypeCheckHoistingPhase.h \
274	Source/JavaScriptCore/dfg/DFGThunks.cpp \
275	Source/JavaScriptCore/dfg/DFGThunks.h \
276	Source/JavaScriptCore/dfg/DFGUnificationPhase.cpp \
277	Source/JavaScriptCore/dfg/DFGUnificationPhase.h \
278	Source/JavaScriptCore/dfg/DFGUseKind.cpp \
279	Source/JavaScriptCore/dfg/DFGUseKind.h \
280	Source/JavaScriptCore/dfg/DFGValueRecoveryOverride.h \
281	Source/JavaScriptCore/dfg/DFGValueSource.cpp \
282	Source/JavaScriptCore/dfg/DFGValueSource.h \
283	Source/JavaScriptCore/dfg/DFGVariableEvent.cpp \
284	Source/JavaScriptCore/dfg/DFGVariableEvent.h \
285	Source/JavaScriptCore/dfg/DFGVariableEventStream.cpp \
286	Source/JavaScriptCore/dfg/DFGVariableEventStream.h \
287	Source/JavaScriptCore/dfg/DFGValidate.cpp \
288	Source/JavaScriptCore/dfg/DFGValidate.h \
289	Source/JavaScriptCore/dfg/DFGVariableAccessData.h \
290	Source/JavaScriptCore/dfg/DFGVariableAccessDataDump.cpp \
291	Source/JavaScriptCore/dfg/DFGVariableAccessDataDump.h \
292	Source/JavaScriptCore/dfg/DFGVariadicFunction.h \
293	Source/JavaScriptCore/dfg/DFGVirtualRegisterAllocationPhase.cpp \
294	Source/JavaScriptCore/dfg/DFGVirtualRegisterAllocationPhase.h \
295	Source/JavaScriptCore/disassembler/Disassembler.cpp \
296	Source/JavaScriptCore/disassembler/Disassembler.h \
297	Source/JavaScriptCore/heap/CopiedAllocator.h \
298	Source/JavaScriptCore/heap/CopiedBlock.h \
299	Source/JavaScriptCore/heap/CopiedBlockInlines.h \
300	Source/JavaScriptCore/heap/CopiedSpace.cpp \
301	Source/JavaScriptCore/heap/CopiedSpace.h \
302	Source/JavaScriptCore/heap/CopiedSpaceInlines.h \
303	Source/JavaScriptCore/heap/CopyVisitor.h \
304	Source/JavaScriptCore/heap/CopyVisitorInlines.h \
305	Source/JavaScriptCore/heap/CopyVisitor.cpp \
306	Source/JavaScriptCore/heap/CopyWorkList.h \
307	Source/JavaScriptCore/heap/ConservativeRoots.cpp \
308	Source/JavaScriptCore/heap/ConservativeRoots.h \
309	Source/JavaScriptCore/heap/DFGCodeBlocks.cpp \
310	Source/JavaScriptCore/heap/DFGCodeBlocks.h \
311	Source/JavaScriptCore/heap/GCAssertions.h \
312	Source/JavaScriptCore/heap/Handle.h \
313	Source/JavaScriptCore/heap/HandleBlock.h \
314	Source/JavaScriptCore/heap/HandleBlockInlines.h \
315	Source/JavaScriptCore/heap/HandleSet.cpp \
316	Source/JavaScriptCore/heap/HandleSet.h \
317	Source/JavaScriptCore/heap/HeapBlock.h \
318	Source/JavaScriptCore/heap/HeapTimer.h \
319	Source/JavaScriptCore/heap/HeapTimer.cpp \
320	Source/JavaScriptCore/heap/IncrementalSweeper.h \
321	Source/JavaScriptCore/heap/IncrementalSweeper.cpp \
322	Source/JavaScriptCore/heap/SlotVisitor.cpp \
323	Source/JavaScriptCore/heap/SlotVisitor.h \
324	Source/JavaScriptCore/heap/SlotVisitorInlines.h \
325	Source/JavaScriptCore/heap/HandleStack.cpp \
326	Source/JavaScriptCore/heap/HandleStack.h \
327	Source/JavaScriptCore/heap/HandleTypes.h \
328	Source/JavaScriptCore/heap/BlockAllocator.cpp \
329	Source/JavaScriptCore/heap/BlockAllocator.h \
330	Source/JavaScriptCore/heap/GCThreadSharedData.cpp \
331	Source/JavaScriptCore/heap/GCThreadSharedData.h \
332	Source/JavaScriptCore/heap/GCThread.cpp \
333	Source/JavaScriptCore/heap/GCThread.h \
334	Source/JavaScriptCore/heap/Heap.cpp \
335	Source/JavaScriptCore/heap/Heap.h \
336	Source/JavaScriptCore/heap/HeapStatistics.cpp \
337	Source/JavaScriptCore/heap/HeapStatistics.h \
338	Source/JavaScriptCore/heap/JITStubRoutineSet.cpp \
339	Source/JavaScriptCore/heap/JITStubRoutineSet.h \
340	Source/JavaScriptCore/heap/ListableHandler.h \
341	Source/JavaScriptCore/heap/Local.h \
342	Source/JavaScriptCore/heap/LocalScope.h \
343	Source/JavaScriptCore/heap/MachineStackMarker.cpp \
344	Source/JavaScriptCore/heap/MachineStackMarker.h \
345	Source/JavaScriptCore/heap/MarkStack.cpp \
346	Source/JavaScriptCore/heap/MarkStack.h \
347	Source/JavaScriptCore/heap/MarkStackInlines.h \
348	Source/JavaScriptCore/heap/HeapRootVisitor.h \
349	Source/JavaScriptCore/heap/MarkedAllocator.cpp \
350	Source/JavaScriptCore/heap/MarkedAllocator.h \
351	Source/JavaScriptCore/heap/MarkedBlock.cpp \
352	Source/JavaScriptCore/heap/MarkedBlock.h \
353	Source/JavaScriptCore/heap/MarkedBlockSet.h \
354	Source/JavaScriptCore/heap/TinyBloomFilter.h \
355	Source/JavaScriptCore/heap/MarkedSpace.cpp \
356	Source/JavaScriptCore/heap/MarkedSpace.h \
357	Source/JavaScriptCore/heap/PassWeak.h \
358	Source/JavaScriptCore/heap/Region.h \
359	Source/JavaScriptCore/heap/Strong.h \
360	Source/JavaScriptCore/heap/StrongInlines.h \
361	Source/JavaScriptCore/heap/SuperRegion.cpp \
362	Source/JavaScriptCore/heap/SuperRegion.h \
363	Source/JavaScriptCore/heap/UnconditionalFinalizer.h \
364	Source/JavaScriptCore/heap/VTableSpectrum.cpp \
365	Source/JavaScriptCore/heap/VTableSpectrum.h \
366	Source/JavaScriptCore/heap/Weak.cpp \
367	Source/JavaScriptCore/heap/Weak.h \
368	Source/JavaScriptCore/heap/WeakBlock.cpp \
369	Source/JavaScriptCore/heap/WeakBlock.h \
370	Source/JavaScriptCore/heap/WeakHandleOwner.cpp \
371	Source/JavaScriptCore/heap/WeakHandleOwner.h \
372	Source/JavaScriptCore/heap/WeakImpl.h \
373	Source/JavaScriptCore/heap/WeakInlines.h \
374	Source/JavaScriptCore/heap/WeakSet.cpp \
375	Source/JavaScriptCore/heap/WeakSet.h \
376	Source/JavaScriptCore/heap/WeakSetInlines.h \
377	Source/JavaScriptCore/heap/WeakReferenceHarvester.h \
378	Source/JavaScriptCore/heap/WriteBarrierSupport.cpp \
379	Source/JavaScriptCore/heap/WriteBarrierSupport.h \
380	Source/JavaScriptCore/config.h \
381	Source/JavaScriptCore/debugger/DebuggerActivation.cpp \
382	Source/JavaScriptCore/debugger/DebuggerActivation.h \
383	Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp \
384	Source/JavaScriptCore/debugger/DebuggerCallFrame.h \
385	Source/JavaScriptCore/debugger/Debugger.cpp \
386	Source/JavaScriptCore/debugger/Debugger.h \
387	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/APICast.h \
388	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/APIShims.h \
389	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JavaScript.h \
390	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSBase.h \
391	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSContextRef.h \
392	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSObjectRef.h \
393	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSRetainPtr.h \
394	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSStringRef.h \
395	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSValueRef.h \
396	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/OpaqueJSString.h \
397	Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/WebKitAvailability.h \
398	Source/JavaScriptCore/icu/unicode/parseerr.h \
399	Source/JavaScriptCore/icu/unicode/platform.h \
400	Source/JavaScriptCore/icu/unicode/putil.h \
401	Source/JavaScriptCore/icu/unicode/uchar.h \
402	Source/JavaScriptCore/icu/unicode/ucnv_err.h \
403	Source/JavaScriptCore/icu/unicode/ucnv.h \
404	Source/JavaScriptCore/icu/unicode/ucol.h \
405	Source/JavaScriptCore/icu/unicode/uconfig.h \
406	Source/JavaScriptCore/icu/unicode/uenum.h \
407	Source/JavaScriptCore/icu/unicode/uiter.h \
408	Source/JavaScriptCore/icu/unicode/uloc.h \
409	Source/JavaScriptCore/icu/unicode/umachine.h \
410	Source/JavaScriptCore/icu/unicode/unorm.h \
411	Source/JavaScriptCore/icu/unicode/urename.h \
412	Source/JavaScriptCore/icu/unicode/uset.h \
413	Source/JavaScriptCore/icu/unicode/ustring.h \
414	Source/JavaScriptCore/icu/unicode/utf16.h \
415	Source/JavaScriptCore/icu/unicode/utf8.h \
416	Source/JavaScriptCore/icu/unicode/utf.h \
417	Source/JavaScriptCore/icu/unicode/utf_old.h \
418	Source/JavaScriptCore/icu/unicode/utypes.h \
419	Source/JavaScriptCore/icu/unicode/uversion.h \
420	Source/JavaScriptCore/interpreter/AbstractPC.cpp \
421	Source/JavaScriptCore/interpreter/AbstractPC.h \
422	Source/JavaScriptCore/interpreter/CachedCall.h \
423	Source/JavaScriptCore/interpreter/CallFrameClosure.h \
424	Source/JavaScriptCore/interpreter/CallFrame.cpp \
425	Source/JavaScriptCore/interpreter/CallFrame.h \
426	Source/JavaScriptCore/interpreter/Interpreter.cpp \
427	Source/JavaScriptCore/interpreter/Interpreter.h \
428	Source/JavaScriptCore/interpreter/JSStack.cpp \
429	Source/JavaScriptCore/interpreter/JSStack.h \
430	Source/JavaScriptCore/interpreter/JSStackInlines.h \
431	Source/JavaScriptCore/interpreter/Register.h \
432	Source/JavaScriptCore/interpreter/VMInspector.cpp \
433	Source/JavaScriptCore/interpreter/VMInspector.h \
434	Source/JavaScriptCore/JavaScriptCorePrefix.h \
435	Source/JavaScriptCore/jit/CompactJITCodeMap.h \
436	Source/JavaScriptCore/jit/ClosureCallStubRoutine.cpp \
437	Source/JavaScriptCore/jit/ClosureCallStubRoutine.h \
438	Source/JavaScriptCore/jit/ExecutableAllocator.cpp \
439	Source/JavaScriptCore/jit/ExecutableAllocator.h \
440	Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp \
441	Source/JavaScriptCore/jit/GCAwareJITStubRoutine.cpp \
442	Source/JavaScriptCore/jit/GCAwareJITStubRoutine.h \
443	Source/JavaScriptCore/jit/HostCallReturnValue.cpp \
444	Source/JavaScriptCore/jit/HostCallReturnValue.h \
445	Source/JavaScriptCore/jit/JITArithmetic32_64.cpp \
446	Source/JavaScriptCore/jit/JITArithmetic.cpp \
447	Source/JavaScriptCore/jit/JITCall32_64.cpp \
448	Source/JavaScriptCore/jit/JITCall.cpp \
449	Source/JavaScriptCore/jit/JITCode.cpp \
450	Source/JavaScriptCore/jit/JITCode.h \
451	Source/JavaScriptCore/jit/JITCompilationEffort.h \
452	Source/JavaScriptCore/jit/JITDisassembler.cpp \
453	Source/JavaScriptCore/jit/JITDisassembler.h \
454	Source/JavaScriptCore/jit/JITDriver.h \
455	Source/JavaScriptCore/jit/JIT.cpp \
456	Source/JavaScriptCore/jit/JIT.h \
457	Source/JavaScriptCore/jit/JITExceptions.cpp \
458	Source/JavaScriptCore/jit/JITExceptions.h \
459	Source/JavaScriptCore/jit/JITInlines.h \
460	Source/JavaScriptCore/jit/JITOpcodes32_64.cpp \
461	Source/JavaScriptCore/jit/JITOpcodes.cpp \
462	Source/JavaScriptCore/jit/JITPropertyAccess32_64.cpp \
463	Source/JavaScriptCore/jit/JITPropertyAccess.cpp \
464	Source/JavaScriptCore/jit/JITStubCall.h \
465	Source/JavaScriptCore/jit/JITStubRoutine.cpp \
466	Source/JavaScriptCore/jit/JITStubRoutine.h \
467	Source/JavaScriptCore/jit/JITStubs.cpp \
468	Source/JavaScriptCore/jit/JITStubs.h \
469	Source/JavaScriptCore/jit/JITThunks.cpp \
470	Source/JavaScriptCore/jit/JITThunks.h \
471	Source/JavaScriptCore/jit/JITWriteBarrier.h \
472	Source/JavaScriptCore/jit/JSInterfaceJIT.h \
473	Source/JavaScriptCore/jit/JumpReplacementWatchpoint.cpp \
474	Source/JavaScriptCore/jit/JumpReplacementWatchpoint.h \
475	Source/JavaScriptCore/jit/SpecializedThunkJIT.h \
476	Source/JavaScriptCore/jit/ThunkGenerator.h \
477	Source/JavaScriptCore/jit/ThunkGenerators.cpp \
478	Source/JavaScriptCore/jit/ThunkGenerators.h \
479	Source/JavaScriptCore/jit/UnusedPointer.h \
480	Source/JavaScriptCore/llint/LLIntCommon.h \
481	Source/JavaScriptCore/llint/LLIntCLoop.cpp \
482	Source/JavaScriptCore/llint/LLIntCLoop.h \
483	Source/JavaScriptCore/llint/LLIntData.cpp \
484	Source/JavaScriptCore/llint/LLIntData.h \
485	Source/JavaScriptCore/llint/LLIntEntrypoints.cpp \
486	Source/JavaScriptCore/llint/LLIntEntrypoints.h \
487	Source/JavaScriptCore/llint/LLIntExceptions.cpp \
488	Source/JavaScriptCore/llint/LLIntExceptions.h \
489	Source/JavaScriptCore/llint/LLIntOfflineAsmConfig.h \
490	Source/JavaScriptCore/llint/LLIntOpcode.h \
491	Source/JavaScriptCore/llint/LLIntSlowPaths.cpp \
492	Source/JavaScriptCore/llint/LLIntSlowPaths.h \
493	Source/JavaScriptCore/llint/LLIntThunks.cpp \
494	Source/JavaScriptCore/llint/LLIntThunks.h \
495	Source/JavaScriptCore/llint/LowLevelInterpreter.cpp \
496	Source/JavaScriptCore/llint/LowLevelInterpreter.h \
497	Source/JavaScriptCore/os-win32/stdbool.h \
498	Source/JavaScriptCore/os-win32/stdint.h \
499	Source/JavaScriptCore/parser/ASTBuilder.h \
500	Source/JavaScriptCore/parser/Lexer.cpp \
501	Source/JavaScriptCore/parser/Lexer.h \
502	Source/JavaScriptCore/parser/NodeConstructors.h \
503	Source/JavaScriptCore/parser/NodeInfo.h \
504	Source/JavaScriptCore/parser/Nodes.cpp \
505	Source/JavaScriptCore/parser/Nodes.h \
506	Source/JavaScriptCore/parser/ParserArena.cpp \
507	Source/JavaScriptCore/parser/ParserArena.h \
508	Source/JavaScriptCore/parser/ParserError.h \
509	Source/JavaScriptCore/parser/ParserTokens.h \
510	Source/JavaScriptCore/parser/Parser.cpp \
511	Source/JavaScriptCore/parser/Parser.h \
512	Source/JavaScriptCore/parser/ParserModes.h \
513	Source/JavaScriptCore/parser/ResultType.h \
514	Source/JavaScriptCore/parser/SourceCode.h \
515	Source/JavaScriptCore/parser/SourceProvider.cpp \
516	Source/JavaScriptCore/parser/SourceProvider.h \
517	Source/JavaScriptCore/parser/SourceProviderCache.cpp \
518	Source/JavaScriptCore/parser/SourceProviderCache.h \
519	Source/JavaScriptCore/parser/SourceProviderCacheItem.h \
520	Source/JavaScriptCore/parser/SyntaxChecker.h \
521	Source/JavaScriptCore/profiler/CallIdentifier.h \
522	Source/JavaScriptCore/profiler/ProfilerBytecode.cpp \
523	Source/JavaScriptCore/profiler/ProfilerBytecode.h \
524	Source/JavaScriptCore/profiler/ProfilerBytecodeSequence.cpp \
525	Source/JavaScriptCore/profiler/ProfilerBytecodeSequence.h \
526	Source/JavaScriptCore/profiler/ProfilerBytecodes.cpp \
527	Source/JavaScriptCore/profiler/ProfilerBytecodes.h \
528	Source/JavaScriptCore/profiler/ProfilerCompilation.cpp \
529	Source/JavaScriptCore/profiler/ProfilerCompilation.h \
530	Source/JavaScriptCore/profiler/ProfilerCompilationKind.cpp \
531	Source/JavaScriptCore/profiler/ProfilerCompilationKind.h \
532	Source/JavaScriptCore/profiler/ProfilerCompiledBytecode.cpp \
533	Source/JavaScriptCore/profiler/ProfilerCompiledBytecode.h \
534	Source/JavaScriptCore/profiler/ProfilerDatabase.cpp \
535	Source/JavaScriptCore/profiler/ProfilerDatabase.h \
536	Source/JavaScriptCore/profiler/ProfilerExecutionCounter.h \
537	Source/JavaScriptCore/profiler/ProfilerOrigin.cpp \
538	Source/JavaScriptCore/profiler/ProfilerOrigin.h \
539	Source/JavaScriptCore/profiler/ProfilerOriginStack.cpp \
540	Source/JavaScriptCore/profiler/ProfilerOriginStack.h \
541	Source/JavaScriptCore/profiler/ProfilerOSRExit.cpp \
542	Source/JavaScriptCore/profiler/ProfilerOSRExit.h \
543	Source/JavaScriptCore/profiler/ProfilerOSRExitSite.cpp \
544	Source/JavaScriptCore/profiler/ProfilerOSRExitSite.h \
545	Source/JavaScriptCore/profiler/ProfilerProfiledBytecodes.cpp \
546	Source/JavaScriptCore/profiler/ProfilerProfiledBytecodes.h \
547	Source/JavaScriptCore/profiler/Profile.cpp \
548	Source/JavaScriptCore/profiler/ProfileGenerator.cpp \
549	Source/JavaScriptCore/profiler/ProfileGenerator.h \
550	Source/JavaScriptCore/profiler/Profile.h \
551	Source/JavaScriptCore/profiler/ProfileNode.cpp \
552	Source/JavaScriptCore/profiler/ProfileNode.h \
553	Source/JavaScriptCore/profiler/LegacyProfiler.cpp \
554	Source/JavaScriptCore/profiler/LegacyProfiler.h \
555	Source/JavaScriptCore/runtime/ArgList.cpp \
556	Source/JavaScriptCore/runtime/ArgList.h \
557	Source/JavaScriptCore/runtime/Arguments.cpp \
558	Source/JavaScriptCore/runtime/Arguments.h \
559	Source/JavaScriptCore/runtime/ArrayConstructor.cpp \
560	Source/JavaScriptCore/runtime/ArrayConstructor.h \
561	Source/JavaScriptCore/runtime/ArrayConventions.h \
562	Source/JavaScriptCore/runtime/ArrayPrototype.cpp \
563	Source/JavaScriptCore/runtime/ArrayPrototype.h \
564	Source/JavaScriptCore/runtime/ArrayStorage.h \
565	Source/JavaScriptCore/runtime/BatchedTransitionOptimizer.h \
566	Source/JavaScriptCore/runtime/BigInteger.h \
567	Source/JavaScriptCore/runtime/BooleanConstructor.cpp \
568	Source/JavaScriptCore/runtime/BooleanConstructor.h \
569	Source/JavaScriptCore/runtime/BooleanObject.cpp \
570	Source/JavaScriptCore/runtime/BooleanObject.h \
571	Source/JavaScriptCore/runtime/BooleanPrototype.cpp \
572	Source/JavaScriptCore/runtime/BooleanPrototype.h \
573	Source/JavaScriptCore/runtime/ButterflyInlines.h \
574	Source/JavaScriptCore/runtime/Butterfly.h \
575	Source/JavaScriptCore/runtime/CachedTranscendentalFunction.h \
576	Source/JavaScriptCore/runtime/CallData.cpp \
577	Source/JavaScriptCore/runtime/CallData.h \
578	Source/JavaScriptCore/runtime/ClassInfo.h \
579	Source/JavaScriptCore/runtime/CodeCache.cpp \
580	Source/JavaScriptCore/runtime/CodeCache.h \
581	Source/JavaScriptCore/runtime/CodeSpecializationKind.cpp \
582	Source/JavaScriptCore/runtime/CodeSpecializationKind.h \
583	Source/JavaScriptCore/runtime/CommonIdentifiers.cpp \
584	Source/JavaScriptCore/runtime/CommonIdentifiers.h \
585	Source/JavaScriptCore/runtime/CommonSlowPaths.h \
586	Source/JavaScriptCore/runtime/Completion.cpp \
587	Source/JavaScriptCore/runtime/Completion.h \
588	Source/JavaScriptCore/runtime/ConstructData.cpp \
589	Source/JavaScriptCore/runtime/ConstructData.h \
590	Source/JavaScriptCore/runtime/DateConstructor.cpp \
591	Source/JavaScriptCore/runtime/DateConstructor.h \
592	Source/JavaScriptCore/runtime/DateConversion.cpp \
593	Source/JavaScriptCore/runtime/DateConversion.h \
594	Source/JavaScriptCore/runtime/DateInstanceCache.h \
595	Source/JavaScriptCore/runtime/DateInstance.cpp \
596	Source/JavaScriptCore/runtime/DateInstance.h \
597	Source/JavaScriptCore/runtime/DatePrototype.cpp \
598	Source/JavaScriptCore/runtime/DatePrototype.h \
599	Source/JavaScriptCore/runtime/ErrorConstructor.cpp \
600	Source/JavaScriptCore/runtime/ErrorConstructor.h \
601	Source/JavaScriptCore/runtime/Error.cpp \
602	Source/JavaScriptCore/runtime/Error.h \
603	Source/JavaScriptCore/runtime/ErrorInstance.cpp \
604	Source/JavaScriptCore/runtime/ErrorInstance.h \
605	Source/JavaScriptCore/runtime/ErrorPrototype.cpp \
606	Source/JavaScriptCore/runtime/ErrorPrototype.h \
607	Source/JavaScriptCore/runtime/ExceptionHelpers.cpp \
608	Source/JavaScriptCore/runtime/ExceptionHelpers.h \
609	Source/JavaScriptCore/runtime/Executable.cpp \
610	Source/JavaScriptCore/runtime/Executable.h \
611	Source/JavaScriptCore/runtime/ExecutionHarness.h \
612	Source/JavaScriptCore/runtime/FunctionConstructor.cpp \
613	Source/JavaScriptCore/runtime/FunctionConstructor.h \
614	Source/JavaScriptCore/runtime/FunctionExecutableDump.cpp \
615	Source/JavaScriptCore/runtime/FunctionExecutableDump.h \
616	Source/JavaScriptCore/runtime/FunctionPrototype.cpp \
617	Source/JavaScriptCore/runtime/FunctionPrototype.h \
618	Source/JavaScriptCore/runtime/GCActivityCallback.cpp \
619	Source/JavaScriptCore/runtime/GCActivityCallback.h \
620	Source/JavaScriptCore/runtime/GetterSetter.cpp \
621	Source/JavaScriptCore/runtime/GetterSetter.h \
622	Source/JavaScriptCore/runtime/Identifier.cpp \
623	Source/JavaScriptCore/runtime/Identifier.h \
624	Source/JavaScriptCore/runtime/IndexingHeaderInlines.h \
625	Source/JavaScriptCore/runtime/IndexingHeader.h \
626	Source/JavaScriptCore/runtime/IndexingType.cpp \
627	Source/JavaScriptCore/runtime/IndexingType.h \
628	Source/JavaScriptCore/runtime/InitializeThreading.cpp \
629	Source/JavaScriptCore/runtime/InitializeThreading.h \
630	Source/JavaScriptCore/runtime/InternalFunction.cpp \
631	Source/JavaScriptCore/runtime/InternalFunction.h \
632	Source/JavaScriptCore/runtime/Intrinsic.h \
633	Source/JavaScriptCore/runtime/JSActivation.cpp \
634	Source/JavaScriptCore/runtime/JSActivation.h \
635	Source/JavaScriptCore/runtime/JSAPIValueWrapper.cpp \
636	Source/JavaScriptCore/runtime/JSAPIValueWrapper.h \
637	Source/JavaScriptCore/runtime/JSArray.cpp \
638	Source/JavaScriptCore/runtime/JSArray.h \
639	Source/JavaScriptCore/runtime/JSCell.cpp \
640	Source/JavaScriptCore/runtime/JSCell.h \
641	Source/JavaScriptCore/runtime/JSDateMath.cpp \
642	Source/JavaScriptCore/runtime/JSCellInlines.h \
643	Source/JavaScriptCore/runtime/JSDateMath.h \
644	Source/JavaScriptCore/runtime/JSDestructibleObject.h \
645	Source/JavaScriptCore/runtime/JSFunction.cpp \
646	Source/JavaScriptCore/runtime/JSFunction.h \
647	Source/JavaScriptCore/runtime/JSBoundFunction.cpp \
648	Source/JavaScriptCore/runtime/JSBoundFunction.h \
649	Source/JavaScriptCore/runtime/JSExportMacros.h \
650	Source/JavaScriptCore/runtime/VM.cpp \
651	Source/JavaScriptCore/runtime/VM.h \
652	Source/JavaScriptCore/runtime/JSGlobalObject.cpp \
653	Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp \
654	Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.h \
655	Source/JavaScriptCore/runtime/JSGlobalObject.h \
656	Source/JavaScriptCore/runtime/JSProxy.cpp \
657	Source/JavaScriptCore/runtime/JSProxy.h \
658	Source/JavaScriptCore/runtime/JSLock.cpp \
659	Source/JavaScriptCore/runtime/JSLock.h \
660	Source/JavaScriptCore/runtime/JSNotAnObject.cpp \
661	Source/JavaScriptCore/runtime/JSNotAnObject.h \
662	Source/JavaScriptCore/runtime/JSObject.cpp \
663	Source/JavaScriptCore/runtime/JSObject.h \
664	Source/JavaScriptCore/runtime/JSONObject.cpp \
665	Source/JavaScriptCore/runtime/JSONObject.h \
666	Source/JavaScriptCore/runtime/JSPropertyNameIterator.cpp \
667	Source/JavaScriptCore/runtime/JSPropertyNameIterator.h \
668	Source/JavaScriptCore/runtime/JSSegmentedVariableObject.cpp \
669	Source/JavaScriptCore/runtime/JSSegmentedVariableObject.h \
670	Source/JavaScriptCore/runtime/JSWithScope.cpp \
671	Source/JavaScriptCore/runtime/JSNameScope.cpp \
672	Source/JavaScriptCore/runtime/JSNameScope.h \
673	Source/JavaScriptCore/runtime/JSScope.cpp \
674	Source/JavaScriptCore/runtime/JSScope.h \
675	Source/JavaScriptCore/runtime/JSStringBuilder.h \
676	Source/JavaScriptCore/runtime/JSStringJoiner.cpp \
677	Source/JavaScriptCore/runtime/JSStringJoiner.h \
678	Source/JavaScriptCore/runtime/JSString.cpp \
679	Source/JavaScriptCore/runtime/JSString.h \
680	Source/JavaScriptCore/runtime/JSSymbolTableObject.cpp \
681	Source/JavaScriptCore/runtime/JSSymbolTableObject.h \
682	Source/JavaScriptCore/runtime/JSType.h \
683	Source/JavaScriptCore/runtime/JSTypeInfo.h \
684	Source/JavaScriptCore/runtime/JSCJSValue.cpp \
685	Source/JavaScriptCore/runtime/JSCJSValue.h \
686	Source/JavaScriptCore/runtime/JSCJSValueInlines.h \
687	Source/JavaScriptCore/runtime/JSVariableObject.cpp \
688	Source/JavaScriptCore/runtime/JSVariableObject.h \
689	Source/JavaScriptCore/runtime/JSWithScope.h \
690	Source/JavaScriptCore/runtime/JSWrapperObject.cpp \
691	Source/JavaScriptCore/runtime/JSWrapperObject.h \
692	Source/JavaScriptCore/runtime/LiteralParser.cpp \
693	Source/JavaScriptCore/runtime/LiteralParser.h \
694	Source/JavaScriptCore/runtime/Lookup.cpp \
695	Source/JavaScriptCore/runtime/Lookup.h \
696	Source/JavaScriptCore/runtime/MatchResult.h \
697	Source/JavaScriptCore/runtime/MathObject.cpp \
698	Source/JavaScriptCore/runtime/MathObject.h \
699	Source/JavaScriptCore/runtime/MemoryStatistics.h \
700	Source/JavaScriptCore/runtime/NameConstructor.cpp \
701	Source/JavaScriptCore/runtime/NameConstructor.h \
702	Source/JavaScriptCore/runtime/NameInstance.cpp \
703	Source/JavaScriptCore/runtime/NameInstance.h \
704	Source/JavaScriptCore/runtime/NamePrototype.cpp \
705	Source/JavaScriptCore/runtime/NamePrototype.h \
706	Source/JavaScriptCore/runtime/NativeErrorConstructor.cpp \
707	Source/JavaScriptCore/runtime/NativeErrorConstructor.h \
708	Source/JavaScriptCore/runtime/NativeErrorPrototype.cpp \
709	Source/JavaScriptCore/runtime/NativeErrorPrototype.h \
710	Source/JavaScriptCore/runtime/NumberConstructor.cpp \
711	Source/JavaScriptCore/runtime/NumberConstructor.h \
712	Source/JavaScriptCore/runtime/NumberObject.cpp \
713	Source/JavaScriptCore/runtime/NumberObject.h \
714	Source/JavaScriptCore/runtime/NumberPrototype.cpp \
715	Source/JavaScriptCore/runtime/NumberPrototype.h \
716	Source/JavaScriptCore/runtime/NumericStrings.h \
717	Source/JavaScriptCore/runtime/ObjectConstructor.cpp \
718	Source/JavaScriptCore/runtime/ObjectConstructor.h \
719	Source/JavaScriptCore/runtime/ObjectPrototype.cpp \
720	Source/JavaScriptCore/runtime/ObjectPrototype.h \
721	Source/JavaScriptCore/runtime/Operations.cpp \
722	Source/JavaScriptCore/runtime/Operations.h \
723	Source/JavaScriptCore/runtime/Options.cpp \
724	Source/JavaScriptCore/runtime/Options.h \
725	Source/JavaScriptCore/runtime/PrivateName.h \
726	Source/JavaScriptCore/runtime/PropertyDescriptor.cpp \
727	Source/JavaScriptCore/runtime/PropertyDescriptor.h \
728	Source/JavaScriptCore/runtime/PropertyMapHashTable.h \
729	Source/JavaScriptCore/runtime/PropertyName.h \
730	Source/JavaScriptCore/runtime/PropertyNameArray.cpp \
731	Source/JavaScriptCore/runtime/PropertyNameArray.h \
732	Source/JavaScriptCore/runtime/PropertyOffset.h \
733	Source/JavaScriptCore/runtime/PropertySlot.cpp \
734	Source/JavaScriptCore/runtime/PropertySlot.h \
735	Source/JavaScriptCore/runtime/PropertyTable.cpp \
736	Source/JavaScriptCore/runtime/PrototypeMap.cpp \
737	Source/JavaScriptCore/runtime/PrototypeMap.h \
738	Source/JavaScriptCore/runtime/PropertyStorage.h \
739	Source/JavaScriptCore/runtime/Protect.h \
740	Source/JavaScriptCore/runtime/PutDirectIndexMode.h \
741	Source/JavaScriptCore/runtime/PutPropertySlot.h \
742	Source/JavaScriptCore/runtime/RegExpCache.cpp \
743	Source/JavaScriptCore/runtime/RegExpCache.h \
744	Source/JavaScriptCore/runtime/RegExpConstructor.cpp \
745	Source/JavaScriptCore/runtime/RegExpConstructor.h \
746	Source/JavaScriptCore/runtime/RegExp.cpp \
747	Source/JavaScriptCore/runtime/RegExp.h \
748	Source/JavaScriptCore/runtime/RegExpKey.h \
749	Source/JavaScriptCore/runtime/RegExpMatchesArray.cpp \
750	Source/JavaScriptCore/runtime/RegExpMatchesArray.h \
751	Source/JavaScriptCore/runtime/RegExpCachedResult.cpp \
752	Source/JavaScriptCore/runtime/RegExpCachedResult.h \
753	Source/JavaScriptCore/runtime/RegExpObject.cpp \
754	Source/JavaScriptCore/runtime/RegExpObject.h \
755	Source/JavaScriptCore/runtime/RegExpPrototype.cpp \
756	Source/JavaScriptCore/runtime/RegExpPrototype.h \
757	Source/JavaScriptCore/runtime/Reject.h \
758	Source/JavaScriptCore/runtime/SamplingCounter.cpp \
759	Source/JavaScriptCore/runtime/SamplingCounter.h \
760	Source/JavaScriptCore/runtime/SmallStrings.cpp \
761	Source/JavaScriptCore/runtime/SmallStrings.h \
762	Source/JavaScriptCore/runtime/SparseArrayValueMap.cpp \
763	Source/JavaScriptCore/runtime/SparseArrayValueMap.h \
764	Source/JavaScriptCore/runtime/StrictEvalActivation.cpp \
765	Source/JavaScriptCore/runtime/StrictEvalActivation.h \
766	Source/JavaScriptCore/runtime/StringConstructor.cpp \
767	Source/JavaScriptCore/runtime/StringConstructor.h \
768	Source/JavaScriptCore/runtime/StringObject.cpp \
769	Source/JavaScriptCore/runtime/StringObject.h \
770	Source/JavaScriptCore/runtime/StringPrototype.cpp \
771	Source/JavaScriptCore/runtime/StringPrototype.h \
772	Source/JavaScriptCore/runtime/StringRecursionChecker.cpp \
773	Source/JavaScriptCore/runtime/StringRecursionChecker.h \
774	Source/JavaScriptCore/runtime/StructureChain.cpp \
775	Source/JavaScriptCore/runtime/StructureChain.h \
776	Source/JavaScriptCore/runtime/Structure.cpp \
777	Source/JavaScriptCore/runtime/Structure.h \
778	Source/JavaScriptCore/runtime/StructureInlines.h \
779	Source/JavaScriptCore/runtime/StructureRareData.cpp \
780	Source/JavaScriptCore/runtime/StructureRareData.h \
781	Source/JavaScriptCore/runtime/StructureRareDataInlines.h \
782	Source/JavaScriptCore/runtime/StructureTransitionTable.h \
783	Source/JavaScriptCore/runtime/SymbolTable.cpp \
784	Source/JavaScriptCore/runtime/SymbolTable.h \
785	Source/JavaScriptCore/runtime/Tracing.h \
786	Source/JavaScriptCore/runtime/TypedArrayDescriptor.h \
787	Source/JavaScriptCore/runtime/Uint16WithFraction.h \
788	Source/JavaScriptCore/runtime/Watchdog.cpp \
789	Source/JavaScriptCore/runtime/Watchdog.h \
790	Source/JavaScriptCore/runtime/WatchdogNone.cpp \
791	Source/JavaScriptCore/runtime/WeakGCMap.h \
792	Source/JavaScriptCore/runtime/WeakRandom.h \
793	Source/JavaScriptCore/runtime/WriteBarrier.h \
794	Source/JavaScriptCore/tools/CodeProfile.cpp \
795	Source/JavaScriptCore/tools/CodeProfile.h \
796	Source/JavaScriptCore/tools/CodeProfiling.cpp \
797	Source/JavaScriptCore/tools/CodeProfiling.h \
798	Source/JavaScriptCore/tools/ProfileTreeNode.h \
799	Source/JavaScriptCore/tools/TieredMMapArray.h \
800	Source/JavaScriptCore/yarr/Yarr.h \
801	Source/JavaScriptCore/yarr/YarrCanonicalizeUCS2.cpp \
802	Source/JavaScriptCore/yarr/YarrCanonicalizeUCS2.h \
803	Source/JavaScriptCore/yarr/YarrInterpreter.cpp \
804	Source/JavaScriptCore/yarr/YarrInterpreter.h \
805	Source/JavaScriptCore/yarr/YarrJIT.cpp \
806	Source/JavaScriptCore/yarr/YarrJIT.h \
807	Source/JavaScriptCore/yarr/YarrParser.h \
808	Source/JavaScriptCore/yarr/YarrPattern.cpp \
809	Source/JavaScriptCore/yarr/YarrPattern.h \
810	Source/JavaScriptCore/yarr/YarrSyntaxChecker.cpp \
811	Source/JavaScriptCore/yarr/YarrSyntaxChecker.h
812
813llint_nosources += \
814	Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm \
815	Source/JavaScriptCore/llint/LowLevelInterpreter64.asm \
816	Source/JavaScriptCore/llint/LowLevelInterpreter.asm
817
818offlineasm_nosources += \
819	Source/JavaScriptCore/offlineasm/arm.rb \
820	Source/JavaScriptCore/offlineasm/asm.rb \
821	Source/JavaScriptCore/offlineasm/ast.rb \
822	Source/JavaScriptCore/offlineasm/backends.rb \
823	Source/JavaScriptCore/offlineasm/cloop.rb \
824	Source/JavaScriptCore/offlineasm/config.rb \
825	Source/JavaScriptCore/offlineasm/generate_offset_extractor.rb \
826	Source/JavaScriptCore/offlineasm/instructions.rb \
827	Source/JavaScriptCore/offlineasm/mips.rb \
828	Source/JavaScriptCore/offlineasm/offsets.rb \
829	Source/JavaScriptCore/offlineasm/opt.rb \
830	Source/JavaScriptCore/offlineasm/parser.rb \
831	Source/JavaScriptCore/offlineasm/registers.rb \
832	Source/JavaScriptCore/offlineasm/risc.rb \
833	Source/JavaScriptCore/offlineasm/self_hash.rb \
834	Source/JavaScriptCore/offlineasm/settings.rb \
835	Source/JavaScriptCore/offlineasm/sh4.rb \
836	Source/JavaScriptCore/offlineasm/transform.rb \
837	Source/JavaScriptCore/offlineasm/x86.rb
838
839# minidom
840Programs_minidom_SOURCES = \
841	Source/JavaScriptCore/API/tests/JSNode.c \
842	Source/JavaScriptCore/API/tests/JSNode.h \
843	Source/JavaScriptCore/API/tests/JSNodeList.c \
844	Source/JavaScriptCore/API/tests/JSNodeList.h \
845	Source/JavaScriptCore/API/tests/Node.c \
846	Source/JavaScriptCore/API/tests/Node.h \
847	Source/JavaScriptCore/API/tests/NodeList.c \
848	Source/JavaScriptCore/API/tests/NodeList.h \
849	Source/JavaScriptCore/API/tests/minidom.c
850
851Programs_LLIntOffsetsExtractor_SOURCES = \
852	Source/JavaScriptCore/llint/LLIntOffsetsExtractor.cpp
853
854Programs_jsc_@WEBKITGTK_API_MAJOR_VERSION@_SOURCES = \
855	Source/JavaScriptCore/JSCTypedArrayStubs.h \
856	Source/JavaScriptCore/jsc.cpp
857