| // Copyright 2012 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. |
| |
| #if V8_TARGET_ARCH_X87 |
| |
| #include "src/crankshaft/x87/lithium-codegen-x87.h" |
| |
| #include "src/base/bits.h" |
| #include "src/builtins/builtins-constructor.h" |
| #include "src/code-factory.h" |
| #include "src/code-stubs.h" |
| #include "src/codegen.h" |
| #include "src/crankshaft/hydrogen-osr.h" |
| #include "src/deoptimizer.h" |
| #include "src/ic/ic.h" |
| #include "src/ic/stub-cache.h" |
| #include "src/x87/frames-x87.h" |
| |
| namespace v8 { |
| namespace internal { |
| |
| // When invoking builtins, we need to record the safepoint in the middle of |
| // the invoke instruction sequence generated by the macro assembler. |
| class SafepointGenerator final : public CallWrapper { |
| public: |
| SafepointGenerator(LCodeGen* codegen, |
| LPointerMap* pointers, |
| Safepoint::DeoptMode mode) |
| : codegen_(codegen), |
| pointers_(pointers), |
| deopt_mode_(mode) {} |
| virtual ~SafepointGenerator() {} |
| |
| void BeforeCall(int call_size) const override {} |
| |
| void AfterCall() const override { |
| codegen_->RecordSafepoint(pointers_, deopt_mode_); |
| } |
| |
| private: |
| LCodeGen* codegen_; |
| LPointerMap* pointers_; |
| Safepoint::DeoptMode deopt_mode_; |
| }; |
| |
| |
| #define __ masm()-> |
| |
| bool LCodeGen::GenerateCode() { |
| LPhase phase("Z_Code generation", chunk()); |
| DCHECK(is_unused()); |
| status_ = GENERATING; |
| |
| // Open a frame scope to indicate that there is a frame on the stack. The |
| // MANUAL indicates that the scope shouldn't actually generate code to set up |
| // the frame (that is done in GeneratePrologue). |
| FrameScope frame_scope(masm_, StackFrame::MANUAL); |
| |
| return GeneratePrologue() && |
| GenerateBody() && |
| GenerateDeferredCode() && |
| GenerateJumpTable() && |
| GenerateSafepointTable(); |
| } |
| |
| |
| void LCodeGen::FinishCode(Handle<Code> code) { |
| DCHECK(is_done()); |
| code->set_stack_slots(GetTotalFrameSlotCount()); |
| code->set_safepoint_table_offset(safepoints_.GetCodeOffset()); |
| PopulateDeoptimizationData(code); |
| if (info()->ShouldEnsureSpaceForLazyDeopt()) { |
| Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(code); |
| } |
| } |
| |
| |
| #ifdef _MSC_VER |
| void LCodeGen::MakeSureStackPagesMapped(int offset) { |
| const int kPageSize = 4 * KB; |
| for (offset -= kPageSize; offset > 0; offset -= kPageSize) { |
| __ mov(Operand(esp, offset), eax); |
| } |
| } |
| #endif |
| |
| |
| bool LCodeGen::GeneratePrologue() { |
| DCHECK(is_generating()); |
| |
| if (info()->IsOptimizing()) { |
| ProfileEntryHookStub::MaybeCallEntryHook(masm_); |
| } |
| |
| info()->set_prologue_offset(masm_->pc_offset()); |
| if (NeedsEagerFrame()) { |
| DCHECK(!frame_is_built_); |
| frame_is_built_ = true; |
| if (info()->IsStub()) { |
| __ StubPrologue(StackFrame::STUB); |
| } else { |
| __ Prologue(info()->GeneratePreagedPrologue()); |
| } |
| } |
| |
| // Reserve space for the stack slots needed by the code. |
| int slots = GetStackSlotCount(); |
| DCHECK(slots != 0 || !info()->IsOptimizing()); |
| if (slots > 0) { |
| __ sub(Operand(esp), Immediate(slots * kPointerSize)); |
| #ifdef _MSC_VER |
| MakeSureStackPagesMapped(slots * kPointerSize); |
| #endif |
| if (FLAG_debug_code) { |
| __ push(eax); |
| __ mov(Operand(eax), Immediate(slots)); |
| Label loop; |
| __ bind(&loop); |
| __ mov(MemOperand(esp, eax, times_4, 0), Immediate(kSlotsZapValue)); |
| __ dec(eax); |
| __ j(not_zero, &loop); |
| __ pop(eax); |
| } |
| } |
| |
| // Initailize FPU state. |
| __ fninit(); |
| |
| return !is_aborted(); |
| } |
| |
| |
| void LCodeGen::DoPrologue(LPrologue* instr) { |
| Comment(";;; Prologue begin"); |
| |
| // Possibly allocate a local context. |
| if (info_->scope()->NeedsContext()) { |
| Comment(";;; Allocate local context"); |
| bool need_write_barrier = true; |
| // Argument to NewContext is the function, which is still in edi. |
| int slots = info_->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; |
| Safepoint::DeoptMode deopt_mode = Safepoint::kNoLazyDeopt; |
| if (info()->scope()->is_script_scope()) { |
| __ push(edi); |
| __ Push(info()->scope()->scope_info()); |
| __ CallRuntime(Runtime::kNewScriptContext); |
| deopt_mode = Safepoint::kLazyDeopt; |
| } else { |
| if (slots <= |
| ConstructorBuiltinsAssembler::MaximumFunctionContextSlots()) { |
| Callable callable = CodeFactory::FastNewFunctionContext( |
| isolate(), info()->scope()->scope_type()); |
| __ mov(FastNewFunctionContextDescriptor::SlotsRegister(), |
| Immediate(slots)); |
| __ Call(callable.code(), RelocInfo::CODE_TARGET); |
| // Result of the FastNewFunctionContext builtin is always in new space. |
| need_write_barrier = false; |
| } else { |
| __ Push(edi); |
| __ Push(Smi::FromInt(info()->scope()->scope_type())); |
| __ CallRuntime(Runtime::kNewFunctionContext); |
| } |
| } |
| RecordSafepoint(deopt_mode); |
| |
| // Context is returned in eax. It replaces the context passed to us. |
| // It's saved in the stack and kept live in esi. |
| __ mov(esi, eax); |
| __ mov(Operand(ebp, StandardFrameConstants::kContextOffset), eax); |
| |
| // Copy parameters into context if necessary. |
| int num_parameters = info()->scope()->num_parameters(); |
| int first_parameter = info()->scope()->has_this_declaration() ? -1 : 0; |
| for (int i = first_parameter; i < num_parameters; i++) { |
| Variable* var = (i == -1) ? info()->scope()->receiver() |
| : info()->scope()->parameter(i); |
| if (var->IsContextSlot()) { |
| int parameter_offset = StandardFrameConstants::kCallerSPOffset + |
| (num_parameters - 1 - i) * kPointerSize; |
| // Load parameter from stack. |
| __ mov(eax, Operand(ebp, parameter_offset)); |
| // Store it in the context. |
| int context_offset = Context::SlotOffset(var->index()); |
| __ mov(Operand(esi, context_offset), eax); |
| // Update the write barrier. This clobbers eax and ebx. |
| if (need_write_barrier) { |
| __ RecordWriteContextSlot(esi, context_offset, eax, ebx, |
| kDontSaveFPRegs); |
| } else if (FLAG_debug_code) { |
| Label done; |
| __ JumpIfInNewSpace(esi, eax, &done, Label::kNear); |
| __ Abort(kExpectedNewSpaceObject); |
| __ bind(&done); |
| } |
| } |
| } |
| Comment(";;; End allocate local context"); |
| } |
| |
| Comment(";;; Prologue end"); |
| } |
| |
| |
| void LCodeGen::GenerateOsrPrologue() { |
| // Generate the OSR entry prologue at the first unknown OSR value, or if there |
| // are none, at the OSR entrypoint instruction. |
| if (osr_pc_offset_ >= 0) return; |
| |
| osr_pc_offset_ = masm()->pc_offset(); |
| |
| // Interpreter is the first tier compiler now. It will run the code generated |
| // by TurboFan compiler which will always put "1" on x87 FPU stack. |
| // This behavior will affect crankshaft's x87 FPU stack depth check under |
| // debug mode. |
| // Need to reset the FPU stack here for this scenario. |
| __ fninit(); |
| |
| // Adjust the frame size, subsuming the unoptimized frame into the |
| // optimized frame. |
| int slots = GetStackSlotCount() - graph()->osr()->UnoptimizedFrameSlots(); |
| DCHECK(slots >= 0); |
| __ sub(esp, Immediate(slots * kPointerSize)); |
| } |
| |
| |
| void LCodeGen::GenerateBodyInstructionPre(LInstruction* instr) { |
| if (instr->IsCall()) { |
| EnsureSpaceForLazyDeopt(Deoptimizer::patch_size()); |
| } |
| if (!instr->IsLazyBailout() && !instr->IsGap()) { |
| safepoints_.BumpLastLazySafepointIndex(); |
| } |
| FlushX87StackIfNecessary(instr); |
| } |
| |
| |
| void LCodeGen::GenerateBodyInstructionPost(LInstruction* instr) { |
| // When return from function call, FPU should be initialized again. |
| if (instr->IsCall() && instr->ClobbersDoubleRegisters(isolate())) { |
| bool double_result = instr->HasDoubleRegisterResult(); |
| if (double_result) { |
| __ lea(esp, Operand(esp, -kDoubleSize)); |
| __ fstp_d(Operand(esp, 0)); |
| } |
| __ fninit(); |
| if (double_result) { |
| __ fld_d(Operand(esp, 0)); |
| __ lea(esp, Operand(esp, kDoubleSize)); |
| } |
| } |
| if (instr->IsGoto()) { |
| x87_stack_.LeavingBlock(current_block_, LGoto::cast(instr), this); |
| } else if (FLAG_debug_code && FLAG_enable_slow_asserts && |
| !instr->IsGap() && !instr->IsReturn()) { |
| if (instr->ClobbersDoubleRegisters(isolate())) { |
| if (instr->HasDoubleRegisterResult()) { |
| DCHECK_EQ(1, x87_stack_.depth()); |
| } else { |
| DCHECK_EQ(0, x87_stack_.depth()); |
| } |
| } |
| __ VerifyX87StackDepth(x87_stack_.depth()); |
| } |
| } |
| |
| |
| bool LCodeGen::GenerateJumpTable() { |
| if (!jump_table_.length()) return !is_aborted(); |
| |
| Label needs_frame; |
| Comment(";;; -------------------- Jump table --------------------"); |
| |
| for (int i = 0; i < jump_table_.length(); i++) { |
| Deoptimizer::JumpTableEntry* table_entry = &jump_table_[i]; |
| __ bind(&table_entry->label); |
| Address entry = table_entry->address; |
| DeoptComment(table_entry->deopt_info); |
| if (table_entry->needs_frame) { |
| DCHECK(!info()->saves_caller_doubles()); |
| __ push(Immediate(ExternalReference::ForDeoptEntry(entry))); |
| __ call(&needs_frame); |
| } else { |
| __ call(entry, RelocInfo::RUNTIME_ENTRY); |
| } |
| } |
| if (needs_frame.is_linked()) { |
| __ bind(&needs_frame); |
| /* stack layout |
| 3: entry address |
| 2: return address <-- esp |
| 1: garbage |
| 0: garbage |
| */ |
| __ push(MemOperand(esp, 0)); // Copy return address. |
| __ push(MemOperand(esp, 2 * kPointerSize)); // Copy entry address. |
| |
| /* stack layout |
| 4: entry address |
| 3: return address |
| 1: return address |
| 0: entry address <-- esp |
| */ |
| __ mov(MemOperand(esp, 3 * kPointerSize), ebp); // Save ebp. |
| // Fill ebp with the right stack frame address. |
| __ lea(ebp, MemOperand(esp, 3 * kPointerSize)); |
| |
| // This variant of deopt can only be used with stubs. Since we don't |
| // have a function pointer to install in the stack frame that we're |
| // building, install a special marker there instead. |
| DCHECK(info()->IsStub()); |
| __ mov(MemOperand(esp, 2 * kPointerSize), |
| Immediate(Smi::FromInt(StackFrame::STUB))); |
| |
| /* stack layout |
| 3: old ebp |
| 2: stub marker |
| 1: return address |
| 0: entry address <-- esp |
| */ |
| __ ret(0); // Call the continuation without clobbering registers. |
| } |
| return !is_aborted(); |
| } |
| |
| |
| bool LCodeGen::GenerateDeferredCode() { |
| DCHECK(is_generating()); |
| if (deferred_.length() > 0) { |
| for (int i = 0; !is_aborted() && i < deferred_.length(); i++) { |
| LDeferredCode* code = deferred_[i]; |
| X87Stack copy(code->x87_stack()); |
| x87_stack_ = copy; |
| |
| HValue* value = |
| instructions_->at(code->instruction_index())->hydrogen_value(); |
| RecordAndWritePosition(value->position()); |
| |
| Comment(";;; <@%d,#%d> " |
| "-------------------- Deferred %s --------------------", |
| code->instruction_index(), |
| code->instr()->hydrogen_value()->id(), |
| code->instr()->Mnemonic()); |
| __ bind(code->entry()); |
| if (NeedsDeferredFrame()) { |
| Comment(";;; Build frame"); |
| DCHECK(!frame_is_built_); |
| DCHECK(info()->IsStub()); |
| frame_is_built_ = true; |
| // Build the frame in such a way that esi isn't trashed. |
| __ push(ebp); // Caller's frame pointer. |
| __ push(Immediate(Smi::FromInt(StackFrame::STUB))); |
| __ lea(ebp, Operand(esp, TypedFrameConstants::kFixedFrameSizeFromFp)); |
| Comment(";;; Deferred code"); |
| } |
| code->Generate(); |
| if (NeedsDeferredFrame()) { |
| __ bind(code->done()); |
| Comment(";;; Destroy frame"); |
| DCHECK(frame_is_built_); |
| frame_is_built_ = false; |
| __ mov(esp, ebp); |
| __ pop(ebp); |
| } |
| __ jmp(code->exit()); |
| } |
| } |
| |
| // Deferred code is the last part of the instruction sequence. Mark |
| // the generated code as done unless we bailed out. |
| if (!is_aborted()) status_ = DONE; |
| return !is_aborted(); |
| } |
| |
| |
| bool LCodeGen::GenerateSafepointTable() { |
| DCHECK(is_done()); |
| if (info()->ShouldEnsureSpaceForLazyDeopt()) { |
| // For lazy deoptimization we need space to patch a call after every call. |
| // Ensure there is always space for such patching, even if the code ends |
| // in a call. |
| int target_offset = masm()->pc_offset() + Deoptimizer::patch_size(); |
| while (masm()->pc_offset() < target_offset) { |
| masm()->nop(); |
| } |
| } |
| safepoints_.Emit(masm(), GetTotalFrameSlotCount()); |
| return !is_aborted(); |
| } |
| |
| |
| Register LCodeGen::ToRegister(int code) const { |
| return Register::from_code(code); |
| } |
| |
| |
| X87Register LCodeGen::ToX87Register(int code) const { |
| return X87Register::from_code(code); |
| } |
| |
| |
| void LCodeGen::X87LoadForUsage(X87Register reg) { |
| DCHECK(x87_stack_.Contains(reg)); |
| x87_stack_.Fxch(reg); |
| x87_stack_.pop(); |
| } |
| |
| |
| void LCodeGen::X87LoadForUsage(X87Register reg1, X87Register reg2) { |
| DCHECK(x87_stack_.Contains(reg1)); |
| DCHECK(x87_stack_.Contains(reg2)); |
| if (reg1.is(reg2) && x87_stack_.depth() == 1) { |
| __ fld(x87_stack_.st(reg1)); |
| x87_stack_.push(reg1); |
| x87_stack_.pop(); |
| x87_stack_.pop(); |
| } else { |
| x87_stack_.Fxch(reg1, 1); |
| x87_stack_.Fxch(reg2); |
| x87_stack_.pop(); |
| x87_stack_.pop(); |
| } |
| } |
| |
| |
| int LCodeGen::X87Stack::GetLayout() { |
| int layout = stack_depth_; |
| for (int i = 0; i < stack_depth_; i++) { |
| layout |= (stack_[stack_depth_ - 1 - i].code() << ((i + 1) * 3)); |
| } |
| |
| return layout; |
| } |
| |
| |
| void LCodeGen::X87Stack::Fxch(X87Register reg, int other_slot) { |
| DCHECK(is_mutable_); |
| DCHECK(Contains(reg) && stack_depth_ > other_slot); |
| int i = ArrayIndex(reg); |
| int st = st2idx(i); |
| if (st != other_slot) { |
| int other_i = st2idx(other_slot); |
| X87Register other = stack_[other_i]; |
| stack_[other_i] = reg; |
| stack_[i] = other; |
| if (st == 0) { |
| __ fxch(other_slot); |
| } else if (other_slot == 0) { |
| __ fxch(st); |
| } else { |
| __ fxch(st); |
| __ fxch(other_slot); |
| __ fxch(st); |
| } |
| } |
| } |
| |
| |
| int LCodeGen::X87Stack::st2idx(int pos) { |
| return stack_depth_ - pos - 1; |
| } |
| |
| |
| int LCodeGen::X87Stack::ArrayIndex(X87Register reg) { |
| for (int i = 0; i < stack_depth_; i++) { |
| if (stack_[i].is(reg)) return i; |
| } |
| UNREACHABLE(); |
| return -1; |
| } |
| |
| |
| bool LCodeGen::X87Stack::Contains(X87Register reg) { |
| for (int i = 0; i < stack_depth_; i++) { |
| if (stack_[i].is(reg)) return true; |
| } |
| return false; |
| } |
| |
| |
| void LCodeGen::X87Stack::Free(X87Register reg) { |
| DCHECK(is_mutable_); |
| DCHECK(Contains(reg)); |
| int i = ArrayIndex(reg); |
| int st = st2idx(i); |
| if (st > 0) { |
| // keep track of how fstp(i) changes the order of elements |
| int tos_i = st2idx(0); |
| stack_[i] = stack_[tos_i]; |
| } |
| pop(); |
| __ fstp(st); |
| } |
| |
| |
| void LCodeGen::X87Mov(X87Register dst, Operand src, X87OperandType opts) { |
| if (x87_stack_.Contains(dst)) { |
| x87_stack_.Fxch(dst); |
| __ fstp(0); |
| } else { |
| x87_stack_.push(dst); |
| } |
| X87Fld(src, opts); |
| } |
| |
| |
| void LCodeGen::X87Mov(X87Register dst, X87Register src, X87OperandType opts) { |
| if (x87_stack_.Contains(dst)) { |
| x87_stack_.Fxch(dst); |
| __ fstp(0); |
| x87_stack_.pop(); |
| // Push ST(i) onto the FPU register stack |
| __ fld(x87_stack_.st(src)); |
| x87_stack_.push(dst); |
| } else { |
| // Push ST(i) onto the FPU register stack |
| __ fld(x87_stack_.st(src)); |
| x87_stack_.push(dst); |
| } |
| } |
| |
| |
| void LCodeGen::X87Fld(Operand src, X87OperandType opts) { |
| DCHECK(!src.is_reg_only()); |
| switch (opts) { |
| case kX87DoubleOperand: |
| __ fld_d(src); |
| break; |
| case kX87FloatOperand: |
| __ fld_s(src); |
| break; |
| case kX87IntOperand: |
| __ fild_s(src); |
| break; |
| default: |
| UNREACHABLE(); |
| } |
| } |
| |
| |
| void LCodeGen::X87Mov(Operand dst, X87Register src, X87OperandType opts) { |
| DCHECK(!dst.is_reg_only()); |
| x87_stack_.Fxch(src); |
| switch (opts) { |
| case kX87DoubleOperand: |
| __ fst_d(dst); |
| break; |
| case kX87FloatOperand: |
| __ fst_s(dst); |
| break; |
| case kX87IntOperand: |
| __ fist_s(dst); |
| break; |
| default: |
| UNREACHABLE(); |
| } |
| } |
| |
| |
| void LCodeGen::X87Stack::PrepareToWrite(X87Register reg) { |
| DCHECK(is_mutable_); |
| if (Contains(reg)) { |
| Free(reg); |
| } |
| // Mark this register as the next register to write to |
| stack_[stack_depth_] = reg; |
| } |
| |
| |
| void LCodeGen::X87Stack::CommitWrite(X87Register reg) { |
| DCHECK(is_mutable_); |
| // Assert the reg is prepared to write, but not on the virtual stack yet |
| DCHECK(!Contains(reg) && stack_[stack_depth_].is(reg) && |
| stack_depth_ < X87Register::kMaxNumAllocatableRegisters); |
| stack_depth_++; |
| } |
| |
| |
| void LCodeGen::X87PrepareBinaryOp( |
| X87Register left, X87Register right, X87Register result) { |
| // You need to use DefineSameAsFirst for x87 instructions |
| DCHECK(result.is(left)); |
| x87_stack_.Fxch(right, 1); |
| x87_stack_.Fxch(left); |
| } |
| |
| |
| void LCodeGen::X87Stack::FlushIfNecessary(LInstruction* instr, LCodeGen* cgen) { |
| if (stack_depth_ > 0 && instr->ClobbersDoubleRegisters(isolate())) { |
| bool double_inputs = instr->HasDoubleRegisterInput(); |
| |
| // Flush stack from tos down, since FreeX87() will mess with tos |
| for (int i = stack_depth_-1; i >= 0; i--) { |
| X87Register reg = stack_[i]; |
| // Skip registers which contain the inputs for the next instruction |
| // when flushing the stack |
| if (double_inputs && instr->IsDoubleInput(reg, cgen)) { |
| continue; |
| } |
| Free(reg); |
| if (i < stack_depth_-1) i++; |
| } |
| } |
| if (instr->IsReturn()) { |
| while (stack_depth_ > 0) { |
| __ fstp(0); |
| stack_depth_--; |
| } |
| if (FLAG_debug_code && FLAG_enable_slow_asserts) __ VerifyX87StackDepth(0); |
| } |
| } |
| |
| |
| void LCodeGen::X87Stack::LeavingBlock(int current_block_id, LGoto* goto_instr, |
| LCodeGen* cgen) { |
| // For going to a joined block, an explicit LClobberDoubles is inserted before |
| // LGoto. Because all used x87 registers are spilled to stack slots. The |
| // ResolvePhis phase of register allocator could guarantee the two input's x87 |
| // stacks have the same layout. So don't check stack_depth_ <= 1 here. |
| int goto_block_id = goto_instr->block_id(); |
| if (current_block_id + 1 != goto_block_id) { |
| // If we have a value on the x87 stack on leaving a block, it must be a |
| // phi input. If the next block we compile is not the join block, we have |
| // to discard the stack state. |
| // Before discarding the stack state, we need to save it if the "goto block" |
| // has unreachable last predecessor when FLAG_unreachable_code_elimination. |
| if (FLAG_unreachable_code_elimination) { |
| int length = goto_instr->block()->predecessors()->length(); |
| bool has_unreachable_last_predecessor = false; |
| for (int i = 0; i < length; i++) { |
| HBasicBlock* block = goto_instr->block()->predecessors()->at(i); |
| if (block->IsUnreachable() && |
| (block->block_id() + 1) == goto_block_id) { |
| has_unreachable_last_predecessor = true; |
| } |
| } |
| if (has_unreachable_last_predecessor) { |
| if (cgen->x87_stack_map_.find(goto_block_id) == |
| cgen->x87_stack_map_.end()) { |
| X87Stack* stack = new (cgen->zone()) X87Stack(*this); |
| cgen->x87_stack_map_.insert(std::make_pair(goto_block_id, stack)); |
| } |
| } |
| } |
| |
| // Discard the stack state. |
| stack_depth_ = 0; |
| } |
| } |
| |
| |
| void LCodeGen::EmitFlushX87ForDeopt() { |
| // The deoptimizer does not support X87 Registers. But as long as we |
| // deopt from a stub its not a problem, since we will re-materialize the |
| // original stub inputs, which can't be double registers. |
| // DCHECK(info()->IsStub()); |
| if (FLAG_debug_code && FLAG_enable_slow_asserts) { |
| __ pushfd(); |
| __ VerifyX87StackDepth(x87_stack_.depth()); |
| __ popfd(); |
| } |
| |
| // Flush X87 stack in the deoptimizer entry. |
| } |
| |
| |
| Register LCodeGen::ToRegister(LOperand* op) const { |
| DCHECK(op->IsRegister()); |
| return ToRegister(op->index()); |
| } |
| |
| |
| X87Register LCodeGen::ToX87Register(LOperand* op) const { |
| DCHECK(op->IsDoubleRegister()); |
| return ToX87Register(op->index()); |
| } |
| |
| |
| int32_t LCodeGen::ToInteger32(LConstantOperand* op) const { |
| return ToRepresentation(op, Representation::Integer32()); |
| } |
| |
| |
| int32_t LCodeGen::ToRepresentation(LConstantOperand* op, |
| const Representation& r) const { |
| HConstant* constant = chunk_->LookupConstant(op); |
| if (r.IsExternal()) { |
| return reinterpret_cast<int32_t>( |
| constant->ExternalReferenceValue().address()); |
| } |
| int32_t value = constant->Integer32Value(); |
| if (r.IsInteger32()) return value; |
| DCHECK(r.IsSmiOrTagged()); |
| return reinterpret_cast<int32_t>(Smi::FromInt(value)); |
| } |
| |
| |
| Handle<Object> LCodeGen::ToHandle(LConstantOperand* op) const { |
| HConstant* constant = chunk_->LookupConstant(op); |
| DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged()); |
| return constant->handle(isolate()); |
| } |
| |
| |
| double LCodeGen::ToDouble(LConstantOperand* op) const { |
| HConstant* constant = chunk_->LookupConstant(op); |
| DCHECK(constant->HasDoubleValue()); |
| return constant->DoubleValue(); |
| } |
| |
| |
| ExternalReference LCodeGen::ToExternalReference(LConstantOperand* op) const { |
| HConstant* constant = chunk_->LookupConstant(op); |
| DCHECK(constant->HasExternalReferenceValue()); |
| return constant->ExternalReferenceValue(); |
| } |
| |
| |
| bool LCodeGen::IsInteger32(LConstantOperand* op) const { |
| return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32(); |
| } |
| |
| |
| bool LCodeGen::IsSmi(LConstantOperand* op) const { |
| return chunk_->LookupLiteralRepresentation(op).IsSmi(); |
| } |
| |
| |
| static int ArgumentsOffsetWithoutFrame(int index) { |
| DCHECK(index < 0); |
| return -(index + 1) * kPointerSize + kPCOnStackSize; |
| } |
| |
| |
| Operand LCodeGen::ToOperand(LOperand* op) const { |
| if (op->IsRegister()) return Operand(ToRegister(op)); |
| DCHECK(!op->IsDoubleRegister()); |
| DCHECK(op->IsStackSlot() || op->IsDoubleStackSlot()); |
| if (NeedsEagerFrame()) { |
| return Operand(ebp, FrameSlotToFPOffset(op->index())); |
| } else { |
| // Retrieve parameter without eager stack-frame relative to the |
| // stack-pointer. |
| return Operand(esp, ArgumentsOffsetWithoutFrame(op->index())); |
| } |
| } |
| |
| |
| Operand LCodeGen::HighOperand(LOperand* op) { |
| DCHECK(op->IsDoubleStackSlot()); |
| if (NeedsEagerFrame()) { |
| return Operand(ebp, FrameSlotToFPOffset(op->index()) + kPointerSize); |
| } else { |
| // Retrieve parameter without eager stack-frame relative to the |
| // stack-pointer. |
| return Operand( |
| esp, ArgumentsOffsetWithoutFrame(op->index()) + kPointerSize); |
| } |
| } |
| |
| |
| void LCodeGen::WriteTranslation(LEnvironment* environment, |
| Translation* translation) { |
| if (environment == NULL) return; |
| |
| // The translation includes one command per value in the environment. |
| int translation_size = environment->translation_size(); |
| |
| WriteTranslation(environment->outer(), translation); |
| WriteTranslationFrame(environment, translation); |
| |
| int object_index = 0; |
| int dematerialized_index = 0; |
| for (int i = 0; i < translation_size; ++i) { |
| LOperand* value = environment->values()->at(i); |
| AddToTranslation(environment, |
| translation, |
| value, |
| environment->HasTaggedValueAt(i), |
| environment->HasUint32ValueAt(i), |
| &object_index, |
| &dematerialized_index); |
| } |
| } |
| |
| |
| void LCodeGen::AddToTranslation(LEnvironment* environment, |
| Translation* translation, |
| LOperand* op, |
| bool is_tagged, |
| bool is_uint32, |
| int* object_index_pointer, |
| int* dematerialized_index_pointer) { |
| if (op == LEnvironment::materialization_marker()) { |
| int object_index = (*object_index_pointer)++; |
| if (environment->ObjectIsDuplicateAt(object_index)) { |
| int dupe_of = environment->ObjectDuplicateOfAt(object_index); |
| translation->DuplicateObject(dupe_of); |
| return; |
| } |
| int object_length = environment->ObjectLengthAt(object_index); |
| if (environment->ObjectIsArgumentsAt(object_index)) { |
| translation->BeginArgumentsObject(object_length); |
| } else { |
| translation->BeginCapturedObject(object_length); |
| } |
| int dematerialized_index = *dematerialized_index_pointer; |
| int env_offset = environment->translation_size() + dematerialized_index; |
| *dematerialized_index_pointer += object_length; |
| for (int i = 0; i < object_length; ++i) { |
| LOperand* value = environment->values()->at(env_offset + i); |
| AddToTranslation(environment, |
| translation, |
| value, |
| environment->HasTaggedValueAt(env_offset + i), |
| environment->HasUint32ValueAt(env_offset + i), |
| object_index_pointer, |
| dematerialized_index_pointer); |
| } |
| return; |
| } |
| |
| if (op->IsStackSlot()) { |
| int index = op->index(); |
| if (is_tagged) { |
| translation->StoreStackSlot(index); |
| } else if (is_uint32) { |
| translation->StoreUint32StackSlot(index); |
| } else { |
| translation->StoreInt32StackSlot(index); |
| } |
| } else if (op->IsDoubleStackSlot()) { |
| int index = op->index(); |
| translation->StoreDoubleStackSlot(index); |
| } else if (op->IsRegister()) { |
| Register reg = ToRegister(op); |
| if (is_tagged) { |
| translation->StoreRegister(reg); |
| } else if (is_uint32) { |
| translation->StoreUint32Register(reg); |
| } else { |
| translation->StoreInt32Register(reg); |
| } |
| } else if (op->IsDoubleRegister()) { |
| X87Register reg = ToX87Register(op); |
| translation->StoreDoubleRegister(reg); |
| } else if (op->IsConstantOperand()) { |
| HConstant* constant = chunk()->LookupConstant(LConstantOperand::cast(op)); |
| int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); |
| translation->StoreLiteral(src_index); |
| } else { |
| UNREACHABLE(); |
| } |
| } |
| |
| |
| void LCodeGen::CallCodeGeneric(Handle<Code> code, |
| RelocInfo::Mode mode, |
| LInstruction* instr, |
| SafepointMode safepoint_mode) { |
| DCHECK(instr != NULL); |
| __ call(code, mode); |
| RecordSafepointWithLazyDeopt(instr, safepoint_mode); |
| |
| // Signal that we don't inline smi code before these stubs in the |
| // optimizing code generator. |
| if (code->kind() == Code::BINARY_OP_IC || |
| code->kind() == Code::COMPARE_IC) { |
| __ nop(); |
| } |
| } |
| |
| |
| void LCodeGen::CallCode(Handle<Code> code, |
| RelocInfo::Mode mode, |
| LInstruction* instr) { |
| CallCodeGeneric(code, mode, instr, RECORD_SIMPLE_SAFEPOINT); |
| } |
| |
| |
| void LCodeGen::CallRuntime(const Runtime::Function* fun, int argc, |
| LInstruction* instr, SaveFPRegsMode save_doubles) { |
| DCHECK(instr != NULL); |
| DCHECK(instr->HasPointerMap()); |
| |
| __ CallRuntime(fun, argc, save_doubles); |
| |
| RecordSafepointWithLazyDeopt(instr, RECORD_SIMPLE_SAFEPOINT); |
| |
| DCHECK(info()->is_calling()); |
| } |
| |
| |
| void LCodeGen::LoadContextFromDeferred(LOperand* context) { |
| if (context->IsRegister()) { |
| if (!ToRegister(context).is(esi)) { |
| __ mov(esi, ToRegister(context)); |
| } |
| } else if (context->IsStackSlot()) { |
| __ mov(esi, ToOperand(context)); |
| } else if (context->IsConstantOperand()) { |
| HConstant* constant = |
| chunk_->LookupConstant(LConstantOperand::cast(context)); |
| __ LoadObject(esi, Handle<Object>::cast(constant->handle(isolate()))); |
| } else { |
| UNREACHABLE(); |
| } |
| } |
| |
| void LCodeGen::CallRuntimeFromDeferred(Runtime::FunctionId id, |
| int argc, |
| LInstruction* instr, |
| LOperand* context) { |
| LoadContextFromDeferred(context); |
| |
| __ CallRuntimeSaveDoubles(id); |
| RecordSafepointWithRegisters( |
| instr->pointer_map(), argc, Safepoint::kNoLazyDeopt); |
| |
| DCHECK(info()->is_calling()); |
| } |
| |
| |
| void LCodeGen::RegisterEnvironmentForDeoptimization( |
| LEnvironment* environment, Safepoint::DeoptMode mode) { |
| environment->set_has_been_used(); |
| if (!environment->HasBeenRegistered()) { |
| // Physical stack frame layout: |
| // -x ............. -4 0 ..................................... y |
| // [incoming arguments] [spill slots] [pushed outgoing arguments] |
| |
| // Layout of the environment: |
| // 0 ..................................................... size-1 |
| // [parameters] [locals] [expression stack including arguments] |
| |
| // Layout of the translation: |
| // 0 ........................................................ size - 1 + 4 |
| // [expression stack including arguments] [locals] [4 words] [parameters] |
| // |>------------ translation_size ------------<| |
| |
| int frame_count = 0; |
| int jsframe_count = 0; |
| for (LEnvironment* e = environment; e != NULL; e = e->outer()) { |
| ++frame_count; |
| if (e->frame_type() == JS_FUNCTION) { |
| ++jsframe_count; |
| } |
| } |
| Translation translation(&translations_, frame_count, jsframe_count, zone()); |
| WriteTranslation(environment, &translation); |
| int deoptimization_index = deoptimizations_.length(); |
| int pc_offset = masm()->pc_offset(); |
| environment->Register(deoptimization_index, |
| translation.index(), |
| (mode == Safepoint::kLazyDeopt) ? pc_offset : -1); |
| deoptimizations_.Add(environment, zone()); |
| } |
| } |
| |
| void LCodeGen::DeoptimizeIf(Condition cc, LInstruction* instr, |
| DeoptimizeReason deopt_reason, |
| Deoptimizer::BailoutType bailout_type) { |
| LEnvironment* environment = instr->environment(); |
| RegisterEnvironmentForDeoptimization(environment, Safepoint::kNoLazyDeopt); |
| DCHECK(environment->HasBeenRegistered()); |
| int id = environment->deoptimization_index(); |
| Address entry = |
| Deoptimizer::GetDeoptimizationEntry(isolate(), id, bailout_type); |
| if (entry == NULL) { |
| Abort(kBailoutWasNotPrepared); |
| return; |
| } |
| |
| if (DeoptEveryNTimes()) { |
| ExternalReference count = ExternalReference::stress_deopt_count(isolate()); |
| Label no_deopt; |
| __ pushfd(); |
| __ push(eax); |
| __ mov(eax, Operand::StaticVariable(count)); |
| __ sub(eax, Immediate(1)); |
| __ j(not_zero, &no_deopt, Label::kNear); |
| if (FLAG_trap_on_deopt) __ int3(); |
| __ mov(eax, Immediate(FLAG_deopt_every_n_times)); |
| __ mov(Operand::StaticVariable(count), eax); |
| __ pop(eax); |
| __ popfd(); |
| DCHECK(frame_is_built_); |
| // Put the x87 stack layout in TOS. |
| if (x87_stack_.depth() > 0) EmitFlushX87ForDeopt(); |
| __ push(Immediate(x87_stack_.GetLayout())); |
| __ fild_s(MemOperand(esp, 0)); |
| // Don't touch eflags. |
| __ lea(esp, Operand(esp, kPointerSize)); |
| __ call(entry, RelocInfo::RUNTIME_ENTRY); |
| __ bind(&no_deopt); |
| __ mov(Operand::StaticVariable(count), eax); |
| __ pop(eax); |
| __ popfd(); |
| } |
| |
| // Put the x87 stack layout in TOS, so that we can save x87 fp registers in |
| // the correct location. |
| { |
| Label done; |
| if (cc != no_condition) __ j(NegateCondition(cc), &done, Label::kNear); |
| if (x87_stack_.depth() > 0) EmitFlushX87ForDeopt(); |
| |
| int x87_stack_layout = x87_stack_.GetLayout(); |
| __ push(Immediate(x87_stack_layout)); |
| __ fild_s(MemOperand(esp, 0)); |
| // Don't touch eflags. |
| __ lea(esp, Operand(esp, kPointerSize)); |
| __ bind(&done); |
| } |
| |
| if (info()->ShouldTrapOnDeopt()) { |
| Label done; |
| if (cc != no_condition) __ j(NegateCondition(cc), &done, Label::kNear); |
| __ int3(); |
| __ bind(&done); |
| } |
| |
| Deoptimizer::DeoptInfo deopt_info = MakeDeoptInfo(instr, deopt_reason, id); |
| |
| DCHECK(info()->IsStub() || frame_is_built_); |
| if (cc == no_condition && frame_is_built_) { |
| DeoptComment(deopt_info); |
| __ call(entry, RelocInfo::RUNTIME_ENTRY); |
| } else { |
| Deoptimizer::JumpTableEntry table_entry(entry, deopt_info, bailout_type, |
| !frame_is_built_); |
| // We often have several deopts to the same entry, reuse the last |
| // jump entry if this is the case. |
| if (FLAG_trace_deopt || isolate()->is_profiling() || |
| jump_table_.is_empty() || |
| !table_entry.IsEquivalentTo(jump_table_.last())) { |
| jump_table_.Add(table_entry, zone()); |
| } |
| if (cc == no_condition) { |
| __ jmp(&jump_table_.last().label); |
| } else { |
| __ j(cc, &jump_table_.last().label); |
| } |
| } |
| } |
| |
| void LCodeGen::DeoptimizeIf(Condition cc, LInstruction* instr, |
| DeoptimizeReason deopt_reason) { |
| Deoptimizer::BailoutType bailout_type = info()->IsStub() |
| ? Deoptimizer::LAZY |
| : Deoptimizer::EAGER; |
| DeoptimizeIf(cc, instr, deopt_reason, bailout_type); |
| } |
| |
| |
| void LCodeGen::RecordSafepointWithLazyDeopt( |
| LInstruction* instr, SafepointMode safepoint_mode) { |
| if (safepoint_mode == RECORD_SIMPLE_SAFEPOINT) { |
| RecordSafepoint(instr->pointer_map(), Safepoint::kLazyDeopt); |
| } else { |
| DCHECK(safepoint_mode == RECORD_SAFEPOINT_WITH_REGISTERS_AND_NO_ARGUMENTS); |
| RecordSafepointWithRegisters( |
| instr->pointer_map(), 0, Safepoint::kLazyDeopt); |
| } |
| } |
| |
| |
| void LCodeGen::RecordSafepoint( |
| LPointerMap* pointers, |
| Safepoint::Kind kind, |
| int arguments, |
| Safepoint::DeoptMode deopt_mode) { |
| DCHECK(kind == expected_safepoint_kind_); |
| const ZoneList<LOperand*>* operands = pointers->GetNormalizedOperands(); |
| Safepoint safepoint = |
| safepoints_.DefineSafepoint(masm(), kind, arguments, deopt_mode); |
| for (int i = 0; i < operands->length(); i++) { |
| LOperand* pointer = operands->at(i); |
| if (pointer->IsStackSlot()) { |
| safepoint.DefinePointerSlot(pointer->index(), zone()); |
| } else if (pointer->IsRegister() && (kind & Safepoint::kWithRegisters)) { |
| safepoint.DefinePointerRegister(ToRegister(pointer), zone()); |
| } |
| } |
| } |
| |
| |
| void LCodeGen::RecordSafepoint(LPointerMap* pointers, |
| Safepoint::DeoptMode mode) { |
| RecordSafepoint(pointers, Safepoint::kSimple, 0, mode); |
| } |
| |
| |
| void LCodeGen::RecordSafepoint(Safepoint::DeoptMode mode) { |
| LPointerMap empty_pointers(zone()); |
| RecordSafepoint(&empty_pointers, mode); |
| } |
| |
| |
| void LCodeGen::RecordSafepointWithRegisters(LPointerMap* pointers, |
| int arguments, |
| Safepoint::DeoptMode mode) { |
| RecordSafepoint(pointers, Safepoint::kWithRegisters, arguments, mode); |
| } |
| |
| |
| static const char* LabelType(LLabel* label) { |
| if (label->is_loop_header()) return " (loop header)"; |
| if (label->is_osr_entry()) return " (OSR entry)"; |
| return ""; |
| } |
| |
| |
| void LCodeGen::DoLabel(LLabel* label) { |
| Comment(";;; <@%d,#%d> -------------------- B%d%s --------------------", |
| current_instruction_, |
| label->hydrogen_value()->id(), |
| label->block_id(), |
| LabelType(label)); |
| __ bind(label->label()); |
| current_block_ = label->block_id(); |
| if (label->block()->predecessors()->length() > 1) { |
| // A join block's x87 stack is that of its last visited predecessor. |
| // If the last visited predecessor block is unreachable, the stack state |
| // will be wrong. In such case, use the x87 stack of reachable predecessor. |
| X87StackMap::const_iterator it = x87_stack_map_.find(current_block_); |
| // Restore x87 stack. |
| if (it != x87_stack_map_.end()) { |
| x87_stack_ = *(it->second); |
| } |
| } |
| DoGap(label); |
| } |
| |
| |
| void LCodeGen::DoParallelMove(LParallelMove* move) { |
| resolver_.Resolve(move); |
| } |
| |
| |
| void LCodeGen::DoGap(LGap* gap) { |
| for (int i = LGap::FIRST_INNER_POSITION; |
| i <= LGap::LAST_INNER_POSITION; |
| i++) { |
| LGap::InnerPosition inner_pos = static_cast<LGap::InnerPosition>(i); |
| LParallelMove* move = gap->GetParallelMove(inner_pos); |
| if (move != NULL) DoParallelMove(move); |
| } |
| } |
| |
| |
| void LCodeGen::DoInstructionGap(LInstructionGap* instr) { |
| DoGap(instr); |
| } |
| |
| |
| void LCodeGen::DoParameter(LParameter* instr) { |
| // Nothing to do. |
| } |
| |
| |
| void LCodeGen::DoUnknownOSRValue(LUnknownOSRValue* instr) { |
| GenerateOsrPrologue(); |
| } |
| |
| |
| void LCodeGen::DoModByPowerOf2I(LModByPowerOf2I* instr) { |
| Register dividend = ToRegister(instr->dividend()); |
| int32_t divisor = instr->divisor(); |
| DCHECK(dividend.is(ToRegister(instr->result()))); |
| |
| // Theoretically, a variation of the branch-free code for integer division by |
| // a power of 2 (calculating the remainder via an additional multiplication |
| // (which gets simplified to an 'and') and subtraction) should be faster, and |
| // this is exactly what GCC and clang emit. Nevertheless, benchmarks seem to |
| // indicate that positive dividends are heavily favored, so the branching |
| // version performs better. |
| HMod* hmod = instr->hydrogen(); |
| int32_t mask = divisor < 0 ? -(divisor + 1) : (divisor - 1); |
| Label dividend_is_not_negative, done; |
| if (hmod->CheckFlag(HValue::kLeftCanBeNegative)) { |
| __ test(dividend, dividend); |
| __ j(not_sign, ÷nd_is_not_negative, Label::kNear); |
| // Note that this is correct even for kMinInt operands. |
| __ neg(dividend); |
| __ and_(dividend, mask); |
| __ neg(dividend); |
| if (hmod->CheckFlag(HValue::kBailoutOnMinusZero)) { |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kMinusZero); |
| } |
| __ jmp(&done, Label::kNear); |
| } |
| |
| __ bind(÷nd_is_not_negative); |
| __ and_(dividend, mask); |
| __ bind(&done); |
| } |
| |
| |
| void LCodeGen::DoModByConstI(LModByConstI* instr) { |
| Register dividend = ToRegister(instr->dividend()); |
| int32_t divisor = instr->divisor(); |
| DCHECK(ToRegister(instr->result()).is(eax)); |
| |
| if (divisor == 0) { |
| DeoptimizeIf(no_condition, instr, DeoptimizeReason::kDivisionByZero); |
| return; |
| } |
| |
| __ TruncatingDiv(dividend, Abs(divisor)); |
| __ imul(edx, edx, Abs(divisor)); |
| __ mov(eax, dividend); |
| __ sub(eax, edx); |
| |
| // Check for negative zero. |
| HMod* hmod = instr->hydrogen(); |
| if (hmod->CheckFlag(HValue::kBailoutOnMinusZero)) { |
| Label remainder_not_zero; |
| __ j(not_zero, &remainder_not_zero, Label::kNear); |
| __ cmp(dividend, Immediate(0)); |
| DeoptimizeIf(less, instr, DeoptimizeReason::kMinusZero); |
| __ bind(&remainder_not_zero); |
| } |
| } |
| |
| |
| void LCodeGen::DoModI(LModI* instr) { |
| HMod* hmod = instr->hydrogen(); |
| |
| Register left_reg = ToRegister(instr->left()); |
| DCHECK(left_reg.is(eax)); |
| Register right_reg = ToRegister(instr->right()); |
| DCHECK(!right_reg.is(eax)); |
| DCHECK(!right_reg.is(edx)); |
| Register result_reg = ToRegister(instr->result()); |
| DCHECK(result_reg.is(edx)); |
| |
| Label done; |
| // Check for x % 0, idiv would signal a divide error. We have to |
| // deopt in this case because we can't return a NaN. |
| if (hmod->CheckFlag(HValue::kCanBeDivByZero)) { |
| __ test(right_reg, Operand(right_reg)); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kDivisionByZero); |
| } |
| |
| // Check for kMinInt % -1, idiv would signal a divide error. We |
| // have to deopt if we care about -0, because we can't return that. |
| if (hmod->CheckFlag(HValue::kCanOverflow)) { |
| Label no_overflow_possible; |
| __ cmp(left_reg, kMinInt); |
| __ j(not_equal, &no_overflow_possible, Label::kNear); |
| __ cmp(right_reg, -1); |
| if (hmod->CheckFlag(HValue::kBailoutOnMinusZero)) { |
| DeoptimizeIf(equal, instr, DeoptimizeReason::kMinusZero); |
| } else { |
| __ j(not_equal, &no_overflow_possible, Label::kNear); |
| __ Move(result_reg, Immediate(0)); |
| __ jmp(&done, Label::kNear); |
| } |
| __ bind(&no_overflow_possible); |
| } |
| |
| // Sign extend dividend in eax into edx:eax. |
| __ cdq(); |
| |
| // If we care about -0, test if the dividend is <0 and the result is 0. |
| if (hmod->CheckFlag(HValue::kBailoutOnMinusZero)) { |
| Label positive_left; |
| __ test(left_reg, Operand(left_reg)); |
| __ j(not_sign, &positive_left, Label::kNear); |
| __ idiv(right_reg); |
| __ test(result_reg, Operand(result_reg)); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kMinusZero); |
| __ jmp(&done, Label::kNear); |
| __ bind(&positive_left); |
| } |
| __ idiv(right_reg); |
| __ bind(&done); |
| } |
| |
| |
| void LCodeGen::DoDivByPowerOf2I(LDivByPowerOf2I* instr) { |
| Register dividend = ToRegister(instr->dividend()); |
| int32_t divisor = instr->divisor(); |
| Register result = ToRegister(instr->result()); |
| DCHECK(divisor == kMinInt || base::bits::IsPowerOfTwo32(Abs(divisor))); |
| DCHECK(!result.is(dividend)); |
| |
| // Check for (0 / -x) that will produce negative zero. |
| HDiv* hdiv = instr->hydrogen(); |
| if (hdiv->CheckFlag(HValue::kBailoutOnMinusZero) && divisor < 0) { |
| __ test(dividend, dividend); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kMinusZero); |
| } |
| // Check for (kMinInt / -1). |
| if (hdiv->CheckFlag(HValue::kCanOverflow) && divisor == -1) { |
| __ cmp(dividend, kMinInt); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kOverflow); |
| } |
| // Deoptimize if remainder will not be 0. |
| if (!hdiv->CheckFlag(HInstruction::kAllUsesTruncatingToInt32) && |
| divisor != 1 && divisor != -1) { |
| int32_t mask = divisor < 0 ? -(divisor + 1) : (divisor - 1); |
| __ test(dividend, Immediate(mask)); |
| DeoptimizeIf(not_zero, instr, DeoptimizeReason::kLostPrecision); |
| } |
| __ Move(result, dividend); |
| int32_t shift = WhichPowerOf2Abs(divisor); |
| if (shift > 0) { |
| // The arithmetic shift is always OK, the 'if' is an optimization only. |
| if (shift > 1) __ sar(result, 31); |
| __ shr(result, 32 - shift); |
| __ add(result, dividend); |
| __ sar(result, shift); |
| } |
| if (divisor < 0) __ neg(result); |
| } |
| |
| |
| void LCodeGen::DoDivByConstI(LDivByConstI* instr) { |
| Register dividend = ToRegister(instr->dividend()); |
| int32_t divisor = instr->divisor(); |
| DCHECK(ToRegister(instr->result()).is(edx)); |
| |
| if (divisor == 0) { |
| DeoptimizeIf(no_condition, instr, DeoptimizeReason::kDivisionByZero); |
| return; |
| } |
| |
| // Check for (0 / -x) that will produce negative zero. |
| HDiv* hdiv = instr->hydrogen(); |
| if (hdiv->CheckFlag(HValue::kBailoutOnMinusZero) && divisor < 0) { |
| __ test(dividend, dividend); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kMinusZero); |
| } |
| |
| __ TruncatingDiv(dividend, Abs(divisor)); |
| if (divisor < 0) __ neg(edx); |
| |
| if (!hdiv->CheckFlag(HInstruction::kAllUsesTruncatingToInt32)) { |
| __ mov(eax, edx); |
| __ imul(eax, eax, divisor); |
| __ sub(eax, dividend); |
| DeoptimizeIf(not_equal, instr, DeoptimizeReason::kLostPrecision); |
| } |
| } |
| |
| |
| // TODO(svenpanne) Refactor this to avoid code duplication with DoFlooringDivI. |
| void LCodeGen::DoDivI(LDivI* instr) { |
| HBinaryOperation* hdiv = instr->hydrogen(); |
| Register dividend = ToRegister(instr->dividend()); |
| Register divisor = ToRegister(instr->divisor()); |
| Register remainder = ToRegister(instr->temp()); |
| DCHECK(dividend.is(eax)); |
| DCHECK(remainder.is(edx)); |
| DCHECK(ToRegister(instr->result()).is(eax)); |
| DCHECK(!divisor.is(eax)); |
| DCHECK(!divisor.is(edx)); |
| |
| // Check for x / 0. |
| if (hdiv->CheckFlag(HValue::kCanBeDivByZero)) { |
| __ test(divisor, divisor); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kDivisionByZero); |
| } |
| |
| // Check for (0 / -x) that will produce negative zero. |
| if (hdiv->CheckFlag(HValue::kBailoutOnMinusZero)) { |
| Label dividend_not_zero; |
| __ test(dividend, dividend); |
| __ j(not_zero, ÷nd_not_zero, Label::kNear); |
| __ test(divisor, divisor); |
| DeoptimizeIf(sign, instr, DeoptimizeReason::kMinusZero); |
| __ bind(÷nd_not_zero); |
| } |
| |
| // Check for (kMinInt / -1). |
| if (hdiv->CheckFlag(HValue::kCanOverflow)) { |
| Label dividend_not_min_int; |
| __ cmp(dividend, kMinInt); |
| __ j(not_zero, ÷nd_not_min_int, Label::kNear); |
| __ cmp(divisor, -1); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kOverflow); |
| __ bind(÷nd_not_min_int); |
| } |
| |
| // Sign extend to edx (= remainder). |
| __ cdq(); |
| __ idiv(divisor); |
| |
| if (!hdiv->CheckFlag(HValue::kAllUsesTruncatingToInt32)) { |
| // Deoptimize if remainder is not 0. |
| __ test(remainder, remainder); |
| DeoptimizeIf(not_zero, instr, DeoptimizeReason::kLostPrecision); |
| } |
| } |
| |
| |
| void LCodeGen::DoFlooringDivByPowerOf2I(LFlooringDivByPowerOf2I* instr) { |
| Register dividend = ToRegister(instr->dividend()); |
| int32_t divisor = instr->divisor(); |
| DCHECK(dividend.is(ToRegister(instr->result()))); |
| |
| // If the divisor is positive, things are easy: There can be no deopts and we |
| // can simply do an arithmetic right shift. |
| if (divisor == 1) return; |
| int32_t shift = WhichPowerOf2Abs(divisor); |
| if (divisor > 1) { |
| __ sar(dividend, shift); |
| return; |
| } |
| |
| // If the divisor is negative, we have to negate and handle edge cases. |
| __ neg(dividend); |
| if (instr->hydrogen()->CheckFlag(HValue::kBailoutOnMinusZero)) { |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kMinusZero); |
| } |
| |
| // Dividing by -1 is basically negation, unless we overflow. |
| if (divisor == -1) { |
| if (instr->hydrogen()->CheckFlag(HValue::kLeftCanBeMinInt)) { |
| DeoptimizeIf(overflow, instr, DeoptimizeReason::kOverflow); |
| } |
| return; |
| } |
| |
| // If the negation could not overflow, simply shifting is OK. |
| if (!instr->hydrogen()->CheckFlag(HValue::kLeftCanBeMinInt)) { |
| __ sar(dividend, shift); |
| return; |
| } |
| |
| Label not_kmin_int, done; |
| __ j(no_overflow, ¬_kmin_int, Label::kNear); |
| __ mov(dividend, Immediate(kMinInt / divisor)); |
| __ jmp(&done, Label::kNear); |
| __ bind(¬_kmin_int); |
| __ sar(dividend, shift); |
| __ bind(&done); |
| } |
| |
| |
| void LCodeGen::DoFlooringDivByConstI(LFlooringDivByConstI* instr) { |
| Register dividend = ToRegister(instr->dividend()); |
| int32_t divisor = instr->divisor(); |
| DCHECK(ToRegister(instr->result()).is(edx)); |
| |
| if (divisor == 0) { |
| DeoptimizeIf(no_condition, instr, DeoptimizeReason::kDivisionByZero); |
| return; |
| } |
| |
| // Check for (0 / -x) that will produce negative zero. |
| HMathFloorOfDiv* hdiv = instr->hydrogen(); |
| if (hdiv->CheckFlag(HValue::kBailoutOnMinusZero) && divisor < 0) { |
| __ test(dividend, dividend); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kMinusZero); |
| } |
| |
| // Easy case: We need no dynamic check for the dividend and the flooring |
| // division is the same as the truncating division. |
| if ((divisor > 0 && !hdiv->CheckFlag(HValue::kLeftCanBeNegative)) || |
| (divisor < 0 && !hdiv->CheckFlag(HValue::kLeftCanBePositive))) { |
| __ TruncatingDiv(dividend, Abs(divisor)); |
| if (divisor < 0) __ neg(edx); |
| return; |
| } |
| |
| // In the general case we may need to adjust before and after the truncating |
| // division to get a flooring division. |
| Register temp = ToRegister(instr->temp3()); |
| DCHECK(!temp.is(dividend) && !temp.is(eax) && !temp.is(edx)); |
| Label needs_adjustment, done; |
| __ cmp(dividend, Immediate(0)); |
| __ j(divisor > 0 ? less : greater, &needs_adjustment, Label::kNear); |
| __ TruncatingDiv(dividend, Abs(divisor)); |
| if (divisor < 0) __ neg(edx); |
| __ jmp(&done, Label::kNear); |
| __ bind(&needs_adjustment); |
| __ lea(temp, Operand(dividend, divisor > 0 ? 1 : -1)); |
| __ TruncatingDiv(temp, Abs(divisor)); |
| if (divisor < 0) __ neg(edx); |
| __ dec(edx); |
| __ bind(&done); |
| } |
| |
| |
| // TODO(svenpanne) Refactor this to avoid code duplication with DoDivI. |
| void LCodeGen::DoFlooringDivI(LFlooringDivI* instr) { |
| HBinaryOperation* hdiv = instr->hydrogen(); |
| Register dividend = ToRegister(instr->dividend()); |
| Register divisor = ToRegister(instr->divisor()); |
| Register remainder = ToRegister(instr->temp()); |
| Register result = ToRegister(instr->result()); |
| DCHECK(dividend.is(eax)); |
| DCHECK(remainder.is(edx)); |
| DCHECK(result.is(eax)); |
| DCHECK(!divisor.is(eax)); |
| DCHECK(!divisor.is(edx)); |
| |
| // Check for x / 0. |
| if (hdiv->CheckFlag(HValue::kCanBeDivByZero)) { |
| __ test(divisor, divisor); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kDivisionByZero); |
| } |
| |
| // Check for (0 / -x) that will produce negative zero. |
| if (hdiv->CheckFlag(HValue::kBailoutOnMinusZero)) { |
| Label dividend_not_zero; |
| __ test(dividend, dividend); |
| __ j(not_zero, ÷nd_not_zero, Label::kNear); |
| __ test(divisor, divisor); |
| DeoptimizeIf(sign, instr, DeoptimizeReason::kMinusZero); |
| __ bind(÷nd_not_zero); |
| } |
| |
| // Check for (kMinInt / -1). |
| if (hdiv->CheckFlag(HValue::kCanOverflow)) { |
| Label dividend_not_min_int; |
| __ cmp(dividend, kMinInt); |
| __ j(not_zero, ÷nd_not_min_int, Label::kNear); |
| __ cmp(divisor, -1); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kOverflow); |
| __ bind(÷nd_not_min_int); |
| } |
| |
| // Sign extend to edx (= remainder). |
| __ cdq(); |
| __ idiv(divisor); |
| |
| Label done; |
| __ test(remainder, remainder); |
| __ j(zero, &done, Label::kNear); |
| __ xor_(remainder, divisor); |
| __ sar(remainder, 31); |
| __ add(result, remainder); |
| __ bind(&done); |
| } |
| |
| |
| void LCodeGen::DoMulI(LMulI* instr) { |
| Register left = ToRegister(instr->left()); |
| LOperand* right = instr->right(); |
| |
| if (instr->hydrogen()->CheckFlag(HValue::kBailoutOnMinusZero)) { |
| __ mov(ToRegister(instr->temp()), left); |
| } |
| |
| if (right->IsConstantOperand()) { |
| // Try strength reductions on the multiplication. |
| // All replacement instructions are at most as long as the imul |
| // and have better latency. |
| int constant = ToInteger32(LConstantOperand::cast(right)); |
| if (constant == -1) { |
| __ neg(left); |
| } else if (constant == 0) { |
| __ xor_(left, Operand(left)); |
| } else if (constant == 2) { |
| __ add(left, Operand(left)); |
| } else if (!instr->hydrogen()->CheckFlag(HValue::kCanOverflow)) { |
| // If we know that the multiplication can't overflow, it's safe to |
| // use instructions that don't set the overflow flag for the |
| // multiplication. |
| switch (constant) { |
| case 1: |
| // Do nothing. |
| break; |
| case 3: |
| __ lea(left, Operand(left, left, times_2, 0)); |
| break; |
| case 4: |
| __ shl(left, 2); |
| break; |
| case 5: |
| __ lea(left, Operand(left, left, times_4, 0)); |
| break; |
| case 8: |
| __ shl(left, 3); |
| break; |
| case 9: |
| __ lea(left, Operand(left, left, times_8, 0)); |
| break; |
| case 16: |
| __ shl(left, 4); |
| break; |
| default: |
| __ imul(left, left, constant); |
| break; |
| } |
| } else { |
| __ imul(left, left, constant); |
| } |
| } else { |
| if (instr->hydrogen()->representation().IsSmi()) { |
| __ SmiUntag(left); |
| } |
| __ imul(left, ToOperand(right)); |
| } |
| |
| if (instr->hydrogen()->CheckFlag(HValue::kCanOverflow)) { |
| DeoptimizeIf(overflow, instr, DeoptimizeReason::kOverflow); |
| } |
| |
| if (instr->hydrogen()->CheckFlag(HValue::kBailoutOnMinusZero)) { |
| // Bail out if the result is supposed to be negative zero. |
| Label done; |
| __ test(left, Operand(left)); |
| __ j(not_zero, &done); |
| if (right->IsConstantOperand()) { |
| if (ToInteger32(LConstantOperand::cast(right)) < 0) { |
| DeoptimizeIf(no_condition, instr, DeoptimizeReason::kMinusZero); |
| } else if (ToInteger32(LConstantOperand::cast(right)) == 0) { |
| __ cmp(ToRegister(instr->temp()), Immediate(0)); |
| DeoptimizeIf(less, instr, DeoptimizeReason::kMinusZero); |
| } |
| } else { |
| // Test the non-zero operand for negative sign. |
| __ or_(ToRegister(instr->temp()), ToOperand(right)); |
| DeoptimizeIf(sign, instr, DeoptimizeReason::kMinusZero); |
| } |
| __ bind(&done); |
| } |
| } |
| |
| |
| void LCodeGen::DoBitI(LBitI* instr) { |
| LOperand* left = instr->left(); |
| LOperand* right = instr->right(); |
| DCHECK(left->Equals(instr->result())); |
| DCHECK(left->IsRegister()); |
| |
| if (right->IsConstantOperand()) { |
| int32_t right_operand = |
| ToRepresentation(LConstantOperand::cast(right), |
| instr->hydrogen()->representation()); |
| switch (instr->op()) { |
| case Token::BIT_AND: |
| __ and_(ToRegister(left), right_operand); |
| break; |
| case Token::BIT_OR: |
| __ or_(ToRegister(left), right_operand); |
| break; |
| case Token::BIT_XOR: |
| if (right_operand == int32_t(~0)) { |
| __ not_(ToRegister(left)); |
| } else { |
| __ xor_(ToRegister(left), right_operand); |
| } |
| break; |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| } else { |
| switch (instr->op()) { |
| case Token::BIT_AND: |
| __ and_(ToRegister(left), ToOperand(right)); |
| break; |
| case Token::BIT_OR: |
| __ or_(ToRegister(left), ToOperand(right)); |
| break; |
| case Token::BIT_XOR: |
| __ xor_(ToRegister(left), ToOperand(right)); |
| break; |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| } |
| } |
| |
| |
| void LCodeGen::DoShiftI(LShiftI* instr) { |
| LOperand* left = instr->left(); |
| LOperand* right = instr->right(); |
| DCHECK(left->Equals(instr->result())); |
| DCHECK(left->IsRegister()); |
| if (right->IsRegister()) { |
| DCHECK(ToRegister(right).is(ecx)); |
| |
| switch (instr->op()) { |
| case Token::ROR: |
| __ ror_cl(ToRegister(left)); |
| break; |
| case Token::SAR: |
| __ sar_cl(ToRegister(left)); |
| break; |
| case Token::SHR: |
| __ shr_cl(ToRegister(left)); |
| if (instr->can_deopt()) { |
| __ test(ToRegister(left), ToRegister(left)); |
| DeoptimizeIf(sign, instr, DeoptimizeReason::kNegativeValue); |
| } |
| break; |
| case Token::SHL: |
| __ shl_cl(ToRegister(left)); |
| break; |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| } else { |
| int value = ToInteger32(LConstantOperand::cast(right)); |
| uint8_t shift_count = static_cast<uint8_t>(value & 0x1F); |
| switch (instr->op()) { |
| case Token::ROR: |
| if (shift_count == 0 && instr->can_deopt()) { |
| __ test(ToRegister(left), ToRegister(left)); |
| DeoptimizeIf(sign, instr, DeoptimizeReason::kNegativeValue); |
| } else { |
| __ ror(ToRegister(left), shift_count); |
| } |
| break; |
| case Token::SAR: |
| if (shift_count != 0) { |
| __ sar(ToRegister(left), shift_count); |
| } |
| break; |
| case Token::SHR: |
| if (shift_count != 0) { |
| __ shr(ToRegister(left), shift_count); |
| } else if (instr->can_deopt()) { |
| __ test(ToRegister(left), ToRegister(left)); |
| DeoptimizeIf(sign, instr, DeoptimizeReason::kNegativeValue); |
| } |
| break; |
| case Token::SHL: |
| if (shift_count != 0) { |
| if (instr->hydrogen_value()->representation().IsSmi() && |
| instr->can_deopt()) { |
| if (shift_count != 1) { |
| __ shl(ToRegister(left), shift_count - 1); |
| } |
| __ SmiTag(ToRegister(left)); |
| DeoptimizeIf(overflow, instr, DeoptimizeReason::kOverflow); |
| } else { |
| __ shl(ToRegister(left), shift_count); |
| } |
| } |
| break; |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| } |
| } |
| |
| |
| void LCodeGen::DoSubI(LSubI* instr) { |
| LOperand* left = instr->left(); |
| LOperand* right = instr->right(); |
| DCHECK(left->Equals(instr->result())); |
| |
| if (right->IsConstantOperand()) { |
| __ sub(ToOperand(left), |
| ToImmediate(right, instr->hydrogen()->representation())); |
| } else { |
| __ sub(ToRegister(left), ToOperand(right)); |
| } |
| if (instr->hydrogen()->CheckFlag(HValue::kCanOverflow)) { |
| DeoptimizeIf(overflow, instr, DeoptimizeReason::kOverflow); |
| } |
| } |
| |
| |
| void LCodeGen::DoConstantI(LConstantI* instr) { |
| __ Move(ToRegister(instr->result()), Immediate(instr->value())); |
| } |
| |
| |
| void LCodeGen::DoConstantS(LConstantS* instr) { |
| __ Move(ToRegister(instr->result()), Immediate(instr->value())); |
| } |
| |
| |
| void LCodeGen::DoConstantD(LConstantD* instr) { |
| uint64_t const bits = instr->bits(); |
| uint32_t const lower = static_cast<uint32_t>(bits); |
| uint32_t const upper = static_cast<uint32_t>(bits >> 32); |
| DCHECK(instr->result()->IsDoubleRegister()); |
| |
| __ push(Immediate(upper)); |
| __ push(Immediate(lower)); |
| X87Register reg = ToX87Register(instr->result()); |
| X87Mov(reg, Operand(esp, 0)); |
| __ add(Operand(esp), Immediate(kDoubleSize)); |
| } |
| |
| |
| void LCodeGen::DoConstantE(LConstantE* instr) { |
| __ lea(ToRegister(instr->result()), Operand::StaticVariable(instr->value())); |
| } |
| |
| |
| void LCodeGen::DoConstantT(LConstantT* instr) { |
| Register reg = ToRegister(instr->result()); |
| Handle<Object> object = instr->value(isolate()); |
| AllowDeferredHandleDereference smi_check; |
| __ LoadObject(reg, object); |
| } |
| |
| |
| Operand LCodeGen::BuildSeqStringOperand(Register string, |
| LOperand* index, |
| String::Encoding encoding) { |
| if (index->IsConstantOperand()) { |
| int offset = ToRepresentation(LConstantOperand::cast(index), |
| Representation::Integer32()); |
| if (encoding == String::TWO_BYTE_ENCODING) { |
| offset *= kUC16Size; |
| } |
| STATIC_ASSERT(kCharSize == 1); |
| return FieldOperand(string, SeqString::kHeaderSize + offset); |
| } |
| return FieldOperand( |
| string, ToRegister(index), |
| encoding == String::ONE_BYTE_ENCODING ? times_1 : times_2, |
| SeqString::kHeaderSize); |
| } |
| |
| |
| void LCodeGen::DoSeqStringGetChar(LSeqStringGetChar* instr) { |
| String::Encoding encoding = instr->hydrogen()->encoding(); |
| Register result = ToRegister(instr->result()); |
| Register string = ToRegister(instr->string()); |
| |
| if (FLAG_debug_code) { |
| __ push(string); |
| __ mov(string, FieldOperand(string, HeapObject::kMapOffset)); |
| __ movzx_b(string, FieldOperand(string, Map::kInstanceTypeOffset)); |
| |
| __ and_(string, Immediate(kStringRepresentationMask | kStringEncodingMask)); |
| static const uint32_t one_byte_seq_type = kSeqStringTag | kOneByteStringTag; |
| static const uint32_t two_byte_seq_type = kSeqStringTag | kTwoByteStringTag; |
| __ cmp(string, Immediate(encoding == String::ONE_BYTE_ENCODING |
| ? one_byte_seq_type : two_byte_seq_type)); |
| __ Check(equal, kUnexpectedStringType); |
| __ pop(string); |
| } |
| |
| Operand operand = BuildSeqStringOperand(string, instr->index(), encoding); |
| if (encoding == String::ONE_BYTE_ENCODING) { |
| __ movzx_b(result, operand); |
| } else { |
| __ movzx_w(result, operand); |
| } |
| } |
| |
| |
| void LCodeGen::DoSeqStringSetChar(LSeqStringSetChar* instr) { |
| String::Encoding encoding = instr->hydrogen()->encoding(); |
| Register string = ToRegister(instr->string()); |
| |
| if (FLAG_debug_code) { |
| Register value = ToRegister(instr->value()); |
| Register index = ToRegister(instr->index()); |
| static const uint32_t one_byte_seq_type = kSeqStringTag | kOneByteStringTag; |
| static const uint32_t two_byte_seq_type = kSeqStringTag | kTwoByteStringTag; |
| int encoding_mask = |
| instr->hydrogen()->encoding() == String::ONE_BYTE_ENCODING |
| ? one_byte_seq_type : two_byte_seq_type; |
| __ EmitSeqStringSetCharCheck(string, index, value, encoding_mask); |
| } |
| |
| Operand operand = BuildSeqStringOperand(string, instr->index(), encoding); |
| if (instr->value()->IsConstantOperand()) { |
| int value = ToRepresentation(LConstantOperand::cast(instr->value()), |
| Representation::Integer32()); |
| DCHECK_LE(0, value); |
| if (encoding == String::ONE_BYTE_ENCODING) { |
| DCHECK_LE(value, String::kMaxOneByteCharCode); |
| __ mov_b(operand, static_cast<int8_t>(value)); |
| } else { |
| DCHECK_LE(value, String::kMaxUtf16CodeUnit); |
| __ mov_w(operand, static_cast<int16_t>(value)); |
| } |
| } else { |
| Register value = ToRegister(instr->value()); |
| if (encoding == String::ONE_BYTE_ENCODING) { |
| __ mov_b(operand, value); |
| } else { |
| __ mov_w(operand, value); |
| } |
| } |
| } |
| |
| |
| void LCodeGen::DoAddI(LAddI* instr) { |
| LOperand* left = instr->left(); |
| LOperand* right = instr->right(); |
| |
| if (LAddI::UseLea(instr->hydrogen()) && !left->Equals(instr->result())) { |
| if (right->IsConstantOperand()) { |
| int32_t offset = ToRepresentation(LConstantOperand::cast(right), |
| instr->hydrogen()->representation()); |
| __ lea(ToRegister(instr->result()), MemOperand(ToRegister(left), offset)); |
| } else { |
| Operand address(ToRegister(left), ToRegister(right), times_1, 0); |
| __ lea(ToRegister(instr->result()), address); |
| } |
| } else { |
| if (right->IsConstantOperand()) { |
| __ add(ToOperand(left), |
| ToImmediate(right, instr->hydrogen()->representation())); |
| } else { |
| __ add(ToRegister(left), ToOperand(right)); |
| } |
| if (instr->hydrogen()->CheckFlag(HValue::kCanOverflow)) { |
| DeoptimizeIf(overflow, instr, DeoptimizeReason::kOverflow); |
| } |
| } |
| } |
| |
| |
| void LCodeGen::DoMathMinMax(LMathMinMax* instr) { |
| LOperand* left = instr->left(); |
| LOperand* right = instr->right(); |
| DCHECK(left->Equals(instr->result())); |
| HMathMinMax::Operation operation = instr->hydrogen()->operation(); |
| if (instr->hydrogen()->representation().IsSmiOrInteger32()) { |
| Label return_left; |
| Condition condition = (operation == HMathMinMax::kMathMin) |
| ? less_equal |
| : greater_equal; |
| if (right->IsConstantOperand()) { |
| Operand left_op = ToOperand(left); |
| Immediate immediate = ToImmediate(LConstantOperand::cast(instr->right()), |
| instr->hydrogen()->representation()); |
| __ cmp(left_op, immediate); |
| __ j(condition, &return_left, Label::kNear); |
| __ mov(left_op, immediate); |
| } else { |
| Register left_reg = ToRegister(left); |
| Operand right_op = ToOperand(right); |
| __ cmp(left_reg, right_op); |
| __ j(condition, &return_left, Label::kNear); |
| __ mov(left_reg, right_op); |
| } |
| __ bind(&return_left); |
| } else { |
| DCHECK(instr->hydrogen()->representation().IsDouble()); |
| Label check_nan_left, check_zero, return_left, return_right; |
| Condition condition = (operation == HMathMinMax::kMathMin) ? below : above; |
| X87Register left_reg = ToX87Register(left); |
| X87Register right_reg = ToX87Register(right); |
| |
| X87PrepareBinaryOp(left_reg, right_reg, ToX87Register(instr->result())); |
| __ fld(1); |
| __ fld(1); |
| __ FCmp(); |
| __ j(parity_even, &check_nan_left, Label::kNear); // At least one NaN. |
| __ j(equal, &check_zero, Label::kNear); // left == right. |
| __ j(condition, &return_left, Label::kNear); |
| __ jmp(&return_right, Label::kNear); |
| |
| __ bind(&check_zero); |
| __ fld(0); |
| __ fldz(); |
| __ FCmp(); |
| __ j(not_equal, &return_left, Label::kNear); // left == right != 0. |
| // At this point, both left and right are either 0 or -0. |
| if (operation == HMathMinMax::kMathMin) { |
| // Push st0 and st1 to stack, then pop them to temp registers and OR them, |
| // load it to left. |
| Register scratch_reg = ToRegister(instr->temp()); |
| __ fld(1); |
| __ fld(1); |
| __ sub(esp, Immediate(2 * kPointerSize)); |
| __ fstp_s(MemOperand(esp, 0)); |
| __ fstp_s(MemOperand(esp, kPointerSize)); |
| __ pop(scratch_reg); |
| __ or_(MemOperand(esp, 0), scratch_reg); |
| X87Mov(left_reg, MemOperand(esp, 0), kX87FloatOperand); |
| __ pop(scratch_reg); // restore esp |
| } else { |
| // Since we operate on +0 and/or -0, addsd and andsd have the same effect. |
| // Should put the result in stX0 |
| __ fadd_i(1); |
| } |
| __ jmp(&return_left, Label::kNear); |
| |
| __ bind(&check_nan_left); |
| __ fld(0); |
| __ fld(0); |
| __ FCmp(); // NaN check. |
| __ j(parity_even, &return_left, Label::kNear); // left == NaN. |
| |
| __ bind(&return_right); |
| X87Mov(left_reg, right_reg); |
| |
| __ bind(&return_left); |
| } |
| } |
| |
| |
| void LCodeGen::DoArithmeticD(LArithmeticD* instr) { |
| X87Register left = ToX87Register(instr->left()); |
| X87Register right = ToX87Register(instr->right()); |
| X87Register result = ToX87Register(instr->result()); |
| if (instr->op() != Token::MOD) { |
| X87PrepareBinaryOp(left, right, result); |
| } |
| // Set the precision control to double-precision. |
| __ X87SetFPUCW(0x027F); |
| switch (instr->op()) { |
| case Token::ADD: |
| __ fadd_i(1); |
| break; |
| case Token::SUB: |
| __ fsub_i(1); |
| break; |
| case Token::MUL: |
| __ fmul_i(1); |
| break; |
| case Token::DIV: |
| __ fdiv_i(1); |
| break; |
| case Token::MOD: { |
| // Pass two doubles as arguments on the stack. |
| __ PrepareCallCFunction(4, eax); |
| X87Mov(Operand(esp, 1 * kDoubleSize), right); |
| X87Mov(Operand(esp, 0), left); |
| X87Free(right); |
| DCHECK(left.is(result)); |
| X87PrepareToWrite(result); |
| __ CallCFunction( |
| ExternalReference::mod_two_doubles_operation(isolate()), |
| 4); |
| |
| // Return value is in st(0) on ia32. |
| X87CommitWrite(result); |
| break; |
| } |
| default: |
| UNREACHABLE(); |
| break; |
| } |
| |
| // Restore the default value of control word. |
| __ X87SetFPUCW(0x037F); |
| } |
| |
| |
| void LCodeGen::DoArithmeticT(LArithmeticT* instr) { |
| DCHECK(ToRegister(instr->context()).is(esi)); |
| DCHECK(ToRegister(instr->left()).is(edx)); |
| DCHECK(ToRegister(instr->right()).is(eax)); |
| DCHECK(ToRegister(instr->result()).is(eax)); |
| |
| Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), instr->op()).code(); |
| CallCode(code, RelocInfo::CODE_TARGET, instr); |
| } |
| |
| |
| template<class InstrType> |
| void LCodeGen::EmitBranch(InstrType instr, Condition cc) { |
| int left_block = instr->TrueDestination(chunk_); |
| int right_block = instr->FalseDestination(chunk_); |
| |
| int next_block = GetNextEmittedBlock(); |
| |
| if (right_block == left_block || cc == no_condition) { |
| EmitGoto(left_block); |
| } else if (left_block == next_block) { |
| __ j(NegateCondition(cc), chunk_->GetAssemblyLabel(right_block)); |
| } else if (right_block == next_block) { |
| __ j(cc, chunk_->GetAssemblyLabel(left_block)); |
| } else { |
| __ j(cc, chunk_->GetAssemblyLabel(left_block)); |
| __ jmp(chunk_->GetAssemblyLabel(right_block)); |
| } |
| } |
| |
| |
| template <class InstrType> |
| void LCodeGen::EmitTrueBranch(InstrType instr, Condition cc) { |
| int true_block = instr->TrueDestination(chunk_); |
| if (cc == no_condition) { |
| __ jmp(chunk_->GetAssemblyLabel(true_block)); |
| } else { |
| __ j(cc, chunk_->GetAssemblyLabel(true_block)); |
| } |
| } |
| |
| |
| template<class InstrType> |
| void LCodeGen::EmitFalseBranch(InstrType instr, Condition cc) { |
| int false_block = instr->FalseDestination(chunk_); |
| if (cc == no_condition) { |
| __ jmp(chunk_->GetAssemblyLabel(false_block)); |
| } else { |
| __ j(cc, chunk_->GetAssemblyLabel(false_block)); |
| } |
| } |
| |
| |
| void LCodeGen::DoBranch(LBranch* instr) { |
| Representation r = instr->hydrogen()->value()->representation(); |
| if (r.IsSmiOrInteger32()) { |
| Register reg = ToRegister(instr->value()); |
| __ test(reg, Operand(reg)); |
| EmitBranch(instr, not_zero); |
| } else if (r.IsDouble()) { |
| X87Register reg = ToX87Register(instr->value()); |
| X87LoadForUsage(reg); |
| __ fldz(); |
| __ FCmp(); |
| EmitBranch(instr, not_zero); |
| } else { |
| DCHECK(r.IsTagged()); |
| Register reg = ToRegister(instr->value()); |
| HType type = instr->hydrogen()->value()->type(); |
| if (type.IsBoolean()) { |
| DCHECK(!info()->IsStub()); |
| __ cmp(reg, factory()->true_value()); |
| EmitBranch(instr, equal); |
| } else if (type.IsSmi()) { |
| DCHECK(!info()->IsStub()); |
| __ test(reg, Operand(reg)); |
| EmitBranch(instr, not_equal); |
| } else if (type.IsJSArray()) { |
| DCHECK(!info()->IsStub()); |
| EmitBranch(instr, no_condition); |
| } else if (type.IsHeapNumber()) { |
| UNREACHABLE(); |
| } else if (type.IsString()) { |
| DCHECK(!info()->IsStub()); |
| __ cmp(FieldOperand(reg, String::kLengthOffset), Immediate(0)); |
| EmitBranch(instr, not_equal); |
| } else { |
| ToBooleanHints expected = instr->hydrogen()->expected_input_types(); |
| if (expected == ToBooleanHint::kNone) expected = ToBooleanHint::kAny; |
| |
| if (expected & ToBooleanHint::kUndefined) { |
| // undefined -> false. |
| __ cmp(reg, factory()->undefined_value()); |
| __ j(equal, instr->FalseLabel(chunk_)); |
| } |
| if (expected & ToBooleanHint::kBoolean) { |
| // true -> true. |
| __ cmp(reg, factory()->true_value()); |
| __ j(equal, instr->TrueLabel(chunk_)); |
| // false -> false. |
| __ cmp(reg, factory()->false_value()); |
| __ j(equal, instr->FalseLabel(chunk_)); |
| } |
| if (expected & ToBooleanHint::kNull) { |
| // 'null' -> false. |
| __ cmp(reg, factory()->null_value()); |
| __ j(equal, instr->FalseLabel(chunk_)); |
| } |
| |
| if (expected & ToBooleanHint::kSmallInteger) { |
| // Smis: 0 -> false, all other -> true. |
| __ test(reg, Operand(reg)); |
| __ j(equal, instr->FalseLabel(chunk_)); |
| __ JumpIfSmi(reg, instr->TrueLabel(chunk_)); |
| } else if (expected & ToBooleanHint::kNeedsMap) { |
| // If we need a map later and have a Smi -> deopt. |
| __ test(reg, Immediate(kSmiTagMask)); |
| DeoptimizeIf(zero, instr, DeoptimizeReason::kSmi); |
| } |
| |
| Register map = no_reg; // Keep the compiler happy. |
| if (expected & ToBooleanHint::kNeedsMap) { |
| map = ToRegister(instr->temp()); |
| DCHECK(!map.is(reg)); |
| __ mov(map, FieldOperand(reg, HeapObject::kMapOffset)); |
| |
| if (expected & ToBooleanHint::kCanBeUndetectable) { |
| // Undetectable -> false. |
| __ test_b(FieldOperand(map, Map::kBitFieldOffset), |
| Immediate(1 << Map::kIsUndetectable)); |
| __ j(not_zero, instr->FalseLabel(chunk_)); |
| } |
| } |
| |
| if (expected & ToBooleanHint::kReceiver) { |
| // spec object -> true. |
| __ CmpInstanceType(map, FIRST_JS_RECEIVER_TYPE); |
| __ j(above_equal, instr->TrueLabel(chunk_)); |
| } |
| |
| if (expected & ToBooleanHint::kString) { |
| // String value -> false iff empty. |
| Label not_string; |
| __ CmpInstanceType(map, FIRST_NONSTRING_TYPE); |
| __ j(above_equal, ¬_string, Label::kNear); |
| __ cmp(FieldOperand(reg, String::kLengthOffset), Immediate(0)); |
| __ j(not_zero, instr->TrueLabel(chunk_)); |
| __ jmp(instr->FalseLabel(chunk_)); |
| __ bind(¬_string); |
| } |
| |
| if (expected & ToBooleanHint::kSymbol) { |
| // Symbol value -> true. |
| __ CmpInstanceType(map, SYMBOL_TYPE); |
| __ j(equal, instr->TrueLabel(chunk_)); |
| } |
| |
| if (expected & ToBooleanHint::kSimdValue) { |
| // SIMD value -> true. |
| __ CmpInstanceType(map, SIMD128_VALUE_TYPE); |
| __ j(equal, instr->TrueLabel(chunk_)); |
| } |
| |
| if (expected & ToBooleanHint::kHeapNumber) { |
| // heap number -> false iff +0, -0, or NaN. |
| Label not_heap_number; |
| __ cmp(FieldOperand(reg, HeapObject::kMapOffset), |
| factory()->heap_number_map()); |
| __ j(not_equal, ¬_heap_number, Label::kNear); |
| __ fldz(); |
| __ fld_d(FieldOperand(reg, HeapNumber::kValueOffset)); |
| __ FCmp(); |
| __ j(zero, instr->FalseLabel(chunk_)); |
| __ jmp(instr->TrueLabel(chunk_)); |
| __ bind(¬_heap_number); |
| } |
| |
| if (expected != ToBooleanHint::kAny) { |
| // We've seen something for the first time -> deopt. |
| // This can only happen if we are not generic already. |
| DeoptimizeIf(no_condition, instr, DeoptimizeReason::kUnexpectedObject); |
| } |
| } |
| } |
| } |
| |
| |
| void LCodeGen::EmitGoto(int block) { |
| if (!IsNextEmittedBlock(block)) { |
| __ jmp(chunk_->GetAssemblyLabel(LookupDestination(block))); |
| } |
| } |
| |
| |
| void LCodeGen::DoClobberDoubles(LClobberDoubles* instr) { |
| } |
| |
| |
| void LCodeGen::DoGoto(LGoto* instr) { |
| EmitGoto(instr->block_id()); |
| } |
| |
| |
| Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { |
| Condition cond = no_condition; |
| switch (op) { |
| case Token::EQ: |
| case Token::EQ_STRICT: |
| cond = equal; |
| break; |
| case Token::NE: |
| case Token::NE_STRICT: |
| cond = not_equal; |
| break; |
| case Token::LT: |
| cond = is_unsigned ? below : less; |
| break; |
| case Token::GT: |
| cond = is_unsigned ? above : greater; |
| break; |
| case Token::LTE: |
| cond = is_unsigned ? below_equal : less_equal; |
| break; |
| case Token::GTE: |
| cond = is_unsigned ? above_equal : greater_equal; |
| break; |
| case Token::IN: |
| case Token::INSTANCEOF: |
| default: |
| UNREACHABLE(); |
| } |
| return cond; |
| } |
| |
| |
| void LCodeGen::DoCompareNumericAndBranch(LCompareNumericAndBranch* instr) { |
| LOperand* left = instr->left(); |
| LOperand* right = instr->right(); |
| bool is_unsigned = |
| instr->is_double() || |
| instr->hydrogen()->left()->CheckFlag(HInstruction::kUint32) || |
| instr->hydrogen()->right()->CheckFlag(HInstruction::kUint32); |
| Condition cc = TokenToCondition(instr->op(), is_unsigned); |
| |
| if (left->IsConstantOperand() && right->IsConstantOperand()) { |
| // We can statically evaluate the comparison. |
| double left_val = ToDouble(LConstantOperand::cast(left)); |
| double right_val = ToDouble(LConstantOperand::cast(right)); |
| int next_block = Token::EvalComparison(instr->op(), left_val, right_val) |
| ? instr->TrueDestination(chunk_) |
| : instr->FalseDestination(chunk_); |
| EmitGoto(next_block); |
| } else { |
| if (instr->is_double()) { |
| X87LoadForUsage(ToX87Register(right), ToX87Register(left)); |
| __ FCmp(); |
| // Don't base result on EFLAGS when a NaN is involved. Instead |
| // jump to the false block. |
| __ j(parity_even, instr->FalseLabel(chunk_)); |
| } else { |
| if (right->IsConstantOperand()) { |
| __ cmp(ToOperand(left), |
| ToImmediate(right, instr->hydrogen()->representation())); |
| } else if (left->IsConstantOperand()) { |
| __ cmp(ToOperand(right), |
| ToImmediate(left, instr->hydrogen()->representation())); |
| // We commuted the operands, so commute the condition. |
| cc = CommuteCondition(cc); |
| } else { |
| __ cmp(ToRegister(left), ToOperand(right)); |
| } |
| } |
| EmitBranch(instr, cc); |
| } |
| } |
| |
| |
| void LCodeGen::DoCmpObjectEqAndBranch(LCmpObjectEqAndBranch* instr) { |
| Register left = ToRegister(instr->left()); |
| |
| if (instr->right()->IsConstantOperand()) { |
| Handle<Object> right = ToHandle(LConstantOperand::cast(instr->right())); |
| __ CmpObject(left, right); |
| } else { |
| Operand right = ToOperand(instr->right()); |
| __ cmp(left, right); |
| } |
| EmitBranch(instr, equal); |
| } |
| |
| |
| void LCodeGen::DoCmpHoleAndBranch(LCmpHoleAndBranch* instr) { |
| if (instr->hydrogen()->representation().IsTagged()) { |
| Register input_reg = ToRegister(instr->object()); |
| __ cmp(input_reg, factory()->the_hole_value()); |
| EmitBranch(instr, equal); |
| return; |
| } |
| |
| // Put the value to the top of stack |
| X87Register src = ToX87Register(instr->object()); |
| X87LoadForUsage(src); |
| __ fld(0); |
| __ fld(0); |
| __ FCmp(); |
| Label ok; |
| __ j(parity_even, &ok, Label::kNear); |
| __ fstp(0); |
| EmitFalseBranch(instr, no_condition); |
| __ bind(&ok); |
| |
| |
| __ sub(esp, Immediate(kDoubleSize)); |
| __ fstp_d(MemOperand(esp, 0)); |
| |
| __ add(esp, Immediate(kDoubleSize)); |
| int offset = sizeof(kHoleNanUpper32); |
| __ cmp(MemOperand(esp, -offset), Immediate(kHoleNanUpper32)); |
| EmitBranch(instr, equal); |
| } |
| |
| |
| Condition LCodeGen::EmitIsString(Register input, |
| Register temp1, |
| Label* is_not_string, |
| SmiCheck check_needed = INLINE_SMI_CHECK) { |
| if (check_needed == INLINE_SMI_CHECK) { |
| __ JumpIfSmi(input, is_not_string); |
| } |
| |
| Condition cond = masm_->IsObjectStringType(input, temp1, temp1); |
| |
| return cond; |
| } |
| |
| |
| void LCodeGen::DoIsStringAndBranch(LIsStringAndBranch* instr) { |
| Register reg = ToRegister(instr->value()); |
| Register temp = ToRegister(instr->temp()); |
| |
| SmiCheck check_needed = |
| instr->hydrogen()->value()->type().IsHeapObject() |
| ? OMIT_SMI_CHECK : INLINE_SMI_CHECK; |
| |
| Condition true_cond = EmitIsString( |
| reg, temp, instr->FalseLabel(chunk_), check_needed); |
| |
| EmitBranch(instr, true_cond); |
| } |
| |
| |
| void LCodeGen::DoIsSmiAndBranch(LIsSmiAndBranch* instr) { |
| Operand input = ToOperand(instr->value()); |
| |
| __ test(input, Immediate(kSmiTagMask)); |
| EmitBranch(instr, zero); |
| } |
| |
| |
| void LCodeGen::DoIsUndetectableAndBranch(LIsUndetectableAndBranch* instr) { |
| Register input = ToRegister(instr->value()); |
| Register temp = ToRegister(instr->temp()); |
| |
| if (!instr->hydrogen()->value()->type().IsHeapObject()) { |
| STATIC_ASSERT(kSmiTag == 0); |
| __ JumpIfSmi(input, instr->FalseLabel(chunk_)); |
| } |
| __ mov(temp, FieldOperand(input, HeapObject::kMapOffset)); |
| __ test_b(FieldOperand(temp, Map::kBitFieldOffset), |
| Immediate(1 << Map::kIsUndetectable)); |
| EmitBranch(instr, not_zero); |
| } |
| |
| |
| static Condition ComputeCompareCondition(Token::Value op) { |
| switch (op) { |
| case Token::EQ_STRICT: |
| case Token::EQ: |
| return equal; |
| case Token::LT: |
| return less; |
| case Token::GT: |
| return greater; |
| case Token::LTE: |
| return less_equal; |
| case Token::GTE: |
| return greater_equal; |
| default: |
| UNREACHABLE(); |
| return no_condition; |
| } |
| } |
| |
| |
| void LCodeGen::DoStringCompareAndBranch(LStringCompareAndBranch* instr) { |
| DCHECK(ToRegister(instr->context()).is(esi)); |
| DCHECK(ToRegister(instr->left()).is(edx)); |
| DCHECK(ToRegister(instr->right()).is(eax)); |
| |
| Handle<Code> code = CodeFactory::StringCompare(isolate(), instr->op()).code(); |
| CallCode(code, RelocInfo::CODE_TARGET, instr); |
| __ CompareRoot(eax, Heap::kTrueValueRootIndex); |
| EmitBranch(instr, equal); |
| } |
| |
| |
| static InstanceType TestType(HHasInstanceTypeAndBranch* instr) { |
| InstanceType from = instr->from(); |
| InstanceType to = instr->to(); |
| if (from == FIRST_TYPE) return to; |
| DCHECK(from == to || to == LAST_TYPE); |
| return from; |
| } |
| |
| |
| static Condition BranchCondition(HHasInstanceTypeAndBranch* instr) { |
| InstanceType from = instr->from(); |
| InstanceType to = instr->to(); |
| if (from == to) return equal; |
| if (to == LAST_TYPE) return above_equal; |
| if (from == FIRST_TYPE) return below_equal; |
| UNREACHABLE(); |
| return equal; |
| } |
| |
| |
| void LCodeGen::DoHasInstanceTypeAndBranch(LHasInstanceTypeAndBranch* instr) { |
| Register input = ToRegister(instr->value()); |
| Register temp = ToRegister(instr->temp()); |
| |
| if (!instr->hydrogen()->value()->type().IsHeapObject()) { |
| __ JumpIfSmi(input, instr->FalseLabel(chunk_)); |
| } |
| |
| __ CmpObjectType(input, TestType(instr->hydrogen()), temp); |
| EmitBranch(instr, BranchCondition(instr->hydrogen())); |
| } |
| |
| // Branches to a label or falls through with the answer in the z flag. Trashes |
| // the temp registers, but not the input. |
| void LCodeGen::EmitClassOfTest(Label* is_true, |
| Label* is_false, |
| Handle<String>class_name, |
| Register input, |
| Register temp, |
| Register temp2) { |
| DCHECK(!input.is(temp)); |
| DCHECK(!input.is(temp2)); |
| DCHECK(!temp.is(temp2)); |
| __ JumpIfSmi(input, is_false); |
| |
| __ CmpObjectType(input, FIRST_FUNCTION_TYPE, temp); |
| STATIC_ASSERT(LAST_FUNCTION_TYPE == LAST_TYPE); |
| if (String::Equals(isolate()->factory()->Function_string(), class_name)) { |
| __ j(above_equal, is_true); |
| } else { |
| __ j(above_equal, is_false); |
| } |
| |
| // Now we are in the FIRST-LAST_NONCALLABLE_SPEC_OBJECT_TYPE range. |
| // Check if the constructor in the map is a function. |
| __ GetMapConstructor(temp, temp, temp2); |
| // Objects with a non-function constructor have class 'Object'. |
| __ CmpInstanceType(temp2, JS_FUNCTION_TYPE); |
| if (String::Equals(class_name, isolate()->factory()->Object_string())) { |
| __ j(not_equal, is_true); |
| } else { |
| __ j(not_equal, is_false); |
| } |
| |
| // temp now contains the constructor function. Grab the |
| // instance class name from there. |
| __ mov(temp, FieldOperand(temp, JSFunction::kSharedFunctionInfoOffset)); |
| __ mov(temp, FieldOperand(temp, |
| SharedFunctionInfo::kInstanceClassNameOffset)); |
| // The class name we are testing against is internalized since it's a literal. |
| // The name in the constructor is internalized because of the way the context |
| // is booted. This routine isn't expected to work for random API-created |
| // classes and it doesn't have to because you can't access it with natives |
| // syntax. Since both sides are internalized it is sufficient to use an |
| // identity comparison. |
| __ cmp(temp, class_name); |
| // End with the answer in the z flag. |
| } |
| |
| |
| void LCodeGen::DoClassOfTestAndBranch(LClassOfTestAndBranch* instr) { |
| Register input = ToRegister(instr->value()); |
| Register temp = ToRegister(instr->temp()); |
| Register temp2 = ToRegister(instr->temp2()); |
| |
| Handle<String> class_name = instr->hydrogen()->class_name(); |
| |
| EmitClassOfTest(instr->TrueLabel(chunk_), instr->FalseLabel(chunk_), |
| class_name, input, temp, temp2); |
| |
| EmitBranch(instr, equal); |
| } |
| |
| |
| void LCodeGen::DoCmpMapAndBranch(LCmpMapAndBranch* instr) { |
| Register reg = ToRegister(instr->value()); |
| __ cmp(FieldOperand(reg, HeapObject::kMapOffset), instr->map()); |
| EmitBranch(instr, equal); |
| } |
| |
| |
| void LCodeGen::DoHasInPrototypeChainAndBranch( |
| LHasInPrototypeChainAndBranch* instr) { |
| Register const object = ToRegister(instr->object()); |
| Register const object_map = ToRegister(instr->scratch()); |
| Register const object_prototype = object_map; |
| Register const prototype = ToRegister(instr->prototype()); |
| |
| // The {object} must be a spec object. It's sufficient to know that {object} |
| // is not a smi, since all other non-spec objects have {null} prototypes and |
| // will be ruled out below. |
| if (instr->hydrogen()->ObjectNeedsSmiCheck()) { |
| __ test(object, Immediate(kSmiTagMask)); |
| EmitFalseBranch(instr, zero); |
| } |
| |
| // Loop through the {object}s prototype chain looking for the {prototype}. |
| __ mov(object_map, FieldOperand(object, HeapObject::kMapOffset)); |
| Label loop; |
| __ bind(&loop); |
| |
| // Deoptimize if the object needs to be access checked. |
| __ test_b(FieldOperand(object_map, Map::kBitFieldOffset), |
| Immediate(1 << Map::kIsAccessCheckNeeded)); |
| DeoptimizeIf(not_zero, instr, DeoptimizeReason::kAccessCheck); |
| // Deoptimize for proxies. |
| __ CmpInstanceType(object_map, JS_PROXY_TYPE); |
| DeoptimizeIf(equal, instr, DeoptimizeReason::kProxy); |
| |
| __ mov(object_prototype, FieldOperand(object_map, Map::kPrototypeOffset)); |
| __ cmp(object_prototype, factory()->null_value()); |
| EmitFalseBranch(instr, equal); |
| __ cmp(object_prototype, prototype); |
| EmitTrueBranch(instr, equal); |
| __ mov(object_map, FieldOperand(object_prototype, HeapObject::kMapOffset)); |
| __ jmp(&loop); |
| } |
| |
| |
| void LCodeGen::DoCmpT(LCmpT* instr) { |
| Token::Value op = instr->op(); |
| |
| Handle<Code> ic = CodeFactory::CompareIC(isolate(), op).code(); |
| CallCode(ic, RelocInfo::CODE_TARGET, instr); |
| |
| Condition condition = ComputeCompareCondition(op); |
| Label true_value, done; |
| __ test(eax, Operand(eax)); |
| __ j(condition, &true_value, Label::kNear); |
| __ mov(ToRegister(instr->result()), factory()->false_value()); |
| __ jmp(&done, Label::kNear); |
| __ bind(&true_value); |
| __ mov(ToRegister(instr->result()), factory()->true_value()); |
| __ bind(&done); |
| } |
| |
| void LCodeGen::EmitReturn(LReturn* instr) { |
| int extra_value_count = 1; |
| |
| if (instr->has_constant_parameter_count()) { |
| int parameter_count = ToInteger32(instr->constant_parameter_count()); |
| __ Ret((parameter_count + extra_value_count) * kPointerSize, ecx); |
| } else { |
| DCHECK(info()->IsStub()); // Functions would need to drop one more value. |
| Register reg = ToRegister(instr->parameter_count()); |
| // The argument count parameter is a smi |
| __ SmiUntag(reg); |
| Register return_addr_reg = reg.is(ecx) ? ebx : ecx; |
| |
| // emit code to restore stack based on instr->parameter_count() |
| __ pop(return_addr_reg); // save return address |
| __ shl(reg, kPointerSizeLog2); |
| __ add(esp, reg); |
| __ jmp(return_addr_reg); |
| } |
| } |
| |
| |
| void LCodeGen::DoReturn(LReturn* instr) { |
| if (FLAG_trace && info()->IsOptimizing()) { |
| // Preserve the return value on the stack and rely on the runtime call |
| // to return the value in the same register. We're leaving the code |
| // managed by the register allocator and tearing down the frame, it's |
| // safe to write to the context register. |
| __ push(eax); |
| __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); |
| __ CallRuntime(Runtime::kTraceExit); |
| } |
| if (NeedsEagerFrame()) { |
| __ mov(esp, ebp); |
| __ pop(ebp); |
| } |
| |
| EmitReturn(instr); |
| } |
| |
| |
| void LCodeGen::DoLoadContextSlot(LLoadContextSlot* instr) { |
| Register context = ToRegister(instr->context()); |
| Register result = ToRegister(instr->result()); |
| __ mov(result, ContextOperand(context, instr->slot_index())); |
| } |
| |
| |
| void LCodeGen::DoStoreContextSlot(LStoreContextSlot* instr) { |
| Register context = ToRegister(instr->context()); |
| Register value = ToRegister(instr->value()); |
| Operand target = ContextOperand(context, instr->slot_index()); |
| |
| __ mov(target, value); |
| if (instr->hydrogen()->NeedsWriteBarrier()) { |
| SmiCheck check_needed = |
| instr->hydrogen()->value()->type().IsHeapObject() |
| ? OMIT_SMI_CHECK : INLINE_SMI_CHECK; |
| Register temp = ToRegister(instr->temp()); |
| int offset = Context::SlotOffset(instr->slot_index()); |
| __ RecordWriteContextSlot(context, offset, value, temp, kSaveFPRegs, |
| EMIT_REMEMBERED_SET, check_needed); |
| } |
| } |
| |
| |
| void LCodeGen::DoLoadNamedField(LLoadNamedField* instr) { |
| HObjectAccess access = instr->hydrogen()->access(); |
| int offset = access.offset(); |
| |
| if (access.IsExternalMemory()) { |
| Register result = ToRegister(instr->result()); |
| MemOperand operand = instr->object()->IsConstantOperand() |
| ? MemOperand::StaticVariable(ToExternalReference( |
| LConstantOperand::cast(instr->object()))) |
| : MemOperand(ToRegister(instr->object()), offset); |
| __ Load(result, operand, access.representation()); |
| return; |
| } |
| |
| Register object = ToRegister(instr->object()); |
| if (instr->hydrogen()->representation().IsDouble()) { |
| X87Mov(ToX87Register(instr->result()), FieldOperand(object, offset)); |
| return; |
| } |
| |
| Register result = ToRegister(instr->result()); |
| if (!access.IsInobject()) { |
| __ mov(result, FieldOperand(object, JSObject::kPropertiesOffset)); |
| object = result; |
| } |
| __ Load(result, FieldOperand(object, offset), access.representation()); |
| } |
| |
| |
| void LCodeGen::EmitPushTaggedOperand(LOperand* operand) { |
| DCHECK(!operand->IsDoubleRegister()); |
| if (operand->IsConstantOperand()) { |
| Handle<Object> object = ToHandle(LConstantOperand::cast(operand)); |
| AllowDeferredHandleDereference smi_check; |
| if (object->IsSmi()) { |
| __ Push(Handle<Smi>::cast(object)); |
| } else { |
| __ PushHeapObject(Handle<HeapObject>::cast(object)); |
| } |
| } else if (operand->IsRegister()) { |
| __ push(ToRegister(operand)); |
| } else { |
| __ push(ToOperand(operand)); |
| } |
| } |
| |
| |
| void LCodeGen::DoLoadFunctionPrototype(LLoadFunctionPrototype* instr) { |
| Register function = ToRegister(instr->function()); |
| Register temp = ToRegister(instr->temp()); |
| Register result = ToRegister(instr->result()); |
| |
| // Get the prototype or initial map from the function. |
| __ mov(result, |
| FieldOperand(function, JSFunction::kPrototypeOrInitialMapOffset)); |
| |
| // Check that the function has a prototype or an initial map. |
| __ cmp(Operand(result), Immediate(factory()->the_hole_value())); |
| DeoptimizeIf(equal, instr, DeoptimizeReason::kHole); |
| |
| // If the function does not have an initial map, we're done. |
| Label done; |
| __ CmpObjectType(result, MAP_TYPE, temp); |
| __ j(not_equal, &done, Label::kNear); |
| |
| // Get the prototype from the initial map. |
| __ mov(result, FieldOperand(result, Map::kPrototypeOffset)); |
| |
| // All done. |
| __ bind(&done); |
| } |
| |
| |
| void LCodeGen::DoLoadRoot(LLoadRoot* instr) { |
| Register result = ToRegister(instr->result()); |
| __ LoadRoot(result, instr->index()); |
| } |
| |
| |
| void LCodeGen::DoAccessArgumentsAt(LAccessArgumentsAt* instr) { |
| Register arguments = ToRegister(instr->arguments()); |
| Register result = ToRegister(instr->result()); |
| if (instr->length()->IsConstantOperand() && |
| instr->index()->IsConstantOperand()) { |
| int const_index = ToInteger32(LConstantOperand::cast(instr->index())); |
| int const_length = ToInteger32(LConstantOperand::cast(instr->length())); |
| int index = (const_length - const_index) + 1; |
| __ mov(result, Operand(arguments, index * kPointerSize)); |
| } else { |
| Register length = ToRegister(instr->length()); |
| Operand index = ToOperand(instr->index()); |
| // There are two words between the frame pointer and the last argument. |
| // Subtracting from length accounts for one of them add one more. |
| __ sub(length, index); |
| __ mov(result, Operand(arguments, length, times_4, kPointerSize)); |
| } |
| } |
| |
| |
| void LCodeGen::DoLoadKeyedExternalArray(LLoadKeyed* instr) { |
| ElementsKind elements_kind = instr->elements_kind(); |
| LOperand* key = instr->key(); |
| if (!key->IsConstantOperand() && |
| ExternalArrayOpRequiresTemp(instr->hydrogen()->key()->representation(), |
| elements_kind)) { |
| __ SmiUntag(ToRegister(key)); |
| } |
| Operand operand(BuildFastArrayOperand( |
| instr->elements(), |
| key, |
| instr->hydrogen()->key()->representation(), |
| elements_kind, |
| instr->base_offset())); |
| if (elements_kind == FLOAT32_ELEMENTS) { |
| X87Mov(ToX87Register(instr->result()), operand, kX87FloatOperand); |
| } else if (elements_kind == FLOAT64_ELEMENTS) { |
| X87Mov(ToX87Register(instr->result()), operand); |
| } else { |
| Register result(ToRegister(instr->result())); |
| switch (elements_kind) { |
| case INT8_ELEMENTS: |
| __ movsx_b(result, operand); |
| break; |
| case UINT8_ELEMENTS: |
| case UINT8_CLAMPED_ELEMENTS: |
| __ movzx_b(result, operand); |
| break; |
| case INT16_ELEMENTS: |
| __ movsx_w(result, operand); |
| break; |
| case UINT16_ELEMENTS: |