OLD | NEW |
| (Empty) |
1 // Copyright 2016 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "src/v8.h" | |
6 | |
7 #include "src/interpreter/source-position-table.h" | |
8 #include "test/unittests/test-utils.h" | |
9 | |
10 namespace v8 { | |
11 namespace internal { | |
12 namespace interpreter { | |
13 | |
14 class SourcePositionTableTest : public TestWithIsolateAndZone { | |
15 public: | |
16 SourcePositionTableTest() {} | |
17 ~SourcePositionTableTest() override {} | |
18 }; | |
19 | |
20 // Some random offsets, mostly at 'suspicious' bit boundaries. | |
21 static int offsets[] = {0, 1, 2, 3, 4, 30, 31, 32, | |
22 33, 62, 63, 64, 65, 126, 127, 128, | |
23 129, 250, 1000, 9999, 12000, 31415926}; | |
24 | |
25 TEST_F(SourcePositionTableTest, EncodeStatement) { | |
26 SourcePositionTableBuilder builder(isolate(), zone()); | |
27 for (int i = 0; i < arraysize(offsets); i++) { | |
28 builder.AddStatementPosition(offsets[i], offsets[i]); | |
29 } | |
30 | |
31 // To test correctness, we rely on the assertions in ToSourcePositionTable(). | |
32 // (Also below.) | |
33 CHECK(!builder.ToSourcePositionTable().is_null()); | |
34 } | |
35 | |
36 TEST_F(SourcePositionTableTest, EncodeExpression) { | |
37 SourcePositionTableBuilder builder(isolate(), zone()); | |
38 for (int i = 0; i < arraysize(offsets); i++) { | |
39 builder.AddExpressionPosition(offsets[i], offsets[i]); | |
40 } | |
41 CHECK(!builder.ToSourcePositionTable().is_null()); | |
42 } | |
43 | |
44 TEST_F(SourcePositionTableTest, EncodeAscending) { | |
45 SourcePositionTableBuilder builder(isolate(), zone()); | |
46 | |
47 int accumulator = 0; | |
48 for (int i = 0; i < arraysize(offsets); i++) { | |
49 accumulator += offsets[i]; | |
50 if (i % 2) { | |
51 builder.AddStatementPosition(accumulator, accumulator); | |
52 } else { | |
53 builder.AddExpressionPosition(accumulator, accumulator); | |
54 } | |
55 } | |
56 | |
57 // Also test negative offsets: | |
58 for (int i = 0; i < arraysize(offsets); i++) { | |
59 accumulator -= offsets[i]; | |
60 if (i % 2) { | |
61 builder.AddStatementPosition(accumulator, accumulator); | |
62 } else { | |
63 builder.AddExpressionPosition(accumulator, accumulator); | |
64 } | |
65 } | |
66 | |
67 CHECK(!builder.ToSourcePositionTable().is_null()); | |
68 } | |
69 | |
70 } // namespace interpreter | |
71 } // namespace internal | |
72 } // namespace v8 | |
OLD | NEW |