Title: [159431] trunk/Source/_javascript_Core
Revision
159431
Author
[email protected]
Date
2013-11-18 10:30:16 -0800 (Mon, 18 Nov 2013)

Log Message

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

Patch by [email protected] <[email protected]> on 2013-11-18
Reviewed by Brent Fulgham.

* _javascript_Core.vcxproj/_javascript_Core.vcxproj: Added new files.
* _javascript_Core.vcxproj/_javascript_Core.vcxproj.filters: Ditto.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (159430 => 159431)


--- trunk/Source/_javascript_Core/ChangeLog	2013-11-18 18:25:31 UTC (rev 159430)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-11-18 18:30:16 UTC (rev 159431)
@@ -1,3 +1,13 @@
+2013-11-18  [email protected]  <[email protected]>
+
+        [Win] Link fails when DFG JIT is enabled.
+        https://bugs.webkit.org/show_bug.cgi?id=123614
+
+        Reviewed by Brent Fulgham.
+
+        * _javascript_Core.vcxproj/_javascript_Core.vcxproj: Added new files.
+        * _javascript_Core.vcxproj/_javascript_Core.vcxproj.filters: Ditto.
+
 2013-11-18  Julien Brianceau  <[email protected]>
 
         [sh4] Add missing implementation in MacroAssembler to fix build (broken since r159395).

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.vcxproj (159430 => 159431)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.vcxproj	2013-11-18 18:25:31 UTC (rev 159430)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.vcxproj	2013-11-18 18:30:16 UTC (rev 159431)
@@ -376,9 +376,11 @@
     <ClCompile Include="..\dfg\DFGFlushLivenessAnalysisPhase.cpp" />
     <ClCompile Include="..\dfg\DFGGraph.cpp" />
     <ClCompile Include="..\dfg\DFGInPlaceAbstractState.cpp" />
+    <ClCompile Include="..\dfg\DFGInvalidationPointInjectionPhase.cpp" />
     <ClCompile Include="..\dfg\DFGJITCode.cpp" />
     <ClCompile Include="..\dfg\DFGJITCompiler.cpp" />
     <ClCompile Include="..\dfg\DFGJITFinalizer.cpp" />
+    <ClCompile Include="..\dfg\DFGJumpReplacement.cpp" />
     <ClCompile Include="..\dfg\DFGLazyJSValue.cpp" />
     <ClCompile Include="..\dfg\DFGLICMPhase.cpp" />
     <ClCompile Include="..\dfg\DFGLivenessAnalysisPhase.cpp" />
@@ -423,6 +425,7 @@
     <ClCompile Include="..\dfg\DFGVariableEvent.cpp" />
     <ClCompile Include="..\dfg\DFGVariableEventStream.cpp" />
     <ClCompile Include="..\dfg\DFGVirtualRegisterAllocationPhase.cpp" />
+    <ClCompile Include="..\dfg\DFGWatchpointCollectionPhase.cpp" />
     <ClCompile Include="..\dfg\DFGWorklist.cpp" />
     <ClCompile Include="..\disassembler\Disassembler.cpp" />
     <ClCompile Include="..\heap\BlockAllocator.cpp" />
@@ -865,9 +868,11 @@
     <ClInclude Include="..\dfg\DFGGraph.h" />
     <ClInclude Include="..\dfg\DFGInPlaceAbstractState.h" />
     <ClInclude Include="..\dfg\DFGInsertionSet.h" />
+    <ClInclude Include="..\dfg\DFGInvalidationPointInjectionPhase.h" />
     <ClInclude Include="..\dfg\DFGJITCode.h" />
     <ClInclude Include="..\dfg\DFGJITCompiler.h" />
     <ClInclude Include="..\dfg\DFGJITFinalizer.h" />
+    <ClInclude Include="..\dfg\DFGJumpReplacement.h" />
     <ClInclude Include="..\dfg\DFGLazyJSValue.h" />
     <ClInclude Include="..\dfg\DFGLICMPhase.h" />
     <ClInclude Include="..\dfg\DFGLivenessAnalysisPhase.h" />
@@ -926,6 +931,7 @@
     <ClInclude Include="..\dfg\DFGVariableEventStream.h" />
     <ClInclude Include="..\dfg\DFGVariadicFunction.h" />
     <ClInclude Include="..\dfg\DFGVirtualRegisterAllocationPhase.h" />
+    <ClInclude Include="..\dfg\DFGWatchpointCollectionPhase.h" />
     <ClInclude Include="..\dfg\DFGWorklist.h" />
     <ClInclude Include="..\disassembler\Disassembler.h" />
     <ClInclude Include="..\heap\BlockAllocator.h" />

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.vcxproj.filters (159430 => 159431)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.vcxproj.filters	2013-11-18 18:25:31 UTC (rev 159430)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.vcxproj.filters	2013-11-18 18:30:16 UTC (rev 159431)
@@ -1026,6 +1026,9 @@
     <ClCompile Include="..\dfg\DFGInPlaceAbstractState.cpp">
       <Filter>dfg</Filter>
     </ClCompile>
+    <ClCompile Include="..\dfg\DFGInvalidationPointInjectionPhase.cpp">
+      <Filter>dfg</Filter>
+    </ClCompile>
     <ClCompile Include="..\dfg\DFGJITCode.cpp">
       <Filter>dfg</Filter>
     </ClCompile>
@@ -1035,6 +1038,9 @@
     <ClCompile Include="..\dfg\DFGJITFinalizer.cpp">
       <Filter>dfg</Filter>
     </ClCompile>
+    <ClCompile Include="..\dfg\DFGJumpReplacement.cpp">
+      <Filter>dfg</Filter>
+    </ClCompile>
     <ClCompile Include="..\dfg\DFGLazyJSValue.cpp">
       <Filter>dfg</Filter>
     </ClCompile>
@@ -1164,6 +1170,9 @@
     <ClCompile Include="..\dfg\DFGVirtualRegisterAllocationPhase.cpp">
       <Filter>dfg</Filter>
     </ClCompile>
+    <ClCompile Include="..\dfg\DFGWatchpointCollectionPhase.cpp">
+      <Filter>dfg</Filter>
+    </ClCompile>
     <ClCompile Include="..\dfg\DFGWorklist.cpp">
       <Filter>dfg</Filter>
     </ClCompile>
@@ -2826,6 +2835,9 @@
     <ClInclude Include="..\dfg\DFGInPlaceAbstractState.h">
       <Filter>dfg</Filter>
     </ClInclude>
+    <ClInclude Include="..\dfg\DFGInvalidationPointInjectionPhase.h">
+      <Filter>dfg</Filter>
+    </ClInclude>
     <ClInclude Include="..\dfg\DFGInsertionSet.h">
       <Filter>dfg</Filter>
     </ClInclude>
@@ -2838,6 +2850,9 @@
     <ClInclude Include="..\dfg\DFGJITFinalizer.h">
       <Filter>dfg</Filter>
     </ClInclude>
+    <ClInclude Include="..\dfg\DFGJumpReplacement.h">
+      <Filter>dfg</Filter>
+    </ClInclude>
     <ClInclude Include="..\dfg\DFGLazyJSValue.h">
       <Filter>dfg</Filter>
     </ClInclude>
@@ -3006,6 +3021,9 @@
     <ClInclude Include="..\dfg\DFGVirtualRegisterAllocationPhase.h">
       <Filter>dfg</Filter>
     </ClInclude>
+    <ClInclude Include="..\dfg\DFGWatchpointCollectionPhase.h">
+      <Filter>dfg</Filter>
+    </ClInclude>
     <ClInclude Include="..\dfg\DFGWorklist.h">
       <Filter>dfg</Filter>
     </ClInclude>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to