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

Unified Diff: src/compiler/pipeline.h

Issue 1704033002: [wasm] WasmRunner can run tests with I64 parameters and return value. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@new_wasm_runner
Patch Set: Created 4 years, 10 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
Index: src/compiler/pipeline.h
diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
index edb8191862141604e5d0a6d52fa7eff23173c003..15c625f0cf88cc2eba278a2b8aaf36df162d60b6 100644
--- a/src/compiler/pipeline.h
+++ b/src/compiler/pipeline.h
@@ -52,10 +52,9 @@ class Pipeline {
// Run the pipeline on a machine graph and generate code. If {schedule} is
// {nullptr}, then compute a new schedule for code generation.
- static Handle<Code> GenerateCodeForTesting(CompilationInfo* info,
- CallDescriptor* call_descriptor,
- Graph* graph,
- Schedule* schedule = nullptr);
+ static Handle<Code> GenerateCodeForTesting(
+ CompilationInfo* info, const CallDescriptor* call_descriptor,
+ Graph* graph, Schedule* schedule = nullptr);
private:
// Helpers for executing pipeline phases.
@@ -68,9 +67,9 @@ class Pipeline {
void BeginPhaseKind(const char* phase_kind);
void RunPrintAndVerify(const char* phase, bool untyped = false);
- Handle<Code> ScheduleAndGenerateCode(CallDescriptor* call_descriptor);
+ Handle<Code> ScheduleAndGenerateCode(const CallDescriptor* call_descriptor);
void AllocateRegisters(const RegisterConfiguration* config,
- CallDescriptor* descriptor, bool run_verifier);
+ const CallDescriptor* descriptor, bool run_verifier);
CompilationInfo* info() const { return info_; }
Isolate* isolate() const;

Powered by Google App Engine
This is Rietveld 408576698