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/vm/TypeInference.cpp | |
parent | 543fa1674bcb4f8c40f0ef6e4c5514ea161def5a (diff) | |
download | uxp-fa8bfa1a00ca88dd0ff5f8dcfb89dee5fd01c639.tar.gz |
Remove unboxed object code from jit, Part 1
Diffstat (limited to 'js/src/vm/TypeInference.cpp')
-rw-r--r-- | js/src/vm/TypeInference.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/js/src/vm/TypeInference.cpp b/js/src/vm/TypeInference.cpp index fe89fac9ce..9e03423828 100644 --- a/js/src/vm/TypeInference.cpp +++ b/js/src/vm/TypeInference.cpp @@ -1995,17 +1995,6 @@ TypeSet::ObjectKey::watchStateChangeForTypedArrayData(CompilerConstraintList* co ConstraintDataFreezeObjectForTypedArrayData(tarray))); } -void -TypeSet::ObjectKey::watchStateChangeForUnboxedConvertedToNative(CompilerConstraintList* constraints) -{ - HeapTypeSetKey objectProperty = property(JSID_EMPTY); - LifoAlloc* alloc = constraints->alloc(); - - typedef CompilerConstraintInstance<ConstraintDataFreezeObjectForUnboxedConvertedToNative> T; - constraints->add(alloc->new_<T>(alloc, objectProperty, - ConstraintDataFreezeObjectForUnboxedConvertedToNative())); -} - static void ObjectStateChange(ExclusiveContext* cxArg, ObjectGroup* group, bool markingUnknown) { |