// Copyright 2013 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_BACKEND_CODE_GENERATOR_IMPL_H_ #define V8_COMPILER_BACKEND_CODE_GENERATOR_IMPL_H_ #include "src/codegen/macro-assembler.h" #include "src/compiler/backend/code-generator.h" #include "src/compiler/backend/instruction.h" #include "src/compiler/linkage.h" #include "src/compiler/opcodes.h" namespace v8 { namespace internal { namespace compiler { // Converts InstructionOperands from a given instruction to // architecture-specific // registers and operands after they have been assigned by the register // allocator. class InstructionOperandConverter { … }; // Deoptimization exit. class DeoptimizationExit : public ZoneObject { … }; // Generator for out-of-line code that is emitted after the main code is done. class OutOfLineCode : public ZoneObject { … }; } // namespace compiler } // namespace internal } // namespace v8 #endif // V8_COMPILER_BACKEND_CODE_GENERATOR_IMPL_H_