Changeset 196752 in webkit


Ignore:
Timestamp:
Feb 18, 2016 2:34:47 AM (8 years ago)
Author:
Csaba Osztrogonác
Message:

[cmake] Build system cleanup
https://bugs.webkit.org/show_bug.cgi?id=154337

Reviewed by Žan Doberšek.

  • CMakeLists.txt:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/CMakeLists.txt

    r196731 r196752  
    359359    dfg/DFGThunks.cpp
    360360    dfg/DFGTierUpCheckInjectionPhase.cpp
     361    dfg/DFGToFTLDeferredCompilationCallback.cpp
     362    dfg/DFGToFTLForOSREntryDeferredCompilationCallback.cpp
    361363    dfg/DFGTransition.cpp
    362364    dfg/DFGTypeCheckHoistingPhase.cpp
     
    392394    disassembler/udis86/udis86_syn-intel.c
    393395    disassembler/udis86/udis86_syn.c
     396
     397    ftl/FTLAbstractHeap.cpp
     398    ftl/FTLAbstractHeapRepository.cpp
     399    ftl/FTLAvailableRecovery.cpp
     400    ftl/FTLCapabilities.cpp
     401    ftl/FTLCommonValues.cpp
     402    ftl/FTLCompile.cpp
     403    ftl/FTLExceptionTarget.cpp
     404    ftl/FTLExitArgument.cpp
     405    ftl/FTLExitArgumentForOperand.cpp
     406    ftl/FTLExitPropertyValue.cpp
     407    ftl/FTLExitTimeObjectMaterialization.cpp
     408    ftl/FTLExitValue.cpp
     409    ftl/FTLFail.cpp
     410    ftl/FTLForOSREntryJITCode.cpp
     411    ftl/FTLJITCode.cpp
     412    ftl/FTLJITFinalizer.cpp
     413    ftl/FTLLazySlowPath.cpp
     414    ftl/FTLLink.cpp
     415    ftl/FTLLocation.cpp
     416    ftl/FTLLowerDFGToLLVM.cpp
     417    ftl/FTLOSREntry.cpp
     418    ftl/FTLOSRExit.cpp
     419    ftl/FTLOSRExitCompiler.cpp
     420    ftl/FTLOSRExitHandle.cpp
     421    ftl/FTLOperations.cpp
     422    ftl/FTLOutput.cpp
     423    ftl/FTLPatchpointExceptionHandle.cpp
     424    ftl/FTLRecoveryOpcode.cpp
     425    ftl/FTLSaveRestore.cpp
     426    ftl/FTLSlowPathCall.cpp
     427    ftl/FTLSlowPathCallKey.cpp
     428    ftl/FTLState.cpp
     429    ftl/FTLThunks.cpp
     430    ftl/FTLValueRange.cpp
    394431
    395432    heap/CodeBlockSet.cpp
     
    524561    jit/ThunkGenerators.cpp
    525562
     563    llint/LLIntCLoop.cpp
     564    llint/LLIntData.cpp
     565    llint/LLIntEntrypoint.cpp
     566    llint/LLIntExceptions.cpp
     567    llint/LLIntSlowPaths.cpp
     568    llint/LLIntThunks.cpp
     569    llint/LowLevelInterpreter.cpp
     570
    526571    parser/Lexer.cpp
    527572    parser/ModuleAnalyzer.cpp
     
    553598    profiler/ProfilerProfiledBytecodes.cpp
    554599
    555     tools/CodeProfile.cpp
    556     tools/CodeProfiling.cpp
    557     tools/FunctionOverrides.cpp
    558     tools/JSDollarVM.cpp
    559     tools/JSDollarVMPrototype.cpp
    560 
    561     wasm/JSWASMModule.cpp
    562     wasm/WASMFunctionParser.cpp
    563     wasm/WASMModuleParser.cpp
    564     wasm/WASMReader.cpp
    565 
    566     yarr/RegularExpression.cpp
    567     yarr/YarrCanonicalizeUCS2.cpp
    568     yarr/YarrInterpreter.cpp
    569     yarr/YarrJIT.cpp
    570     yarr/YarrPattern.cpp
    571     yarr/YarrSyntaxChecker.cpp
    572 )
    573 
    574 set(JavaScriptCore_RUNTIME_SOURCES
    575600    runtime/ArgList.cpp
    576601    runtime/ArrayBuffer.cpp
     
    790815    runtime/WeakSetConstructor.cpp
    791816    runtime/WeakSetPrototype.cpp
    792 )
    793 
    794 list(APPEND JavaScriptCore_SOURCES
    795     ${JavaScriptCore_RUNTIME_SOURCES}
     817
     818    tools/CodeProfile.cpp
     819    tools/CodeProfiling.cpp
     820    tools/FunctionOverrides.cpp
     821    tools/JSDollarVM.cpp
     822    tools/JSDollarVMPrototype.cpp
     823
     824    wasm/JSWASMModule.cpp
     825    wasm/WASMFunctionParser.cpp
     826    wasm/WASMModuleParser.cpp
     827    wasm/WASMReader.cpp
     828
     829    yarr/RegularExpression.cpp
     830    yarr/YarrCanonicalizeUCS2.cpp
     831    yarr/YarrInterpreter.cpp
     832    yarr/YarrJIT.cpp
     833    yarr/YarrPattern.cpp
     834    yarr/YarrSyntaxChecker.cpp
    796835)
    797836
     
    9831022endif ()
    9841023
    985 list(APPEND JavaScriptCore_SOURCES
    986     llint/LLIntCLoop.cpp
    987     llint/LLIntData.cpp
    988     llint/LLIntEntrypoint.cpp
    989     llint/LLIntExceptions.cpp
    990     llint/LLIntSlowPaths.cpp
    991     llint/LLIntThunks.cpp
    992     llint/LowLevelInterpreter.cpp
    993 )
    994 
    995 if (ENABLE_FTL_JIT)
    996     list(APPEND JavaScriptCore_SOURCES
    997         dfg/DFGToFTLDeferredCompilationCallback.cpp
    998         dfg/DFGToFTLForOSREntryDeferredCompilationCallback.cpp
    999 
    1000         ftl/FTLAbstractHeap.cpp
    1001         ftl/FTLAbstractHeapRepository.cpp
    1002         ftl/FTLAvailableRecovery.cpp
    1003         ftl/FTLCapabilities.cpp
    1004         ftl/FTLCommonValues.cpp
    1005         ftl/FTLCompile.cpp
    1006         ftl/FTLExceptionTarget.cpp
    1007         ftl/FTLExitArgument.cpp
    1008         ftl/FTLExitArgumentForOperand.cpp
    1009         ftl/FTLExitPropertyValue.cpp
    1010         ftl/FTLExitTimeObjectMaterialization.cpp
    1011         ftl/FTLExitValue.cpp
    1012         ftl/FTLFail.cpp
    1013         ftl/FTLForOSREntryJITCode.cpp
    1014         ftl/FTLJITCode.cpp
    1015         ftl/FTLJITFinalizer.cpp
    1016         ftl/FTLLazySlowPath.cpp
    1017         ftl/FTLLink.cpp
    1018         ftl/FTLLocation.cpp
    1019         ftl/FTLLowerDFGToLLVM.cpp
    1020         ftl/FTLOSREntry.cpp
    1021         ftl/FTLOSRExit.cpp
    1022         ftl/FTLOSRExitCompiler.cpp
    1023         ftl/FTLOSRExitHandle.cpp
    1024         ftl/FTLOperations.cpp
    1025         ftl/FTLOutput.cpp
    1026         ftl/FTLPatchpointExceptionHandle.cpp
    1027         ftl/FTLRecoveryOpcode.cpp
    1028         ftl/FTLSaveRestore.cpp
    1029         ftl/FTLSlowPathCall.cpp
    1030         ftl/FTLSlowPathCallKey.cpp
    1031         ftl/FTLState.cpp
    1032         ftl/FTLThunks.cpp
    1033         ftl/FTLValueRange.cpp
    1034     )
    1035 endif ()
    1036 
    10371024set(HASH_LUT_GENERATOR ${CMAKE_CURRENT_SOURCE_DIR}/create_hash_table)
    10381025macro(GENERATE_HASH_LUT _input _output)
  • trunk/Source/JavaScriptCore/ChangeLog

    r196745 r196752  
     12016-02-18  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [cmake] Build system cleanup
     4        https://bugs.webkit.org/show_bug.cgi?id=154337
     5
     6        Reviewed by Žan Doberšek.
     7
     8        * CMakeLists.txt:
     9
    1102016-02-17  Mark Lam  <mark.lam@apple.com>
    211
Note: See TracChangeset for help on using the changeset viewer.