Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Unified Diff: src/compiler/pipeline.h

Issue 1912103002: [wasm] Store function names in the wasm object (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-offset-table-2
Patch Set: fix gcmole and signed/unsigned comparison issue Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/compiler/pipeline.cc » ('j') | src/compiler/pipeline.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/pipeline.h
diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
index d0284a61aac44cf28962e18ad060fda4b5b89e00..6a034b0ad2a95482274abdc0a53e3009d044ba5c 100644
--- a/src/compiler/pipeline.h
+++ b/src/compiler/pipeline.h
@@ -35,10 +35,10 @@ class Pipeline {
// Run the pipeline on a machine graph, compute a new schedule and generate
// code.
- static Handle<Code> GenerateWASMCode(CompilationInfo* info,
- CallDescriptor* call_descriptor,
- Graph* graph,
- SourcePositionTable* source_positions);
+ static Handle<Code> GenerateWASMCode(
+ CompilationInfo* info, CallDescriptor* call_descriptor, Graph* graph,
+ SourcePositionTable* source_positions,
+ Handle<Object> wasm_obj = Handle<Object>(), uint32_t func_index = 0);
titzer 2016/04/22 13:21:07 Let's not have defaults for these last parameters.
Clemens Hammacher 2016/04/22 14:38:40 OK. They were only used from the tests anyway.
// Run the pipeline on a machine graph and generate code. The {schedule} must
// be valid, hence the given {graph} does not need to be schedulable.
« no previous file with comments | « no previous file | src/compiler/pipeline.cc » ('j') | src/compiler/pipeline.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698