Title: [164766] trunk/Source/_javascript_Core
- Revision
- 164766
- Author
- [email protected]
- Date
- 2014-02-26 17:53:02 -0800 (Wed, 26 Feb 2014)
Log Message
EFL build fix
* dfg/DFGSpeculativeJIT32_64.cpp: Remove unused variables.
(JSC::DFG::SpeculativeJIT::compileObjectToObjectOrOtherEquality):
(JSC::DFG::SpeculativeJIT::compilePeepHoleObjectToObjectOrOtherEquality):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (164765 => 164766)
--- trunk/Source/_javascript_Core/ChangeLog 2014-02-27 01:46:15 UTC (rev 164765)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-02-27 01:53:02 UTC (rev 164766)
@@ -1,3 +1,11 @@
+2014-02-26 Mark Hahnenberg <[email protected]>
+
+ EFL build fix
+
+ * dfg/DFGSpeculativeJIT32_64.cpp: Remove unused variables.
+ (JSC::DFG::SpeculativeJIT::compileObjectToObjectOrOtherEquality):
+ (JSC::DFG::SpeculativeJIT::compilePeepHoleObjectToObjectOrOtherEquality):
+
2014-02-25 Mark Hahnenberg <[email protected]>
Make JSCells have 32-bit Structure pointers
Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp (164765 => 164766)
--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp 2014-02-27 01:46:15 UTC (rev 164765)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp 2014-02-27 01:53:02 UTC (rev 164766)
@@ -1195,20 +1195,10 @@
GPRReg op2TagGPR = op2.tagGPR();
GPRReg op2PayloadGPR = op2.payloadGPR();
GPRReg resultGPR = result.gpr();
- GPRTemporary structure;
- GPRReg structureGPR = InvalidGPRReg;
bool masqueradesAsUndefinedWatchpointValid =
masqueradesAsUndefinedWatchpointIsStillValid();
- if (!masqueradesAsUndefinedWatchpointValid) {
- // The masquerades as undefined case will use the structure register, so allocate it here.
- // Do this at the top of the function to avoid branching around a register allocation.
- GPRTemporary realStructure(this);
- structure.adopt(realStructure);
- structureGPR = structure.gpr();
- }
-
if (masqueradesAsUndefinedWatchpointValid) {
DFG_TYPE_CHECK(
JSValueSource::unboxedCell(op1GPR), leftChild, SpecObject, m_jit.branchPtr(
@@ -1300,20 +1290,10 @@
GPRReg op2TagGPR = op2.tagGPR();
GPRReg op2PayloadGPR = op2.payloadGPR();
GPRReg resultGPR = result.gpr();
- GPRTemporary structure;
- GPRReg structureGPR = InvalidGPRReg;
bool masqueradesAsUndefinedWatchpointValid =
masqueradesAsUndefinedWatchpointIsStillValid();
- if (!masqueradesAsUndefinedWatchpointValid) {
- // The masquerades as undefined case will use the structure register, so allocate it here.
- // Do this at the top of the function to avoid branching around a register allocation.
- GPRTemporary realStructure(this);
- structure.adopt(realStructure);
- structureGPR = structure.gpr();
- }
-
if (masqueradesAsUndefinedWatchpointValid) {
DFG_TYPE_CHECK(
JSValueSource::unboxedCell(op1GPR), leftChild, SpecObject, m_jit.branchPtr(
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes