comment fix: it's 8ns *faster*
This commit is contained in:
parent
a1e4c2b745
commit
52325b07c0
|
@ -36,8 +36,9 @@ jmp 2f
|
||||||
movq %rax, %rsp
|
movq %rax, %rsp
|
||||||
|
|
||||||
// jump into the new context (return to the call point)
|
// jump into the new context (return to the call point)
|
||||||
// doing this instead of a straight `ret` is 8ns slower,
|
// doing this instead of a straight `ret` is 8ns faster,
|
||||||
// presumably because the branch predictor tries to be clever about it
|
// presumably because the branch predictor tries
|
||||||
|
// to be clever about it otherwise
|
||||||
popq %rax
|
popq %rax
|
||||||
jmpq *%rax
|
jmpq *%rax
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue