diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-16 19:54:19 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-16 19:54:19 +0000 |
commit | fa8bfa1a00ca88dd0ff5f8dcfb89dee5fd01c639 (patch) | |
tree | b21e156db4a4d264fe18d608b698c15f3cc3b598 /js/src/jit/Lowering.cpp | |
parent | 543fa1674bcb4f8c40f0ef6e4c5514ea161def5a (diff) | |
download | UXP-fa8bfa1a00ca88dd0ff5f8dcfb89dee5fd01c639.tar UXP-fa8bfa1a00ca88dd0ff5f8dcfb89dee5fd01c639.tar.gz UXP-fa8bfa1a00ca88dd0ff5f8dcfb89dee5fd01c639.tar.lz UXP-fa8bfa1a00ca88dd0ff5f8dcfb89dee5fd01c639.tar.xz UXP-fa8bfa1a00ca88dd0ff5f8dcfb89dee5fd01c639.zip |
Remove unboxed object code from jit, Part 1
Diffstat (limited to 'js/src/jit/Lowering.cpp')
-rw-r--r-- | js/src/jit/Lowering.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/js/src/jit/Lowering.cpp b/js/src/jit/Lowering.cpp index 709de9987..aafa57c09 100644 --- a/js/src/jit/Lowering.cpp +++ b/js/src/jit/Lowering.cpp @@ -3252,14 +3252,6 @@ LIRGenerator::visitStoreUnboxedString(MStoreUnboxedString* ins) } void -LIRGenerator::visitConvertUnboxedObjectToNative(MConvertUnboxedObjectToNative* ins) -{ - LInstruction* check = new(alloc()) LConvertUnboxedObjectToNative(useRegister(ins->object())); - add(check, ins); - assignSafepoint(check, ins); -} - -void LIRGenerator::visitEffectiveAddress(MEffectiveAddress* ins) { define(new(alloc()) LEffectiveAddress(useRegister(ins->base()), useRegister(ins->index())), ins); @@ -3777,24 +3769,6 @@ LIRGenerator::visitGuardReceiverPolymorphic(MGuardReceiverPolymorphic* ins) } void -LIRGenerator::visitGuardUnboxedExpando(MGuardUnboxedExpando* ins) -{ - LGuardUnboxedExpando* guard = - new(alloc()) LGuardUnboxedExpando(useRegister(ins->object())); - assignSnapshot(guard, ins->bailoutKind()); - add(guard, ins); - redefine(ins, ins->object()); -} - -void -LIRGenerator::visitLoadUnboxedExpando(MLoadUnboxedExpando* ins) -{ - LLoadUnboxedExpando* lir = - new(alloc()) LLoadUnboxedExpando(useRegisterAtStart(ins->object())); - define(lir, ins); -} - -void LIRGenerator::visitAssertRange(MAssertRange* ins) { MDefinition* input = ins->input(); |