| Index: src/compiler/code-generator.h
 | 
| diff --git a/src/compiler/code-generator.h b/src/compiler/code-generator.h
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..185efad4a7b3da7ac869323cbc1daf589ce15ed0
 | 
| --- /dev/null
 | 
| +++ b/src/compiler/code-generator.h
 | 
| @@ -0,0 +1,144 @@
 | 
| +// 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_CODE_GENERATOR_H_
 | 
| +#define V8_COMPILER_CODE_GENERATOR_H_
 | 
| +
 | 
| +#include <deque>
 | 
| +
 | 
| +#include "src/compiler/gap-resolver.h"
 | 
| +#include "src/compiler/instruction.h"
 | 
| +#include "src/deoptimizer.h"
 | 
| +#include "src/macro-assembler.h"
 | 
| +#include "src/safepoint-table.h"
 | 
| +
 | 
| +namespace v8 {
 | 
| +namespace internal {
 | 
| +namespace compiler {
 | 
| +
 | 
| +// Generates native code for a sequence of instructions.
 | 
| +class CodeGenerator V8_FINAL : public GapResolver::Assembler {
 | 
| + public:
 | 
| +  explicit CodeGenerator(InstructionSequence* code);
 | 
| +
 | 
| +  // Generate native code.
 | 
| +  Handle<Code> GenerateCode();
 | 
| +
 | 
| +  InstructionSequence* code() const { return code_; }
 | 
| +  Frame* frame() const { return code()->frame(); }
 | 
| +  Graph* graph() const { return code()->graph(); }
 | 
| +  Isolate* isolate() const { return zone()->isolate(); }
 | 
| +  Linkage* linkage() const { return code()->linkage(); }
 | 
| +  Schedule* schedule() const { return code()->schedule(); }
 | 
| +
 | 
| + private:
 | 
| +  MacroAssembler* masm() { return &masm_; }
 | 
| +  GapResolver* resolver() { return &resolver_; }
 | 
| +  SafepointTableBuilder* safepoints() { return &safepoints_; }
 | 
| +  Zone* zone() const { return code()->zone(); }
 | 
| +
 | 
| +  // Checks if {block} will appear directly after {current_block_} when
 | 
| +  // assembling code, in which case, a fall-through can be used.
 | 
| +  bool IsNextInAssemblyOrder(const BasicBlock* block) const {
 | 
| +    return block->rpo_number_ == (current_block_->rpo_number_ + 1) &&
 | 
| +           block->deferred_ == current_block_->deferred_;
 | 
| +  }
 | 
| +
 | 
| +  // Record a safepoint with the given pointer map.
 | 
| +  void RecordSafepoint(PointerMap* pointers, Safepoint::Kind kind,
 | 
| +                       int arguments, Safepoint::DeoptMode deopt_mode);
 | 
| +
 | 
| +  // Assemble code for the specified instruction.
 | 
| +  void AssembleInstruction(Instruction* instr);
 | 
| +  void AssembleSourcePosition(SourcePositionInstruction* instr);
 | 
| +  void AssembleGap(GapInstruction* gap);
 | 
| +
 | 
| +  // ===========================================================================
 | 
| +  // ============= Architecture-specific code generation methods. ==============
 | 
| +  // ===========================================================================
 | 
| +
 | 
| +  void AssembleArchInstruction(Instruction* instr);
 | 
| +  void AssembleArchBranch(Instruction* instr, FlagsCondition condition);
 | 
| +  void AssembleArchBoolean(Instruction* instr, FlagsCondition condition);
 | 
| +
 | 
| +  // Generates an architecture-specific, descriptor-specific prologue
 | 
| +  // to set up a stack frame.
 | 
| +  void AssemblePrologue();
 | 
| +  // Generates an architecture-specific, descriptor-specific return sequence
 | 
| +  // to tear down a stack frame.
 | 
| +  void AssembleReturn();
 | 
| +
 | 
| +  // ===========================================================================
 | 
| +  // ============== Architecture-specific gap resolver methods. ================
 | 
| +  // ===========================================================================
 | 
| +
 | 
| +  // Interface used by the gap resolver to emit moves and swaps.
 | 
| +  virtual void AssembleMove(InstructionOperand* source,
 | 
| +                            InstructionOperand* destination) V8_OVERRIDE;
 | 
| +  virtual void AssembleSwap(InstructionOperand* source,
 | 
| +                            InstructionOperand* destination) V8_OVERRIDE;
 | 
| +
 | 
| +  // ===========================================================================
 | 
| +  // Deoptimization table construction
 | 
| +  void RecordLazyDeoptimizationEntry(Instruction* instr);
 | 
| +  void PopulateDeoptimizationData(Handle<Code> code);
 | 
| +  int DefineDeoptimizationLiteral(Handle<Object> literal);
 | 
| +  void BuildTranslation(Instruction* instr, int deoptimization_id);
 | 
| +  void AddNopForSmiCodeInlining();
 | 
| +#if DEBUG
 | 
| +  static bool IsNopForSmiCodeInlining(Handle<Code> code, int start_pc,
 | 
| +                                      int end_pc);
 | 
| +#endif  // DEBUG
 | 
| +  // ===========================================================================
 | 
| +
 | 
| +  class LazyDeoptimizationEntry V8_FINAL {
 | 
| +   public:
 | 
| +    LazyDeoptimizationEntry(int position_after_call, Label* continuation,
 | 
| +                            Label* deoptimization)
 | 
| +        : position_after_call_(position_after_call),
 | 
| +          continuation_(continuation),
 | 
| +          deoptimization_(deoptimization) {}
 | 
| +
 | 
| +    int position_after_call() const { return position_after_call_; }
 | 
| +    Label* continuation() const { return continuation_; }
 | 
| +    Label* deoptimization() const { return deoptimization_; }
 | 
| +
 | 
| +   private:
 | 
| +    int position_after_call_;
 | 
| +    Label* continuation_;
 | 
| +    Label* deoptimization_;
 | 
| +  };
 | 
| +
 | 
| +  struct DeoptimizationState : ZoneObject {
 | 
| +    int translation_id_;
 | 
| +
 | 
| +    explicit DeoptimizationState(int translation_id)
 | 
| +        : translation_id_(translation_id) {}
 | 
| +  };
 | 
| +
 | 
| +  typedef std::deque<LazyDeoptimizationEntry,
 | 
| +                     zone_allocator<LazyDeoptimizationEntry> >
 | 
| +      LazyDeoptimizationEntries;
 | 
| +  typedef std::deque<DeoptimizationState*,
 | 
| +                     zone_allocator<DeoptimizationState*> >
 | 
| +      DeoptimizationStates;
 | 
| +  typedef std::deque<Handle<Object>, zone_allocator<Handle<Object> > > Literals;
 | 
| +
 | 
| +  InstructionSequence* code_;
 | 
| +  BasicBlock* current_block_;
 | 
| +  SourcePosition current_source_position_;
 | 
| +  MacroAssembler masm_;
 | 
| +  GapResolver resolver_;
 | 
| +  SafepointTableBuilder safepoints_;
 | 
| +  LazyDeoptimizationEntries lazy_deoptimization_entries_;
 | 
| +  DeoptimizationStates deoptimization_states_;
 | 
| +  Literals deoptimization_literals_;
 | 
| +  TranslationBuffer translations_;
 | 
| +};
 | 
| +
 | 
| +}  // namespace compiler
 | 
| +}  // namespace internal
 | 
| +}  // namespace v8
 | 
| +
 | 
| +#endif  // V8_COMPILER_CODE_GENERATOR_H
 | 
| 
 |