OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/interpreter/bytecode-array-builder.h" | 7 #include "src/interpreter/bytecode-array-builder.h" |
8 #include "src/interpreter/bytecode-array-iterator.h" | 8 #include "src/interpreter/bytecode-array-iterator.h" |
9 #include "test/unittests/test-utils.h" | 9 #include "test/unittests/test-utils.h" |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 .LoadNull() | 34 .LoadNull() |
35 .LoadTheHole() | 35 .LoadTheHole() |
36 .LoadTrue() | 36 .LoadTrue() |
37 .LoadFalse(); | 37 .LoadFalse(); |
38 | 38 |
39 // Emit accumulator transfers. | 39 // Emit accumulator transfers. |
40 Register reg(0); | 40 Register reg(0); |
41 builder.LoadAccumulatorWithRegister(reg).StoreAccumulatorInRegister(reg); | 41 builder.LoadAccumulatorWithRegister(reg).StoreAccumulatorInRegister(reg); |
42 | 42 |
43 // Emit global load / store operations. | 43 // Emit global load / store operations. |
44 builder.LoadGlobal(1); | 44 builder.LoadGlobal(1) |
45 builder.StoreGlobal(1, LanguageMode::SLOPPY); | 45 .StoreGlobal(1, LanguageMode::SLOPPY) |
| 46 .StoreGlobal(1, LanguageMode::STRICT); |
46 | 47 |
47 // Emit context operations. | 48 // Emit context operations. |
48 builder.PushContext(reg); | 49 builder.PushContext(reg); |
49 builder.PopContext(reg); | 50 builder.PopContext(reg); |
50 builder.LoadContextSlot(reg, 1); | 51 builder.LoadContextSlot(reg, 1); |
51 | 52 |
52 // Emit load / store property operations. | 53 // Emit load / store property operations. |
53 builder.LoadNamedProperty(reg, 0, LanguageMode::SLOPPY) | 54 builder.LoadNamedProperty(reg, 0, LanguageMode::SLOPPY) |
54 .LoadKeyedProperty(reg, 0, LanguageMode::SLOPPY) | 55 .LoadKeyedProperty(reg, 0, LanguageMode::SLOPPY) |
55 .StoreNamedProperty(reg, reg, 0, LanguageMode::SLOPPY) | 56 .StoreNamedProperty(reg, reg, 0, LanguageMode::SLOPPY) |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 | 476 |
476 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn); | 477 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn); |
477 iterator.Advance(); | 478 iterator.Advance(); |
478 CHECK(iterator.done()); | 479 CHECK(iterator.done()); |
479 } | 480 } |
480 | 481 |
481 | 482 |
482 } // namespace interpreter | 483 } // namespace interpreter |
483 } // namespace internal | 484 } // namespace internal |
484 } // namespace v8 | 485 } // namespace v8 |
OLD | NEW |