Home
last modified time | relevance | path

Searched refs:OutOfLineInputs (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dnode.cc11 Node::OutOfLineInputs* Node::OutOfLineInputs::New(Zone* zone, int capacity) { in New()
13 sizeof(OutOfLineInputs) + capacity * (sizeof(Node*) + sizeof(Use)); in New()
15 Node::OutOfLineInputs* outline = in New()
16 reinterpret_cast<OutOfLineInputs*>(raw_buffer + capacity * sizeof(Use)); in New()
23 void Node::OutOfLineInputs::ExtractFrom(Use* old_use_ptr, Node** old_input_ptr, in ExtractFrom()
73 OutOfLineInputs* outline = OutOfLineInputs::New(zone, capacity); in New()
154 OutOfLineInputs* outline = nullptr; in AppendInput()
157 outline = OutOfLineInputs::New(zone, input_count * 2 + 3); in AppendInput()
167 outline = OutOfLineInputs::New(zone, input_count * 2 + 3); in AppendInput()
Dnode.h168 struct OutOfLineInputs { struct
174 static OutOfLineInputs* New(Zone* zone, int capacity); argument
192 : reinterpret_cast<OutOfLineInputs*>(start)->inputs_; in input_ptr()
199 : reinterpret_cast<OutOfLineInputs*>(start)->node_; in from()
292 OutOfLineInputs* outline_;