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 22 matching lines...) Expand all Loading... |
33 .LoadUndefined() | 33 .LoadUndefined() |
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 operations. | 43 // Emit global load / store operations. |
44 builder.LoadGlobal(1); | 44 builder.LoadGlobal(1); |
| 45 builder.StoreGlobal(1, LanguageMode::SLOPPY); |
| 46 |
| 47 // Emit context load operations. |
| 48 builder.LoadContextSlot(reg, 1); |
45 | 49 |
46 // Emit load / store property operations. | 50 // Emit load / store property operations. |
47 builder.LoadNamedProperty(reg, 0, LanguageMode::SLOPPY) | 51 builder.LoadNamedProperty(reg, 0, LanguageMode::SLOPPY) |
48 .LoadKeyedProperty(reg, 0, LanguageMode::SLOPPY) | 52 .LoadKeyedProperty(reg, 0, LanguageMode::SLOPPY) |
49 .StoreNamedProperty(reg, reg, 0, LanguageMode::SLOPPY) | 53 .StoreNamedProperty(reg, reg, 0, LanguageMode::SLOPPY) |
50 .StoreKeyedProperty(reg, reg, 0, LanguageMode::SLOPPY); | 54 .StoreKeyedProperty(reg, reg, 0, LanguageMode::SLOPPY); |
51 | 55 |
52 // Call operations. | 56 // Call operations. |
53 builder.Call(reg, reg, 0); | 57 builder.Call(reg, reg, 0); |
54 builder.CallRuntime(Runtime::kIsArray, reg, 0); | 58 builder.CallRuntime(Runtime::kIsArray, reg, 0); |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 | 439 |
436 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn); | 440 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn); |
437 iterator.Advance(); | 441 iterator.Advance(); |
438 CHECK(iterator.done()); | 442 CHECK(iterator.done()); |
439 } | 443 } |
440 | 444 |
441 | 445 |
442 } // namespace interpreter | 446 } // namespace interpreter |
443 } // namespace internal | 447 } // namespace internal |
444 } // namespace v8 | 448 } // namespace v8 |
OLD | NEW |