Changeset 159431 in webkit


Ignore:
Timestamp:
Nov 18, 2013 10:30:16 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[Win] Link fails when DFG JIT is enabled.
https://bugs.webkit.org/show_bug.cgi?id=123614

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-11-18
Reviewed by Brent Fulgham.

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r159429 r159431  
     12013-11-18  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [Win] Link fails when DFG JIT is enabled.
     4        https://bugs.webkit.org/show_bug.cgi?id=123614
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj: Added new files.
     9        * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters: Ditto.
     10
    1112013-11-18  Julien Brianceau  <jbriance@cisco.com>
    212
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj

    r159394 r159431  
    377377    <ClCompile Include="..\dfg\DFGGraph.cpp" />
    378378    <ClCompile Include="..\dfg\DFGInPlaceAbstractState.cpp" />
     379    <ClCompile Include="..\dfg\DFGInvalidationPointInjectionPhase.cpp" />
    379380    <ClCompile Include="..\dfg\DFGJITCode.cpp" />
    380381    <ClCompile Include="..\dfg\DFGJITCompiler.cpp" />
    381382    <ClCompile Include="..\dfg\DFGJITFinalizer.cpp" />
     383    <ClCompile Include="..\dfg\DFGJumpReplacement.cpp" />
    382384    <ClCompile Include="..\dfg\DFGLazyJSValue.cpp" />
    383385    <ClCompile Include="..\dfg\DFGLICMPhase.cpp" />
     
    424426    <ClCompile Include="..\dfg\DFGVariableEventStream.cpp" />
    425427    <ClCompile Include="..\dfg\DFGVirtualRegisterAllocationPhase.cpp" />
     428    <ClCompile Include="..\dfg\DFGWatchpointCollectionPhase.cpp" />
    426429    <ClCompile Include="..\dfg\DFGWorklist.cpp" />
    427430    <ClCompile Include="..\disassembler\Disassembler.cpp" />
     
    866869    <ClInclude Include="..\dfg\DFGInPlaceAbstractState.h" />
    867870    <ClInclude Include="..\dfg\DFGInsertionSet.h" />
     871    <ClInclude Include="..\dfg\DFGInvalidationPointInjectionPhase.h" />
    868872    <ClInclude Include="..\dfg\DFGJITCode.h" />
    869873    <ClInclude Include="..\dfg\DFGJITCompiler.h" />
    870874    <ClInclude Include="..\dfg\DFGJITFinalizer.h" />
     875    <ClInclude Include="..\dfg\DFGJumpReplacement.h" />
    871876    <ClInclude Include="..\dfg\DFGLazyJSValue.h" />
    872877    <ClInclude Include="..\dfg\DFGLICMPhase.h" />
     
    927932    <ClInclude Include="..\dfg\DFGVariadicFunction.h" />
    928933    <ClInclude Include="..\dfg\DFGVirtualRegisterAllocationPhase.h" />
     934    <ClInclude Include="..\dfg\DFGWatchpointCollectionPhase.h" />
    929935    <ClInclude Include="..\dfg\DFGWorklist.h" />
    930936    <ClInclude Include="..\disassembler\Disassembler.h" />
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters

    r159360 r159431  
    10271027      <Filter>dfg</Filter>
    10281028    </ClCompile>
     1029    <ClCompile Include="..\dfg\DFGInvalidationPointInjectionPhase.cpp">
     1030      <Filter>dfg</Filter>
     1031    </ClCompile>
    10291032    <ClCompile Include="..\dfg\DFGJITCode.cpp">
    10301033      <Filter>dfg</Filter>
     
    10361039      <Filter>dfg</Filter>
    10371040    </ClCompile>
     1041    <ClCompile Include="..\dfg\DFGJumpReplacement.cpp">
     1042      <Filter>dfg</Filter>
     1043    </ClCompile>
    10381044    <ClCompile Include="..\dfg\DFGLazyJSValue.cpp">
    10391045      <Filter>dfg</Filter>
     
    11631169    </ClCompile>
    11641170    <ClCompile Include="..\dfg\DFGVirtualRegisterAllocationPhase.cpp">
     1171      <Filter>dfg</Filter>
     1172    </ClCompile>
     1173    <ClCompile Include="..\dfg\DFGWatchpointCollectionPhase.cpp">
    11651174      <Filter>dfg</Filter>
    11661175    </ClCompile>
     
    28272836      <Filter>dfg</Filter>
    28282837    </ClInclude>
     2838    <ClInclude Include="..\dfg\DFGInvalidationPointInjectionPhase.h">
     2839      <Filter>dfg</Filter>
     2840    </ClInclude>
    28292841    <ClInclude Include="..\dfg\DFGInsertionSet.h">
    28302842      <Filter>dfg</Filter>
     
    28392851      <Filter>dfg</Filter>
    28402852    </ClInclude>
     2853    <ClInclude Include="..\dfg\DFGJumpReplacement.h">
     2854      <Filter>dfg</Filter>
     2855    </ClInclude>
    28412856    <ClInclude Include="..\dfg\DFGLazyJSValue.h">
    28422857      <Filter>dfg</Filter>
     
    30053020    </ClInclude>
    30063021    <ClInclude Include="..\dfg\DFGVirtualRegisterAllocationPhase.h">
     3022      <Filter>dfg</Filter>
     3023    </ClInclude>
     3024    <ClInclude Include="..\dfg\DFGWatchpointCollectionPhase.h">
    30073025      <Filter>dfg</Filter>
    30083026    </ClInclude>
Note: See TracChangeset for help on using the changeset viewer.