deps: update v8 to 4.3.61.21
[platform/upstream/nodejs.git] / deps / v8 / src / lithium-codegen.h
1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef V8_LITHIUM_CODEGEN_H_
6 #define V8_LITHIUM_CODEGEN_H_
7
8 #include "src/v8.h"
9
10 #include "src/bailout-reason.h"
11 #include "src/compiler.h"
12 #include "src/deoptimizer.h"
13
14 namespace v8 {
15 namespace internal {
16
17 class LInstruction;
18 class LPlatformChunk;
19
20 class LCodeGenBase BASE_EMBEDDED {
21  public:
22   LCodeGenBase(LChunk* chunk,
23                MacroAssembler* assembler,
24                CompilationInfo* info);
25   virtual ~LCodeGenBase() {}
26
27   // Simple accessors.
28   MacroAssembler* masm() const { return masm_; }
29   CompilationInfo* info() const { return info_; }
30   Isolate* isolate() const { return info_->isolate(); }
31   Factory* factory() const { return isolate()->factory(); }
32   Heap* heap() const { return isolate()->heap(); }
33   Zone* zone() const { return zone_; }
34   LPlatformChunk* chunk() const { return chunk_; }
35   HGraph* graph() const;
36
37   void FPRINTF_CHECKING Comment(const char* format, ...);
38   void DeoptComment(const Deoptimizer::DeoptInfo& deopt_info);
39   static Deoptimizer::DeoptInfo MakeDeoptInfo(
40       LInstruction* instr, Deoptimizer::DeoptReason deopt_reason);
41
42   bool GenerateBody();
43   virtual void GenerateBodyInstructionPre(LInstruction* instr) {}
44   virtual void GenerateBodyInstructionPost(LInstruction* instr) {}
45
46   virtual void EnsureSpaceForLazyDeopt(int space_needed) = 0;
47   virtual void RecordAndWritePosition(int position) = 0;
48
49   int GetNextEmittedBlock() const;
50
51   void RegisterWeakObjectsInOptimizedCode(Handle<Code> code);
52
53   // Check that an environment assigned via AssignEnvironment is actually being
54   // used. Redundant assignments keep things alive longer than necessary, and
55   // consequently lead to worse code, so it's important to minimize this.
56   void CheckEnvironmentUsage();
57
58  protected:
59   enum Status {
60     UNUSED,
61     GENERATING,
62     DONE,
63     ABORTED
64   };
65
66   LPlatformChunk* const chunk_;
67   MacroAssembler* const masm_;
68   CompilationInfo* const info_;
69   Zone* zone_;
70   Status status_;
71   int current_block_;
72   int current_instruction_;
73   const ZoneList<LInstruction*>* instructions_;
74   int last_lazy_deopt_pc_;
75
76   bool is_unused() const { return status_ == UNUSED; }
77   bool is_generating() const { return status_ == GENERATING; }
78   bool is_done() const { return status_ == DONE; }
79   bool is_aborted() const { return status_ == ABORTED; }
80
81   void Abort(BailoutReason reason);
82   void Retry(BailoutReason reason);
83
84   // Methods for code dependencies.
85   void AddDeprecationDependency(Handle<Map> map);
86   void AddStabilityDependency(Handle<Map> map);
87 };
88
89
90 } }  // namespace v8::internal
91
92 #endif  // V8_LITHIUM_CODEGEN_H_