OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_COMPILER_CODE_GENERATOR_H_ | 5 #ifndef V8_COMPILER_CODE_GENERATOR_H_ |
6 #define V8_COMPILER_CODE_GENERATOR_H_ | 6 #define V8_COMPILER_CODE_GENERATOR_H_ |
7 | 7 |
8 #include "src/compiler/gap-resolver.h" | 8 #include "src/compiler/gap-resolver.h" |
9 #include "src/compiler/instruction.h" | 9 #include "src/compiler/instruction.h" |
10 #include "src/deoptimizer.h" | 10 #include "src/deoptimizer.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 // assembling code, in which case, a fall-through can be used. | 54 // assembling code, in which case, a fall-through can be used. |
55 bool IsNextInAssemblyOrder(RpoNumber block) const; | 55 bool IsNextInAssemblyOrder(RpoNumber block) const; |
56 | 56 |
57 // Record a safepoint with the given pointer map. | 57 // Record a safepoint with the given pointer map. |
58 void RecordSafepoint(PointerMap* pointers, Safepoint::Kind kind, | 58 void RecordSafepoint(PointerMap* pointers, Safepoint::Kind kind, |
59 int arguments, Safepoint::DeoptMode deopt_mode); | 59 int arguments, Safepoint::DeoptMode deopt_mode); |
60 | 60 |
61 // Assemble code for the specified instruction. | 61 // Assemble code for the specified instruction. |
62 void AssembleInstruction(Instruction* instr); | 62 void AssembleInstruction(Instruction* instr); |
63 void AssembleSourcePosition(SourcePositionInstruction* instr); | 63 void AssembleSourcePosition(SourcePositionInstruction* instr); |
64 void AssembleGap(GapInstruction* gap); | 64 void AssembleGaps(Instruction* instr); |
65 | 65 |
66 // =========================================================================== | 66 // =========================================================================== |
67 // ============= Architecture-specific code generation methods. ============== | 67 // ============= Architecture-specific code generation methods. ============== |
68 // =========================================================================== | 68 // =========================================================================== |
69 | 69 |
70 void AssembleArchInstruction(Instruction* instr); | 70 void AssembleArchInstruction(Instruction* instr); |
71 void AssembleArchJump(RpoNumber target); | 71 void AssembleArchJump(RpoNumber target); |
72 void AssembleArchBranch(Instruction* instr, BranchInfo* branch); | 72 void AssembleArchBranch(Instruction* instr, BranchInfo* branch); |
73 void AssembleArchBoolean(Instruction* instr, FlagsCondition condition); | 73 void AssembleArchBoolean(Instruction* instr, FlagsCondition condition); |
74 void AssembleArchLookupSwitch(Instruction* instr); | 74 void AssembleArchLookupSwitch(Instruction* instr); |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 JumpTable* jump_tables_; | 172 JumpTable* jump_tables_; |
173 OutOfLineCode* ools_; | 173 OutOfLineCode* ools_; |
174 int osr_pc_offset_; | 174 int osr_pc_offset_; |
175 }; | 175 }; |
176 | 176 |
177 } // namespace compiler | 177 } // namespace compiler |
178 } // namespace internal | 178 } // namespace internal |
179 } // namespace v8 | 179 } // namespace v8 |
180 | 180 |
181 #endif // V8_COMPILER_CODE_GENERATOR_H | 181 #endif // V8_COMPILER_CODE_GENERATOR_H |
OLD | NEW |