Ben Murdoch | c7cc028 | 2012-03-05 14:35:55 +0000 | [diff] [blame^] | 1 | // Copyright 2012 the V8 project authors. All rights reserved. |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 2 | // Redistribution and use in source and binary forms, with or without |
| 3 | // modification, are permitted provided that the following conditions are |
| 4 | // met: |
| 5 | // |
| 6 | // * Redistributions of source code must retain the above copyright |
| 7 | // notice, this list of conditions and the following disclaimer. |
| 8 | // * Redistributions in binary form must reproduce the above |
| 9 | // copyright notice, this list of conditions and the following |
| 10 | // disclaimer in the documentation and/or other materials provided |
| 11 | // with the distribution. |
| 12 | // * Neither the name of Google Inc. nor the names of its |
| 13 | // contributors may be used to endorse or promote products derived |
| 14 | // from this software without specific prior written permission. |
| 15 | // |
| 16 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | |
| 28 | #ifndef V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| 29 | #define V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| 30 | |
| 31 | #include "arm/lithium-arm.h" |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 32 | #include "arm/lithium-gap-resolver-arm.h" |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 33 | #include "deoptimizer.h" |
| 34 | #include "safepoint-table.h" |
| 35 | #include "scopes.h" |
| 36 | |
| 37 | namespace v8 { |
| 38 | namespace internal { |
| 39 | |
| 40 | // Forward declarations. |
| 41 | class LDeferredCode; |
| 42 | class SafepointGenerator; |
| 43 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 44 | class LCodeGen BASE_EMBEDDED { |
| 45 | public: |
| 46 | LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) |
| 47 | : chunk_(chunk), |
| 48 | masm_(assembler), |
| 49 | info_(info), |
| 50 | current_block_(-1), |
| 51 | current_instruction_(-1), |
| 52 | instructions_(chunk->instructions()), |
| 53 | deoptimizations_(4), |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 54 | deopt_jump_table_(4), |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 55 | deoptimization_literals_(8), |
| 56 | inlined_function_count_(0), |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 57 | scope_(info->scope()), |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 58 | status_(UNUSED), |
| 59 | deferred_(8), |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 60 | osr_pc_offset_(-1), |
Ben Murdoch | 2b4ba11 | 2012-01-20 14:57:15 +0000 | [diff] [blame] | 61 | last_lazy_deopt_pc_(0), |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame] | 62 | resolver_(this), |
| 63 | expected_safepoint_kind_(Safepoint::kSimple) { |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 64 | PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
| 65 | } |
| 66 | |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 67 | |
| 68 | // Simple accessors. |
| 69 | MacroAssembler* masm() const { return masm_; } |
| 70 | CompilationInfo* info() const { return info_; } |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 71 | Isolate* isolate() const { return info_->isolate(); } |
| 72 | Factory* factory() const { return isolate()->factory(); } |
| 73 | Heap* heap() const { return isolate()->heap(); } |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 74 | |
| 75 | // Support for converting LOperands to assembler types. |
| 76 | // LOperand must be a register. |
| 77 | Register ToRegister(LOperand* op) const; |
| 78 | |
| 79 | // LOperand is loaded into scratch, unless already a register. |
| 80 | Register EmitLoadRegister(LOperand* op, Register scratch); |
| 81 | |
| 82 | // LOperand must be a double register. |
| 83 | DoubleRegister ToDoubleRegister(LOperand* op) const; |
| 84 | |
| 85 | // LOperand is loaded into dbl_scratch, unless already a double register. |
| 86 | DoubleRegister EmitLoadDoubleRegister(LOperand* op, |
| 87 | SwVfpRegister flt_scratch, |
| 88 | DoubleRegister dbl_scratch); |
| 89 | int ToInteger32(LConstantOperand* op) const; |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 90 | double ToDouble(LConstantOperand* op) const; |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 91 | Operand ToOperand(LOperand* op); |
| 92 | MemOperand ToMemOperand(LOperand* op) const; |
| 93 | // Returns a MemOperand pointing to the high word of a DoubleStackSlot. |
| 94 | MemOperand ToHighMemOperand(LOperand* op) const; |
| 95 | |
Ben Murdoch | c7cc028 | 2012-03-05 14:35:55 +0000 | [diff] [blame^] | 96 | bool IsInteger32(LConstantOperand* op) const; |
| 97 | Handle<Object> ToHandle(LConstantOperand* op) const; |
| 98 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 99 | // Try to generate code for the entire chunk, but it may fail if the |
| 100 | // chunk contains constructs we cannot handle. Returns true if the |
| 101 | // code generation attempt succeeded. |
| 102 | bool GenerateCode(); |
| 103 | |
| 104 | // Finish the code by setting stack height, safepoint, and bailout |
| 105 | // information on it. |
| 106 | void FinishCode(Handle<Code> code); |
| 107 | |
| 108 | // Deferred code support. |
Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 109 | template<int T> |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 110 | void DoDeferredBinaryOpStub(LTemplateInstruction<1, 2, T>* instr, |
| 111 | Token::Value op); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 112 | void DoDeferredNumberTagD(LNumberTagD* instr); |
| 113 | void DoDeferredNumberTagI(LNumberTagI* instr); |
| 114 | void DoDeferredTaggedToI(LTaggedToI* instr); |
| 115 | void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); |
Ben Murdoch | 3fb3ca8 | 2011-12-02 17:19:32 +0000 | [diff] [blame] | 116 | void DoDeferredStackCheck(LStackCheck* instr); |
Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 117 | void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 118 | void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
Ben Murdoch | 2b4ba11 | 2012-01-20 14:57:15 +0000 | [diff] [blame] | 119 | void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 120 | Label* map_check); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 121 | |
Ben Murdoch | c7cc028 | 2012-03-05 14:35:55 +0000 | [diff] [blame^] | 122 | void DoCheckMapCommon(Register reg, Register scratch, Handle<Map> map, |
| 123 | CompareMapMode mode, LEnvironment* env); |
| 124 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 125 | // Parallel move support. |
| 126 | void DoParallelMove(LParallelMove* move); |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 127 | void DoGap(LGap* instr); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 128 | |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 129 | // Emit frame translation commands for an environment. |
| 130 | void WriteTranslation(LEnvironment* environment, Translation* translation); |
| 131 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 132 | // Declare methods that deal with the individual node types. |
| 133 | #define DECLARE_DO(type) void Do##type(L##type* node); |
| 134 | LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) |
| 135 | #undef DECLARE_DO |
| 136 | |
| 137 | private: |
| 138 | enum Status { |
| 139 | UNUSED, |
| 140 | GENERATING, |
| 141 | DONE, |
| 142 | ABORTED |
| 143 | }; |
| 144 | |
| 145 | bool is_unused() const { return status_ == UNUSED; } |
| 146 | bool is_generating() const { return status_ == GENERATING; } |
| 147 | bool is_done() const { return status_ == DONE; } |
| 148 | bool is_aborted() const { return status_ == ABORTED; } |
| 149 | |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 150 | StrictModeFlag strict_mode_flag() const { |
| 151 | return info()->is_classic_mode() ? kNonStrictMode : kStrictMode; |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 152 | } |
| 153 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 154 | LChunk* chunk() const { return chunk_; } |
| 155 | Scope* scope() const { return scope_; } |
| 156 | HGraph* graph() const { return chunk_->graph(); } |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 157 | |
Steve Block | 9fac840 | 2011-05-12 15:51:54 +0100 | [diff] [blame] | 158 | Register scratch0() { return r9; } |
Ben Murdoch | 692be65 | 2012-01-10 18:47:50 +0000 | [diff] [blame] | 159 | DwVfpRegister double_scratch0() { return kScratchDoubleReg; } |
Steve Block | 9fac840 | 2011-05-12 15:51:54 +0100 | [diff] [blame] | 160 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 161 | int GetNextEmittedBlock(int block); |
| 162 | LInstruction* GetNextInstruction(); |
| 163 | |
| 164 | void EmitClassOfTest(Label* if_true, |
| 165 | Label* if_false, |
| 166 | Handle<String> class_name, |
| 167 | Register input, |
| 168 | Register temporary, |
| 169 | Register temporary2); |
| 170 | |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 171 | int GetStackSlotCount() const { return chunk()->spill_slot_count(); } |
| 172 | int GetParameterCount() const { return scope()->num_parameters(); } |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 173 | |
| 174 | void Abort(const char* format, ...); |
| 175 | void Comment(const char* format, ...); |
| 176 | |
| 177 | void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code); } |
| 178 | |
| 179 | // Code generation passes. Returns true if code generation should |
| 180 | // continue. |
| 181 | bool GeneratePrologue(); |
| 182 | bool GenerateBody(); |
| 183 | bool GenerateDeferredCode(); |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 184 | bool GenerateDeoptJumpTable(); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 185 | bool GenerateSafepointTable(); |
| 186 | |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame] | 187 | enum SafepointMode { |
| 188 | RECORD_SIMPLE_SAFEPOINT, |
| 189 | RECORD_SAFEPOINT_WITH_REGISTERS_AND_NO_ARGUMENTS |
| 190 | }; |
| 191 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 192 | void CallCode(Handle<Code> code, |
| 193 | RelocInfo::Mode mode, |
| 194 | LInstruction* instr); |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame] | 195 | |
| 196 | void CallCodeGeneric(Handle<Code> code, |
| 197 | RelocInfo::Mode mode, |
| 198 | LInstruction* instr, |
| 199 | SafepointMode safepoint_mode); |
| 200 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 201 | void CallRuntime(const Runtime::Function* function, |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 202 | int num_arguments, |
| 203 | LInstruction* instr); |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame] | 204 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 205 | void CallRuntime(Runtime::FunctionId id, |
| 206 | int num_arguments, |
| 207 | LInstruction* instr) { |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 208 | const Runtime::Function* function = Runtime::FunctionForId(id); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 209 | CallRuntime(function, num_arguments, instr); |
| 210 | } |
| 211 | |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame] | 212 | void CallRuntimeFromDeferred(Runtime::FunctionId id, |
| 213 | int argc, |
| 214 | LInstruction* instr); |
| 215 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 216 | // Generate a direct call to a known function. Expects the function |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 217 | // to be in r1. |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 218 | void CallKnownFunction(Handle<JSFunction> function, |
| 219 | int arity, |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 220 | LInstruction* instr, |
| 221 | CallKind call_kind); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 222 | |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 223 | void LoadHeapObject(Register result, Handle<HeapObject> object); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 224 | |
Ben Murdoch | 2b4ba11 | 2012-01-20 14:57:15 +0000 | [diff] [blame] | 225 | void RecordSafepointWithLazyDeopt(LInstruction* instr, |
| 226 | SafepointMode safepoint_mode); |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame] | 227 | |
Ben Murdoch | 2b4ba11 | 2012-01-20 14:57:15 +0000 | [diff] [blame] | 228 | void RegisterEnvironmentForDeoptimization(LEnvironment* environment, |
| 229 | Safepoint::DeoptMode mode); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 230 | void DeoptimizeIf(Condition cc, LEnvironment* environment); |
| 231 | |
| 232 | void AddToTranslation(Translation* translation, |
| 233 | LOperand* op, |
| 234 | bool is_tagged); |
| 235 | void PopulateDeoptimizationData(Handle<Code> code); |
| 236 | int DefineDeoptimizationLiteral(Handle<Object> literal); |
| 237 | |
| 238 | void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
| 239 | |
| 240 | Register ToRegister(int index) const; |
| 241 | DoubleRegister ToDoubleRegister(int index) const; |
| 242 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 243 | // Specific math operations - used from DoUnaryMathOperation. |
Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 244 | void EmitIntegerMathAbs(LUnaryMathOperation* instr); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 245 | void DoMathAbs(LUnaryMathOperation* instr); |
| 246 | void DoMathFloor(LUnaryMathOperation* instr); |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 247 | void DoMathRound(LUnaryMathOperation* instr); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 248 | void DoMathSqrt(LUnaryMathOperation* instr); |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 249 | void DoMathPowHalf(LUnaryMathOperation* instr); |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 250 | void DoMathLog(LUnaryMathOperation* instr); |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 251 | void DoMathTan(LUnaryMathOperation* instr); |
Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 252 | void DoMathCos(LUnaryMathOperation* instr); |
| 253 | void DoMathSin(LUnaryMathOperation* instr); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 254 | |
| 255 | // Support for recording safepoint and position information. |
Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 256 | void RecordSafepoint(LPointerMap* pointers, |
| 257 | Safepoint::Kind kind, |
| 258 | int arguments, |
Ben Murdoch | 2b4ba11 | 2012-01-20 14:57:15 +0000 | [diff] [blame] | 259 | Safepoint::DeoptMode mode); |
| 260 | void RecordSafepoint(LPointerMap* pointers, Safepoint::DeoptMode mode); |
| 261 | void RecordSafepoint(Safepoint::DeoptMode mode); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 262 | void RecordSafepointWithRegisters(LPointerMap* pointers, |
| 263 | int arguments, |
Ben Murdoch | 2b4ba11 | 2012-01-20 14:57:15 +0000 | [diff] [blame] | 264 | Safepoint::DeoptMode mode); |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 265 | void RecordSafepointWithRegistersAndDoubles(LPointerMap* pointers, |
| 266 | int arguments, |
Ben Murdoch | 2b4ba11 | 2012-01-20 14:57:15 +0000 | [diff] [blame] | 267 | Safepoint::DeoptMode mode); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 268 | void RecordPosition(int position); |
| 269 | |
| 270 | static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
Ben Murdoch | 3fb3ca8 | 2011-12-02 17:19:32 +0000 | [diff] [blame] | 271 | void EmitGoto(int block); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 272 | void EmitBranch(int left_block, int right_block, Condition cc); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 273 | void EmitNumberUntagD(Register input, |
| 274 | DoubleRegister result, |
Ben Murdoch | 7d3e7fc | 2011-07-12 16:37:06 +0100 | [diff] [blame] | 275 | bool deoptimize_on_undefined, |
Ben Murdoch | c7cc028 | 2012-03-05 14:35:55 +0000 | [diff] [blame^] | 276 | bool deoptimize_on_minus_zero, |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 277 | LEnvironment* env); |
| 278 | |
| 279 | // Emits optimized code for typeof x == "y". Modifies input register. |
| 280 | // Returns the condition on which a final split to |
| 281 | // true and false label should be made, to optimize fallthrough. |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 282 | Condition EmitTypeofIs(Label* true_label, |
| 283 | Label* false_label, |
| 284 | Register input, |
| 285 | Handle<String> type_name); |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 286 | |
| 287 | // Emits optimized code for %_IsObject(x). Preserves input register. |
| 288 | // Returns the condition on which a final split to |
| 289 | // true and false label should be made, to optimize fallthrough. |
| 290 | Condition EmitIsObject(Register input, |
| 291 | Register temp1, |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 292 | Label* is_not_object, |
| 293 | Label* is_object); |
| 294 | |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 295 | // Emits optimized code for %_IsString(x). Preserves input register. |
| 296 | // Returns the condition on which a final split to |
| 297 | // true and false label should be made, to optimize fallthrough. |
| 298 | Condition EmitIsString(Register input, |
| 299 | Register temp1, |
| 300 | Label* is_not_string); |
| 301 | |
Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 302 | // Emits optimized code for %_IsConstructCall(). |
| 303 | // Caller should branch on equal condition. |
| 304 | void EmitIsConstructCall(Register temp1, Register temp2); |
| 305 | |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 306 | void EmitLoadFieldOrConstantFunction(Register result, |
| 307 | Register object, |
| 308 | Handle<Map> type, |
| 309 | Handle<String> name); |
| 310 | |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 311 | // Emits optimized code to deep-copy the contents of statically known |
| 312 | // object graphs (e.g. object literal boilerplate). |
| 313 | void EmitDeepCopy(Handle<JSObject> object, |
| 314 | Register result, |
| 315 | Register source, |
| 316 | int* offset); |
| 317 | |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 318 | struct JumpTableEntry { |
| 319 | explicit inline JumpTableEntry(Address entry) |
| 320 | : label(), |
| 321 | address(entry) { } |
| 322 | Label label; |
| 323 | Address address; |
| 324 | }; |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 325 | |
Ben Murdoch | 2b4ba11 | 2012-01-20 14:57:15 +0000 | [diff] [blame] | 326 | void EnsureSpaceForLazyDeopt(); |
| 327 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 328 | LChunk* const chunk_; |
| 329 | MacroAssembler* const masm_; |
| 330 | CompilationInfo* const info_; |
| 331 | |
| 332 | int current_block_; |
| 333 | int current_instruction_; |
| 334 | const ZoneList<LInstruction*>* instructions_; |
| 335 | ZoneList<LEnvironment*> deoptimizations_; |
Ben Murdoch | 257744e | 2011-11-30 15:57:28 +0000 | [diff] [blame] | 336 | ZoneList<JumpTableEntry> deopt_jump_table_; |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 337 | ZoneList<Handle<Object> > deoptimization_literals_; |
| 338 | int inlined_function_count_; |
| 339 | Scope* const scope_; |
| 340 | Status status_; |
| 341 | TranslationBuffer translations_; |
| 342 | ZoneList<LDeferredCode*> deferred_; |
| 343 | int osr_pc_offset_; |
Ben Murdoch | 2b4ba11 | 2012-01-20 14:57:15 +0000 | [diff] [blame] | 344 | int last_lazy_deopt_pc_; |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 345 | |
| 346 | // Builder that keeps track of safepoints in the code. The table |
| 347 | // itself is emitted at the end of the generated code. |
| 348 | SafepointTableBuilder safepoints_; |
| 349 | |
Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 350 | // Compiler from a set of parallel moves to a sequential list of moves. |
| 351 | LGapResolver resolver_; |
| 352 | |
Ben Murdoch | 8b112d2 | 2011-06-08 16:22:53 +0100 | [diff] [blame] | 353 | Safepoint::Kind expected_safepoint_kind_; |
| 354 | |
| 355 | class PushSafepointRegistersScope BASE_EMBEDDED { |
| 356 | public: |
| 357 | PushSafepointRegistersScope(LCodeGen* codegen, |
| 358 | Safepoint::Kind kind) |
| 359 | : codegen_(codegen) { |
| 360 | ASSERT(codegen_->expected_safepoint_kind_ == Safepoint::kSimple); |
| 361 | codegen_->expected_safepoint_kind_ = kind; |
| 362 | |
| 363 | switch (codegen_->expected_safepoint_kind_) { |
| 364 | case Safepoint::kWithRegisters: |
| 365 | codegen_->masm_->PushSafepointRegisters(); |
| 366 | break; |
| 367 | case Safepoint::kWithRegistersAndDoubles: |
| 368 | codegen_->masm_->PushSafepointRegistersAndDoubles(); |
| 369 | break; |
| 370 | default: |
| 371 | UNREACHABLE(); |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | ~PushSafepointRegistersScope() { |
| 376 | Safepoint::Kind kind = codegen_->expected_safepoint_kind_; |
| 377 | ASSERT((kind & Safepoint::kWithRegisters) != 0); |
| 378 | switch (kind) { |
| 379 | case Safepoint::kWithRegisters: |
| 380 | codegen_->masm_->PopSafepointRegisters(); |
| 381 | break; |
| 382 | case Safepoint::kWithRegistersAndDoubles: |
| 383 | codegen_->masm_->PopSafepointRegistersAndDoubles(); |
| 384 | break; |
| 385 | default: |
| 386 | UNREACHABLE(); |
| 387 | } |
| 388 | codegen_->expected_safepoint_kind_ = Safepoint::kSimple; |
| 389 | } |
| 390 | |
| 391 | private: |
| 392 | LCodeGen* codegen_; |
| 393 | }; |
| 394 | |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 395 | friend class LDeferredCode; |
| 396 | friend class LEnvironment; |
| 397 | friend class SafepointGenerator; |
| 398 | DISALLOW_COPY_AND_ASSIGN(LCodeGen); |
| 399 | }; |
| 400 | |
| 401 | |
| 402 | class LDeferredCode: public ZoneObject { |
| 403 | public: |
| 404 | explicit LDeferredCode(LCodeGen* codegen) |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 405 | : codegen_(codegen), |
| 406 | external_exit_(NULL), |
| 407 | instruction_index_(codegen->current_instruction_) { |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 408 | codegen->AddDeferredCode(this); |
| 409 | } |
| 410 | |
| 411 | virtual ~LDeferredCode() { } |
| 412 | virtual void Generate() = 0; |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 413 | virtual LInstruction* instr() = 0; |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 414 | |
Ben Murdoch | c7cc028 | 2012-03-05 14:35:55 +0000 | [diff] [blame^] | 415 | void SetExit(Label* exit) { external_exit_ = exit; } |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 416 | Label* entry() { return &entry_; } |
| 417 | Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 418 | int instruction_index() const { return instruction_index_; } |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 419 | |
| 420 | protected: |
| 421 | LCodeGen* codegen() const { return codegen_; } |
| 422 | MacroAssembler* masm() const { return codegen_->masm(); } |
| 423 | |
| 424 | private: |
| 425 | LCodeGen* codegen_; |
| 426 | Label entry_; |
| 427 | Label exit_; |
| 428 | Label* external_exit_; |
Ben Murdoch | 592a9fc | 2012-03-05 11:04:45 +0000 | [diff] [blame] | 429 | int instruction_index_; |
Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 430 | }; |
| 431 | |
| 432 | } } // namespace v8::internal |
| 433 | |
| 434 | #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |