Hi, I wonder that full-codegen uses hydrogens stubs:

For example when I'm running
var a = 10;
a + 10;

full-codegen calls FullCodeGenerator::EmitBinaryOp for "a + 10" and creates
Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), op).code();

And

class BinaryOpICStub : public HydrogenCodeStub {

As I know Hydrogen is a part of Crankshaft compiler. Why does v8 use it in 
FC?

And if this is important so what I need to implement for this stub for my 
architecture? How can I translate from Hydrogen to native code?

-- 
-- 
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to