Skip to content

Commit 1a845b5

Browse files
committed
Remove manual host inlining cutoffs.
1 parent e65a01a commit 1a845b5

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

graal-js/src/com.oracle.truffle.js/src/com/oracle/truffle/js/nodes/access/ReadElementNode.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -584,32 +584,26 @@ abstract static class JSObjectReadElementTypeCacheNode extends JavaScriptBaseNod
584584

585585
abstract Object executeJSObjectGet(Object target, long index, Object receiver, Object defaultValue, ReadElementNode root, boolean indexIsLong);
586586

587-
@InliningCutoff
588587
protected final Object executeJSObjectGet(Object target, Object index, Object receiver, Object defaultValue, ReadElementNode root) {
589588
return executeJSObjectGet(target, index, receiver, defaultValue, root, false);
590589
}
591590

592-
@InliningCutoff
593591
protected final Object executeJSObjectGet(Object target, long index, Object receiver, Object defaultValue, ReadElementNode root) {
594592
return executeJSObjectGet(target, index, receiver, defaultValue, root, true);
595593
}
596594

597-
@InliningCutoff
598595
protected final int executeJSObjectGetInt(Object target, Object index, Object receiver, Object defaultValue, ReadElementNode root) throws UnexpectedResultException {
599596
return executeJSObjectGetInt(target, index, receiver, defaultValue, root, false);
600597
}
601598

602-
@InliningCutoff
603599
protected final int executeJSObjectGetInt(Object target, long index, Object receiver, Object defaultValue, ReadElementNode root) throws UnexpectedResultException {
604600
return executeJSObjectGetInt(target, index, receiver, defaultValue, root, true);
605601
}
606602

607-
@InliningCutoff
608603
protected final double executeJSObjectGetDouble(Object target, Object index, Object receiver, Object defaultValue, ReadElementNode root) throws UnexpectedResultException {
609604
return executeJSObjectGetDouble(target, index, receiver, defaultValue, root, false);
610605
}
611606

612-
@InliningCutoff
613607
protected final double executeJSObjectGetDouble(Object target, long index, Object receiver, Object defaultValue, ReadElementNode root) throws UnexpectedResultException {
614608
return executeJSObjectGetDouble(target, index, receiver, defaultValue, root, true);
615609
}

0 commit comments

Comments
 (0)