Ignore:
Timestamp:
May 10, 2013, 4:15:07 PM (12 years ago)
Author:
[email protected]
Message:

Rename StructureCheckHoistingPhase to TypeCheckHoistingPhase
https://bugs.webkit.org/show_bug.cgi?id=115938

We're going to add some more types of check hoisting soon, so let's have the right name here.

Rubber stamped by Filip Pizlo.

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • Target.pri:
  • dfg/DFGDriver.cpp:

(JSC::DFG::compile):

  • dfg/DFGStructureCheckHoistingPhase.cpp: Removed.
  • dfg/DFGStructureCheckHoistingPhase.h: Removed.
  • dfg/DFGTypeCheckHoistingPhase.cpp: Copied from Source/JavaScriptCore/dfg/DFGStructureCheckHoistingPhase.cpp.

(JSC::DFG::TypeCheckHoistingPhase::TypeCheckHoistingPhase):
(JSC::DFG::performTypeCheckHoisting):

  • dfg/DFGTypeCheckHoistingPhase.h: Copied from Source/JavaScriptCore/dfg/DFGStructureCheckHoistingPhase.h.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGDriver.cpp

    r149552 r149911  
    4646#include "DFGPredictionInjectionPhase.h"
    4747#include "DFGPredictionPropagationPhase.h"
    48 #include "DFGStructureCheckHoistingPhase.h"
     48#include "DFGTypeCheckHoistingPhase.h"
    4949#include "DFGUnificationPhase.h"
    5050#include "DFGValidate.h"
     
    130130    performPredictionPropagation(dfg);
    131131    performFixup(dfg);
    132     performStructureCheckHoisting(dfg);
     132    performTypeCheckHoisting(dfg);
    133133   
    134134    dfg.m_fixpointState = FixpointNotConverged;
Note: See TracChangeset for help on using the changeset viewer.