Closed Bug 686000 Opened 13 years ago Closed 13 years ago

JM+TI: faster property access stubcalls

Categories

(Core :: JavaScript Engine, defect)

x86
macOS
defect
Not set
normal

Tracking

()

RESOLVED FIXED

People

(Reporter: bhackett1024, Unassigned)

Details

(Whiteboard: fixed-in-jaegermonkey)

Attachments

(1 file)

Each property read (including NAME/etc.) C++ stubcall has a TypeScript::Monitor() at the end to report the result to TI.  These cost a lot of time on tests that make a lot of stubcalls.  This call has to look up the script's analysis info, figure out and get the type set storing the op's result, compute the type of the pushed value (bunch of branches), check if that type is in the set (bunch of loads and branches) and in the very rare case actually change the type set.  It would be *way* faster to do this in jitcode immediately after the stubcall returns, which can bake in almost everything above and reduce this to, in most cases, a handful of branches.

function foo(a) {
  for (var i = 0; i < 100000; i++) {
    for (var j = 0; j < 100; j++)
      a[j].f;
  }
}

a = [];
for (var i = 0; i < 100; i++) {
  a[i] = {};
  a[i][i] = i;
  a[i].f = i;
}

foo(a);

js -m     320
js -m -n  465
js -m -n (without TypeScript::Monitor call)  320
Attached patch patchSplinter Review
Attachment #559652 - Flags: review?(dvander)
Comment on attachment 559652 [details] [diff] [review]
patch

Review of attachment 559652 [details] [diff] [review]:
-----------------------------------------------------------------

::: js/src/methodjit/Compiler.cpp
@@ +7549,5 @@
> +void
> +mjit::Compiler::testPushedType(RejoinState rejoin, int which, bool ool)
> +{
> +    if (!cx->typeInferenceEnabled() || !(js_CodeSpec[*PC].format & JOF_TYPESET))
> +        return;

When would it be called on a non-JOF_TYPESET opcode?
Attachment #559652 - Flags: review?(dvander) → review+
(In reply to David Anderson [:dvander] from comment #3)
> Comment on attachment 559652 [details] [diff] [review]
> patch
> 
> Review of attachment 559652 [details] [diff] [review]:
> -----------------------------------------------------------------
> 
> ::: js/src/methodjit/Compiler.cpp
> @@ +7549,5 @@
> > +void
> > +mjit::Compiler::testPushedType(RejoinState rejoin, int which, bool ool)
> > +{
> > +    if (!cx->typeInferenceEnabled() || !(js_CodeSpec[*PC].format & JOF_TYPESET))
> > +        return;
> 
> When would it be called on a non-JOF_TYPESET opcode?

Opcode fusions :(

Not many of these left though, thankfully.
https://hg.mozilla.org/mozilla-central/rev/b961a248e94d
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: