Drive-by comment: Hi Michael - In your JumpIfDictionaryInPrototypeChain() you
read Map::kBitField2Offset with a word-load on all arch's. This field is not
word-aligned, so it probably takes some tiny, tiny amount longer to load than if you'd just read the byte. ldrb on arm, movzxbq on x64, and probably just movb on ia32. This is about as micro as micro-optimiztions get ;-) MIPS is allergic to
unaligned loads, so we have to do this for our port.

https://codereview.chromium.org/35413006/

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to