OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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/api-natives.h" | 5 #include "src/api-natives.h" |
6 #include "src/api.h" | 6 #include "src/api.h" |
| 7 #include "src/asmjs/asm-typer.h" |
7 #include "src/asmjs/asm-wasm-builder.h" | 8 #include "src/asmjs/asm-wasm-builder.h" |
8 #include "src/asmjs/typing-asm.h" | |
9 #include "src/assert-scope.h" | 9 #include "src/assert-scope.h" |
10 #include "src/ast/ast.h" | 10 #include "src/ast/ast.h" |
11 #include "src/ast/scopes.h" | 11 #include "src/ast/scopes.h" |
12 #include "src/execution.h" | 12 #include "src/execution.h" |
13 #include "src/factory.h" | 13 #include "src/factory.h" |
14 #include "src/handles.h" | 14 #include "src/handles.h" |
15 #include "src/isolate.h" | 15 #include "src/isolate.h" |
16 #include "src/objects.h" | 16 #include "src/objects.h" |
17 #include "src/parsing/parser.h" | 17 #include "src/parsing/parser.h" |
18 | 18 |
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 int unused_property_fields = in_object_properties - pre_allocated; | 502 int unused_property_fields = in_object_properties - pre_allocated; |
503 Handle<Map> map = Map::CopyInitialMap( | 503 Handle<Map> map = Map::CopyInitialMap( |
504 prev_map, instance_size, in_object_properties, unused_property_fields); | 504 prev_map, instance_size, in_object_properties, unused_property_fields); |
505 | 505 |
506 context->set_wasm_function_map(*map); | 506 context->set_wasm_function_map(*map); |
507 } | 507 } |
508 } | 508 } |
509 | 509 |
510 } // namespace internal | 510 } // namespace internal |
511 } // namespace v8 | 511 } // namespace v8 |
OLD | NEW |