v8/test/unittests/interpreter
bmeurer 1915762cc8 [turbofan] Remove special JSForInStep and JSForInDone.
These JavaScript operators were special hacks to ensure that we always
operate on Smis for the magic for-in index variable, but this never
really worked in the OSR case, because the OsrValue for the index
variable didn't have the proper information (that we have for the
JSForInPrepare in the non-OSR case).

Now that we have loop induction variable analysis and binary operation
hints, we can just use JSLessThan and JSAdd instead with appropriate
Smi hints, which handle the OSR case by inserting Smi checks (that are
always true). Thanks to OSR deconstruction and loop peeling these Smi
checks will be hoisted so they don't hurt the OSR case too much.

Drive-by-change: Rename the ForInDone bytecode to ForInContinue, since
we have to lower it to JSLessThan to get the loop induction variable
goodness.

R=epertoso@chromium.org
BUG=v8:5267

Review-Url: https://codereview.chromium.org/2289613002
Cr-Commit-Position: refs/heads/master@{#38968}
2016-08-29 08:47:33 +00:00
..
bytecode-array-builder-unittest.cc [turbofan] Remove special JSForInStep and JSForInDone. 2016-08-29 08:47:33 +00:00
bytecode-array-iterator-unittest.cc [Interpreter] Avoid accessing Isolate from during bytecode generation. 2016-08-18 13:42:22 +00:00
bytecode-array-writer-unittest.cc [turbofan] Remove special JSForInStep and JSForInDone. 2016-08-29 08:47:33 +00:00
bytecode-dead-code-optimizer-unittest.cc [Interpreter] Avoid accessing Isolate from during bytecode generation. 2016-08-18 13:42:22 +00:00
bytecode-decoder-unittest.cc [interpreter] Add register output to ObjectLiteral 2016-08-09 10:30:29 +00:00
bytecode-peephole-optimizer-unittest.cc [interpreter] Make the binary op with Smi bytecode handlers collect type feedback. 2016-08-23 14:59:33 +00:00
bytecode-pipeline-unittest.cc [ic] Don't pass receiver and name to LoadGlobalIC. 2016-06-27 08:44:53 +00:00
bytecode-register-allocator-unittest.cc [interpreter] Add support for scalable operands. 2016-03-21 17:09:49 +00:00
bytecode-register-optimizer-unittest.cc [Interpreter] Avoid accessing Isolate from during bytecode generation. 2016-08-18 13:42:22 +00:00
bytecode-utils.h [interpreter] Introduce bytecode generation pipeline. 2016-05-12 19:20:04 +00:00
bytecodes-unittest.cc [interpreter] Add register output to ObjectLiteral 2016-08-09 10:30:29 +00:00
constant-array-builder-unittest.cc [Interpreter] Avoid accessing Isolate from during bytecode generation. 2016-08-18 13:42:22 +00:00
interpreter-assembler-unittest.cc [stubs] Call interface descriptors cleanup. 2016-07-26 14:56:35 +00:00
interpreter-assembler-unittest.h [compiler] Remove compiler internals from CodeAssembler. 2016-08-12 12:57:48 +00:00