mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
Performance improvements jit
1322724: IonMonkey - Add the hit count information on the extra false branch blocks 1322932: IonMonkey - Only iterate the backedge of the inner-loop when it has already be visited 1329901 - Remove expensive isObservableOperand() loop guards. 1330667: IonMonkey - Create a new constant for every optimized arguments use. 1342016 - Fast-path for isObservableSlot(). 1388045 - Branch Pruning: Check the compile info associated with the resume point.
This commit is contained in:
parent
8a82d779d7
commit
5eb6f53b0d
8 changed files with 7759 additions and 6 deletions
|
|
@ -7725,8 +7725,7 @@ CodeGenerator::visitCharCodeAt(LCharCodeAt* lir)
|
|||
|
||||
OutOfLineCode* ool = oolCallVM(CharCodeAtInfo, lir, ArgList(str, index), StoreRegisterTo(output));
|
||||
|
||||
masm.branchIfRope(str, ool->entry());
|
||||
masm.loadStringChar(str, index, output);
|
||||
masm.loadStringChar(str, index, output, ool->entry());
|
||||
|
||||
masm.bind(ool->rejoin());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue