| Index: src/x64/lithium-codegen-x64.cc
|
| diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc
|
| index 225d2cceb3a7009b30030533e0ca095cfee5586e..cc483825370e4709118193a4b9b7146ba46adf3d 100644
|
| --- a/src/x64/lithium-codegen-x64.cc
|
| +++ b/src/x64/lithium-codegen-x64.cc
|
| @@ -301,9 +301,7 @@ bool LCodeGen::GenerateJumpTable() {
|
| for (int i = 0; i < jump_table_.length(); i++) {
|
| __ bind(&jump_table_[i].label);
|
| Address entry = jump_table_[i].address;
|
| - bool is_lazy_deopt = jump_table_[i].is_lazy_deopt;
|
| - Deoptimizer::BailoutType type =
|
| - is_lazy_deopt ? Deoptimizer::LAZY : Deoptimizer::EAGER;
|
| + Deoptimizer::BailoutType type = jump_table_[i].bailout_type;
|
| int id = Deoptimizer::GetDeoptimizationId(isolate(), entry, type);
|
| if (id == Deoptimizer::kNotDeoptimizationEntry) {
|
| Comment(";;; jump table entry %d.", i);
|
| @@ -312,7 +310,7 @@ bool LCodeGen::GenerateJumpTable() {
|
| }
|
| if (jump_table_[i].needs_frame) {
|
| __ movq(kScratchRegister, ExternalReference::ForDeoptEntry(entry));
|
| - if (is_lazy_deopt) {
|
| + if (type == Deoptimizer::LAZY) {
|
| if (needs_frame_is_call.is_bound()) {
|
| __ jmp(&needs_frame_is_call);
|
| } else {
|
| @@ -348,7 +346,7 @@ bool LCodeGen::GenerateJumpTable() {
|
| }
|
| }
|
| } else {
|
| - if (is_lazy_deopt) {
|
| + if (type == Deoptimizer::LAZY) {
|
| __ call(entry, RelocInfo::RUNTIME_ENTRY);
|
| } else {
|
| __ jmp(entry, RelocInfo::RUNTIME_ENTRY);
|
| @@ -719,14 +717,13 @@ void LCodeGen::RegisterEnvironmentForDeoptimization(LEnvironment* environment,
|
| }
|
|
|
|
|
| -void LCodeGen::DeoptimizeIf(Condition cc, LEnvironment* environment) {
|
| +void LCodeGen::DeoptimizeIf(Condition cc,
|
| + LEnvironment* environment,
|
| + Deoptimizer::BailoutType bailout_type) {
|
| RegisterEnvironmentForDeoptimization(environment, Safepoint::kNoLazyDeopt);
|
| ASSERT(environment->HasBeenRegistered());
|
| int id = environment->deoptimization_index();
|
| ASSERT(info()->IsOptimizing() || info()->IsStub());
|
| - Deoptimizer::BailoutType bailout_type = info()->IsStub()
|
| - ? Deoptimizer::LAZY
|
| - : Deoptimizer::EAGER;
|
| Address entry =
|
| Deoptimizer::GetDeoptimizationEntry(isolate(), id, bailout_type);
|
| if (entry == NULL) {
|
| @@ -759,8 +756,10 @@ void LCodeGen::DeoptimizeIf(Condition cc, LEnvironment* environment) {
|
| if (jump_table_.is_empty() ||
|
| jump_table_.last().address != entry ||
|
| jump_table_.last().needs_frame != !frame_is_built_ ||
|
| - jump_table_.last().is_lazy_deopt != needs_lazy_deopt) {
|
| - JumpTableEntry table_entry(entry, !frame_is_built_, needs_lazy_deopt);
|
| + jump_table_.last().bailout_type != bailout_type) {
|
| + Deoptimizer::JumpTableEntry table_entry(entry,
|
| + bailout_type,
|
| + !frame_is_built_);
|
| jump_table_.Add(table_entry, zone());
|
| }
|
| if (cc == no_condition) {
|
| @@ -772,6 +771,21 @@ void LCodeGen::DeoptimizeIf(Condition cc, LEnvironment* environment) {
|
| }
|
|
|
|
|
| +void LCodeGen::DeoptimizeIf(Condition cc,
|
| + LEnvironment* environment) {
|
| + Deoptimizer::BailoutType bailout_type = info()->IsStub()
|
| + ? Deoptimizer::LAZY
|
| + : Deoptimizer::EAGER;
|
| + DeoptimizeIf(cc, environment, bailout_type);
|
| +}
|
| +
|
| +
|
| +void LCodeGen::SoftDeoptimize(LEnvironment* environment) {
|
| + ASSERT(!info()->IsStub());
|
| + DeoptimizeIf(no_condition, environment, Deoptimizer::SOFT);
|
| +}
|
| +
|
| +
|
| void LCodeGen::RegisterDependentCodeForEmbeddedMaps(Handle<Code> code) {
|
| ZoneList<Handle<Map> > maps(1, zone());
|
| int mode_mask = RelocInfo::ModeMask(RelocInfo::EMBEDDED_OBJECT);
|
| @@ -5414,7 +5428,11 @@ void LCodeGen::DoLazyBailout(LLazyBailout* instr) {
|
|
|
|
|
| void LCodeGen::DoDeoptimize(LDeoptimize* instr) {
|
| - DeoptimizeIf(no_condition, instr->environment());
|
| + if (instr->hydrogen_value()->IsSoftDeoptimize()) {
|
| + SoftDeoptimize(instr->environment());
|
| + } else {
|
| + DeoptimizeIf(no_condition, instr->environment());
|
| + }
|
| }
|
|
|
|
|
|
|