summaryrefslogtreecommitdiffstats
path: root/js/src/jit/BaselineInspector.h
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-05-14 11:44:11 +0000
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-05-14 11:44:11 +0000
commit9a3141515f051b6622f564ba75c171822854a7ac (patch)
tree2937ce5bbd308f1334435e2072ab30d8a45a7dee /js/src/jit/BaselineInspector.h
parent3ded48cbe3529811f8638fde9f392bc915c35163 (diff)
downloadUXP-9a3141515f051b6622f564ba75c171822854a7ac.tar
UXP-9a3141515f051b6622f564ba75c171822854a7ac.tar.gz
UXP-9a3141515f051b6622f564ba75c171822854a7ac.tar.lz
UXP-9a3141515f051b6622f564ba75c171822854a7ac.tar.xz
UXP-9a3141515f051b6622f564ba75c171822854a7ac.zip
remove unboxed code chunk (wip1)
Diffstat (limited to 'js/src/jit/BaselineInspector.h')
-rw-r--r--js/src/jit/BaselineInspector.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/js/src/jit/BaselineInspector.h b/js/src/jit/BaselineInspector.h
index 961df18aa..4a1791798 100644
--- a/js/src/jit/BaselineInspector.h
+++ b/js/src/jit/BaselineInspector.h
@@ -95,8 +95,7 @@ class BaselineInspector
public:
typedef Vector<ReceiverGuard, 4, JitAllocPolicy> ReceiverVector;
typedef Vector<ObjectGroup*, 4, JitAllocPolicy> ObjectGroupVector;
- MOZ_MUST_USE bool maybeInfoForPropertyOp(jsbytecode* pc, ReceiverVector& receivers,
- ObjectGroupVector& convertUnboxedGroups);
+ MOZ_MUST_USE bool maybeInfoForPropertyOp(jsbytecode* pc, ReceiverVector& receivers);
SetElemICInspector setElemICInspector(jsbytecode* pc) {
return makeICInspector<SetElemICInspector>(pc, ICStub::SetElem_Fallback);
@@ -131,12 +130,10 @@ class BaselineInspector
MOZ_MUST_USE bool commonGetPropFunction(jsbytecode* pc, JSObject** holder, Shape** holderShape,
JSFunction** commonGetter, Shape** globalShape,
- bool* isOwnProperty, ReceiverVector& receivers,
- ObjectGroupVector& convertUnboxedGroups);
+ bool* isOwnProperty, ReceiverVector& receivers);
MOZ_MUST_USE bool commonSetPropFunction(jsbytecode* pc, JSObject** holder, Shape** holderShape,
JSFunction** commonSetter, bool* isOwnProperty,
- ReceiverVector& receivers,
- ObjectGroupVector& convertUnboxedGroups);
+ ReceiverVector& receivers);
MOZ_MUST_USE bool instanceOfData(jsbytecode* pc, Shape** shape, uint32_t* slot,
JSObject** prototypeObject);