GNUmakefile.list.am 41 KB

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