// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_COMPILER_PIPELINE_H_ #define V8_COMPILER_PIPELINE_H_ // Clients of this interface shouldn't depend on lots of compiler internals. // Do not include anything from src/compiler here! #include "src/globals.h" #include "src/objects.h" #include "src/objects/code.h" #include "src/zone/zone-containers.h" namespace v8 { namespace internal { class OptimizedCompilationInfo; class OptimizedCompilationJob; class RegisterConfiguration; class JumpOptimizationInfo; namespace wasm { enum ModuleOrigin : uint8_t; } // namespace wasm namespace compiler { class CallDescriptor; class JSGraph; class Graph; class InstructionSequence; class Schedule; class SourcePositionTable; class WasmCompilationData; class Pipeline : public AllStatic { public: // Returns a new compilation job for the given function. static OptimizedCompilationJob* NewCompilationJob(Handle function, bool has_script); // Returns a new compilation job for the WebAssembly compilation info. static OptimizedCompilationJob* NewWasmCompilationJob( OptimizedCompilationInfo* info, Isolate* isolate, JSGraph* jsgraph, CallDescriptor* call_descriptor, SourcePositionTable* source_positions, WasmCompilationData* wasm_compilation_data, wasm::ModuleOrigin wasm_origin); // 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. static Handle GenerateCodeForCodeStub( Isolate* isolate, CallDescriptor* call_descriptor, Graph* graph, Schedule* schedule, Code::Kind kind, const char* debug_name, uint32_t stub_key, int32_t builtin_index, JumpOptimizationInfo* jump_opt, PoisoningMitigationLevel poisoning_enabled); // Run the entire pipeline and generate a handle to a code object suitable for // testing. static Handle GenerateCodeForTesting(OptimizedCompilationInfo* info, Isolate* isolate); // Run the pipeline on a machine graph and generate code. If {schedule} is // {nullptr}, then compute a new schedule for code generation. static Handle GenerateCodeForTesting(OptimizedCompilationInfo* info, Isolate* isolate, Graph* graph, Schedule* schedule = nullptr); // Run just the register allocator phases. V8_EXPORT_PRIVATE static bool AllocateRegistersForTesting( const RegisterConfiguration* config, InstructionSequence* sequence, bool run_verifier); // Run the pipeline on a machine graph and generate code. If {schedule} is // {nullptr}, then compute a new schedule for code generation. V8_EXPORT_PRIVATE static Handle GenerateCodeForTesting( OptimizedCompilationInfo* info, Isolate* isolate, CallDescriptor* call_descriptor, Graph* graph, Schedule* schedule = nullptr, SourcePositionTable* source_positions = nullptr); private: DISALLOW_IMPLICIT_CONSTRUCTORS(Pipeline); }; } // namespace compiler } // namespace internal } // namespace v8 #endif // V8_COMPILER_PIPELINE_H_