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/asmjs/asm-js.h" | 5 #include "src/asmjs/asm-js.h" |
6 | 6 |
7 #include "src/api-natives.h" | 7 #include "src/api-natives.h" |
8 #include "src/api.h" | 8 #include "src/api.h" |
9 #include "src/asmjs/asm-typer.h" | 9 #include "src/asmjs/asm-typer.h" |
10 #include "src/asmjs/asm-wasm-builder.h" | 10 #include "src/asmjs/asm-wasm-builder.h" |
11 #include "src/assert-scope.h" | 11 #include "src/assert-scope.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/parse-info.h" | 17 #include "src/parsing/parse-info.h" |
18 | 18 |
19 #include "src/wasm/module-decoder.h" | 19 #include "src/wasm/module-decoder.h" |
20 #include "src/wasm/wasm-js.h" | 20 #include "src/wasm/wasm-js.h" |
21 #include "src/wasm/wasm-module-builder.h" | 21 #include "src/wasm/wasm-module-builder.h" |
22 #include "src/wasm/wasm-module.h" | 22 #include "src/wasm/wasm-module.h" |
| 23 #include "src/wasm/wasm-objects.h" |
23 #include "src/wasm/wasm-result.h" | 24 #include "src/wasm/wasm-result.h" |
24 | 25 |
25 typedef uint8_t byte; | 26 typedef uint8_t byte; |
26 | 27 |
27 using v8::internal::wasm::ErrorThrower; | 28 using v8::internal::wasm::ErrorThrower; |
28 | 29 |
29 namespace v8 { | 30 namespace v8 { |
30 namespace internal { | 31 namespace internal { |
31 | 32 |
32 namespace { | 33 namespace { |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 i::Object::GetProperty(module_object, single_function_name); | 256 i::Object::GetProperty(module_object, single_function_name); |
256 if (!single_function.is_null() && | 257 if (!single_function.is_null() && |
257 !single_function.ToHandleChecked()->IsUndefined(isolate)) { | 258 !single_function.ToHandleChecked()->IsUndefined(isolate)) { |
258 return single_function; | 259 return single_function; |
259 } | 260 } |
260 return module_object; | 261 return module_object; |
261 } | 262 } |
262 | 263 |
263 } // namespace internal | 264 } // namespace internal |
264 } // namespace v8 | 265 } // namespace v8 |
OLD | NEW |