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/compiler/access-builder.h" | 5 #include "src/compiler/access-builder.h" |
6 | 6 |
7 #include "src/compiler/type-cache.h" | 7 #include "src/compiler/type-cache.h" |
8 #include "src/contexts.h" | 8 #include "src/contexts.h" |
9 #include "src/frames.h" | 9 #include "src/frames.h" |
10 #include "src/handles-inl.h" | 10 #include "src/handles-inl.h" |
11 #include "src/heap/heap.h" | 11 #include "src/heap/heap.h" |
12 | 12 |
13 namespace v8 { | 13 namespace v8 { |
14 namespace internal { | 14 namespace internal { |
15 namespace compiler { | 15 namespace compiler { |
16 | 16 |
17 // static | 17 // static |
18 FieldAccess AccessBuilder::ForExternalDoubleValue() { | 18 FieldAccess AccessBuilder::ForExternalDoubleValue() { |
19 FieldAccess access = {kUntaggedBase, 0, | 19 FieldAccess access = {kUntaggedBase, 0, |
20 MaybeHandle<Name>(), Type::Number(), | 20 MaybeHandle<Name>(), Type::Number(), |
21 MachineType::Float64(), kNoWriteBarrier}; | 21 MachineType::Float64(), kNoWriteBarrier}; |
22 return access; | 22 return access; |
23 } | 23 } |
24 | 24 |
25 // static | 25 // static |
| 26 FieldAccess AccessBuilder::ForExternalUint8Value() { |
| 27 FieldAccess access = {kUntaggedBase, 0, |
| 28 MaybeHandle<Name>(), TypeCache::Get().kUint8, |
| 29 MachineType::Uint8(), kNoWriteBarrier}; |
| 30 return access; |
| 31 } |
| 32 |
| 33 // static |
26 FieldAccess AccessBuilder::ForMap() { | 34 FieldAccess AccessBuilder::ForMap() { |
27 FieldAccess access = { | 35 FieldAccess access = { |
28 kTaggedBase, HeapObject::kMapOffset, MaybeHandle<Name>(), | 36 kTaggedBase, HeapObject::kMapOffset, MaybeHandle<Name>(), |
29 Type::OtherInternal(), MachineType::TaggedPointer(), kMapWriteBarrier}; | 37 Type::OtherInternal(), MachineType::TaggedPointer(), kMapWriteBarrier}; |
30 return access; | 38 return access; |
31 } | 39 } |
32 | 40 |
33 | 41 |
34 // static | 42 // static |
35 FieldAccess AccessBuilder::ForHeapNumberValue() { | 43 FieldAccess AccessBuilder::ForHeapNumberValue() { |
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 } | 835 } |
828 UNREACHABLE(); | 836 UNREACHABLE(); |
829 ElementAccess access = {kUntaggedBase, 0, Type::None(), MachineType::None(), | 837 ElementAccess access = {kUntaggedBase, 0, Type::None(), MachineType::None(), |
830 kNoWriteBarrier}; | 838 kNoWriteBarrier}; |
831 return access; | 839 return access; |
832 } | 840 } |
833 | 841 |
834 } // namespace compiler | 842 } // namespace compiler |
835 } // namespace internal | 843 } // namespace internal |
836 } // namespace v8 | 844 } // namespace v8 |
OLD | NEW |