Chromium Code Reviews

Side by Side Diff: src/compiler/wasm-compiler.cc

Issue 2520943002: [wasm] Implement official wasm text format (Closed)
Patch Set: Return a value even after UNREACHABLE Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
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/compiler/wasm-compiler.h" 5 #include "src/compiler/wasm-compiler.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "src/isolate-inl.h" 9 #include "src/isolate-inl.h"
10 10
(...skipping 16 matching lines...)
27 #include "src/compiler/pipeline.h" 27 #include "src/compiler/pipeline.h"
28 #include "src/compiler/simd-scalar-lowering.h" 28 #include "src/compiler/simd-scalar-lowering.h"
29 #include "src/compiler/zone-stats.h" 29 #include "src/compiler/zone-stats.h"
30 30
31 #include "src/code-factory.h" 31 #include "src/code-factory.h"
32 #include "src/code-stubs.h" 32 #include "src/code-stubs.h"
33 #include "src/factory.h" 33 #include "src/factory.h"
34 #include "src/log-inl.h" 34 #include "src/log-inl.h"
35 35
36 #include "src/wasm/ast-decoder.h" 36 #include "src/wasm/ast-decoder.h"
37 #include "src/wasm/s-expr.h"
37 #include "src/wasm/wasm-module.h" 38 #include "src/wasm/wasm-module.h"
38 #include "src/wasm/wasm-opcodes.h" 39 #include "src/wasm/wasm-opcodes.h"
39 40
40 // TODO(titzer): pull WASM_64 up to a common header. 41 // TODO(titzer): pull WASM_64 up to a common header.
41 #if !V8_TARGET_ARCH_32_BIT || V8_TARGET_ARCH_X64 42 #if !V8_TARGET_ARCH_32_BIT || V8_TARGET_ARCH_X64
42 #define WASM_64 1 43 #define WASM_64 1
43 #else 44 #else
44 #define WASM_64 0 45 #define WASM_64 0
45 #endif 46 #endif
46 47
(...skipping 3303 matching lines...)
3350 3351
3351 SimdScalarLowering(graph, machine, common, jsgraph_->zone(), function_->sig) 3352 SimdScalarLowering(graph, machine, common, jsgraph_->zone(), function_->sig)
3352 .LowerGraph(); 3353 .LowerGraph();
3353 3354
3354 int index = static_cast<int>(function_->func_index); 3355 int index = static_cast<int>(function_->func_index);
3355 3356
3356 if (index >= FLAG_trace_wasm_ast_start && index < FLAG_trace_wasm_ast_end) { 3357 if (index >= FLAG_trace_wasm_ast_start && index < FLAG_trace_wasm_ast_end) {
3357 OFStream os(stdout); 3358 OFStream os(stdout);
3358 PrintAst(isolate_->allocator(), body, os, nullptr); 3359 PrintAst(isolate_->allocator(), body, os, nullptr);
3359 } 3360 }
3361 if (index >= FLAG_trace_wasm_sexpr_start &&
3362 index < FLAG_trace_wasm_sexpr_end) {
3363 OFStream os(stdout);
3364 PrintSExpr(module_env_->module, function_->func_index, os, nullptr);
3365 }
3360 if (FLAG_trace_wasm_decode_time) { 3366 if (FLAG_trace_wasm_decode_time) {
3361 *decode_ms = decode_timer.Elapsed().InMillisecondsF(); 3367 *decode_ms = decode_timer.Elapsed().InMillisecondsF();
3362 } 3368 }
3363 return source_position_table; 3369 return source_position_table;
3364 } 3370 }
3365 3371
3366 WasmCompilationUnit::WasmCompilationUnit(wasm::ErrorThrower* thrower, 3372 WasmCompilationUnit::WasmCompilationUnit(wasm::ErrorThrower* thrower,
3367 Isolate* isolate, 3373 Isolate* isolate,
3368 wasm::ModuleEnv* module_env, 3374 wasm::ModuleEnv* module_env,
3369 const wasm::WasmFunction* function, 3375 const wasm::WasmFunction* function,
(...skipping 119 matching lines...)
3489 function_->code_start_offset), 3495 function_->code_start_offset),
3490 compile_ms); 3496 compile_ms);
3491 } 3497 }
3492 3498
3493 return code; 3499 return code;
3494 } 3500 }
3495 3501
3496 } // namespace compiler 3502 } // namespace compiler
3497 } // namespace internal 3503 } // namespace internal
3498 } // namespace v8 3504 } // namespace v8
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/flag-definitions.h » ('j') | src/wasm/s-expr.h » ('J')

Powered by Google App Engine