diff options
author | Simon Hausmann <simon.hausmann@digia.com> | 2012-10-23 10:25:11 +0200 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@digia.com> | 2012-10-23 10:25:11 +0200 |
commit | 5ea819f80c6840c492386bfafbffb059c7e2091f (patch) | |
tree | 42ad0b1d82eff090d14278a088ea0f4840a0f938 /Source/JavaScriptCore/dfg/DFGArrayMode.h | |
parent | 43a42f108af6bcbd91f2672731c3047c26213af1 (diff) | |
download | qtwebkit-5ea819f80c6840c492386bfafbffb059c7e2091f.tar.gz |
Imported WebKit commit 20434eb8eb95065803473139d8794e98a7672f75 (http://svn.webkit.org/repository/webkit/trunk@132191)
New snapshot that should fix build with latest qtbase and the QPlastiqueStyle removal
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGArrayMode.h')
-rw-r--r-- | Source/JavaScriptCore/dfg/DFGArrayMode.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGArrayMode.h b/Source/JavaScriptCore/dfg/DFGArrayMode.h index f7ac92733..a1cd74114 100644 --- a/Source/JavaScriptCore/dfg/DFGArrayMode.h +++ b/Source/JavaScriptCore/dfg/DFGArrayMode.h @@ -47,7 +47,7 @@ enum Action { }; enum Mode { - Undecided, // Implies that we need predictions to decide. We will never get to the backend in this mode. + SelectUsingPredictions, // Implies that we need predictions to decide. We will never get to the backend in this mode. Unprofiled, // Implies that array profiling didn't see anything. But that could be because the operands didn't comply with basic type assumptions (base is cell, property is int). This either becomes Generic or ForceExit depending on value profiling. ForceExit, // Implies that we have no idea how to execute this operation, so we should just give up. Generic, @@ -266,7 +266,7 @@ inline bool mayStoreToHole(Array::Mode arrayMode) inline bool canCSEStorage(Array::Mode arrayMode) { switch (arrayMode) { - case Array::Undecided: + case Array::SelectUsingPredictions: case Array::Unprofiled: case Array::ForceExit: case Array::Generic: @@ -299,7 +299,7 @@ inline Array::Mode modeForPut(Array::Mode arrayMode) inline bool modeIsSpecific(Array::Mode mode) { switch (mode) { - case Array::Undecided: + case Array::SelectUsingPredictions: case Array::Unprofiled: case Array::ForceExit: case Array::Generic: @@ -312,7 +312,7 @@ inline bool modeIsSpecific(Array::Mode mode) inline bool modeSupportsLength(Array::Mode mode) { switch (mode) { - case Array::Undecided: + case Array::SelectUsingPredictions: case Array::Unprofiled: case Array::ForceExit: case Array::Generic: @@ -329,7 +329,7 @@ inline bool benefitsFromStructureCheck(Array::Mode mode) { switch (mode) { case ALL_EFFECTFUL_MODES: - case Array::Undecided: + case Array::SelectUsingPredictions: case Array::Unprofiled: case Array::ForceExit: case Array::Generic: |