V8 Project
v8::internal::compiler::GenericNode< B, S > Class Template Reference

#include <generic-node.h>

+ Inheritance diagram for v8::internal::compiler::GenericNode< B, S >:
+ Collaboration diagram for v8::internal::compiler::GenericNode< B, S >:

Classes

class  Edge
 
class  Input
 
class  Inputs
 
class  Use
 
class  Uses
 

Public Types

typedef B BaseClass
 
typedef S DerivedClass
 

Public Member Functions

NodeId id () const
 
int InputCount () const
 
SInputAt (int index) const
 
void ReplaceInput (int index, GenericNode *new_input)
 
void AppendInput (Zone *zone, GenericNode *new_input)
 
void InsertInput (Zone *zone, int index, GenericNode *new_input)
 
void RemoveInput (int index)
 
int UseCount ()
 
SUseAt (int index)
 
void ReplaceUses (GenericNode *replace_to)
 
template<class UnaryPredicate >
void ReplaceUsesIf (UnaryPredicate pred, GenericNode *replace_to)
 
void RemoveAllInputs ()
 
void TrimInputCount (int input_count)
 
Inputs inputs ()
 
Uses uses ()
 
bool OwnedBy (GenericNode *owner) const
 

Static Public Member Functions

static SNew (GenericGraphBase *graph, int input_count, S **inputs)
 

Protected Member Functions

void EnsureAppendableInputs (Zone *zone)
 
InputGetInputRecordPtr (int index) const
 
void AppendUse (Use *use)
 
void RemoveUse (Use *use)
 
void * operator new (size_t, void *location)
 
 GenericNode (GenericGraphBase *graph, int input_count)
 

Private Types

typedef ZoneDeque< InputInputDeque
 

Private Member Functions

void AssignUniqueID (GenericGraphBase *graph)
 
 DISALLOW_COPY_AND_ASSIGN (GenericNode)
 

Private Attributes

NodeId id_
 
int input_count_: 31
 
bool has_appendable_inputs_: 1
 
union {
   Input *   static_
 
   InputDeque *   appendable_
 
inputs_
 
int use_count_
 
Usefirst_use_
 
Uselast_use_
 

Friends

class GenericGraphBase
 

Detailed Description

template<class B, class S>
class v8::internal::compiler::GenericNode< B, S >

Definition at line 30 of file generic-node.h.

Member Typedef Documentation

◆ BaseClass

template<class B , class S >
typedef B v8::internal::compiler::GenericNode< B, S >::BaseClass

Definition at line 32 of file generic-node.h.

◆ DerivedClass

template<class B , class S >
typedef S v8::internal::compiler::GenericNode< B, S >::DerivedClass

Definition at line 33 of file generic-node.h.

◆ InputDeque

template<class B , class S >
typedef ZoneDeque<Input> v8::internal::compiler::GenericNode< B, S >::InputDeque
private

Definition at line 136 of file generic-node.h.

Constructor & Destructor Documentation

◆ GenericNode()

template<class B , class S >
v8::internal::compiler::GenericNode< B, S >::GenericNode ( GenericGraphBase graph,
int  input_count 
)
protected

Definition at line 19 of file generic-node-inl.h.

20  : BaseClass(graph->zone()),
21  input_count_(input_count),
23  use_count_(0),
25  last_use_(NULL) {
26  inputs_.static_ = reinterpret_cast<Input*>(this + 1), AssignUniqueID(graph);
27 }
void AssignUniqueID(GenericGraphBase *graph)
union v8::internal::compiler::GenericNode::@9 inputs_
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be NULL

References v8::internal::compiler::GenericNode< B, S >::AssignUniqueID(), and v8::internal::compiler::GenericNode< B, S >::inputs_.

Referenced by v8::internal::compiler::GenericNode< B, S >::New().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Function Documentation

◆ AppendInput()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::AppendInput ( Zone zone,
GenericNode< B, S > *  new_input 
)
inline

Definition at line 155 of file generic-node-inl.h.

155  {
157  Use* new_use = new (zone) Use;
158  Input new_input;
159  new_input.to = to_append;
160  new_input.use = new_use;
161  inputs_.appendable_->push_back(new_input);
162  new_use->input_index = input_count_;
163  new_use->from = this;
164  to_append->AppendUse(new_use);
165  input_count_++;
166 }

References v8::internal::compiler::GenericNode< B, S >::AppendUse(), v8::internal::compiler::GenericNode< B, S >::EnsureAppendableInputs(), v8::internal::compiler::GenericNode< B, S >::Use::from, v8::internal::compiler::GenericNode< B, S >::input_count_, v8::internal::compiler::GenericNode< B, S >::Use::input_index, v8::internal::compiler::GenericNode< B, S >::inputs_, v8::internal::compiler::GenericNode< B, S >::Input::to, and v8::internal::compiler::GenericNode< B, S >::Input::use.

Referenced by v8::internal::compiler::GenericNode< B, S >::InsertInput().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ AppendUse()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::AppendUse ( Use use)
inlineprotected

Definition at line 191 of file generic-node-inl.h.

191  {
192  use->next = NULL;
193  use->prev = last_use_;
194  if (last_use_ == NULL) {
195  first_use_ = use;
196  } else {
197  last_use_->next = use;
198  }
199  last_use_ = use;
200  ++use_count_;
201 }
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be expose gc extension under the specified name show built in functions in stack traces use random jit cookie to mask large constants minimum length for automatic enable preparsing CPU profiler sampling interval in microseconds trace out of bounds accesses to external arrays default size of stack region v8 is allowed to use(in kBytes)") DEFINE_INT(max_stack_trace_source_length

References v8::internal::compiler::GenericNode< B, S >::first_use_, v8::internal::compiler::GenericNode< B, S >::last_use_, v8::internal::compiler::GenericNode< B, S >::Use::next, NULL, use(), and v8::internal::compiler::GenericNode< B, S >::use_count_.

Referenced by v8::internal::compiler::GenericNode< B, S >::AppendInput(), and v8::internal::compiler::GenericNode< B, S >::ReplaceUsesIf().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ AssignUniqueID()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::AssignUniqueID ( GenericGraphBase graph)
inlineprivate

Definition at line 30 of file generic-node-inl.h.

30  {
31  id_ = graph->NextNodeID();
32 }

References v8::internal::compiler::GenericGraphBase::NextNodeID().

Referenced by v8::internal::compiler::GenericNode< B, S >::GenericNode().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ DISALLOW_COPY_AND_ASSIGN()

template<class B , class S >
v8::internal::compiler::GenericNode< B, S >::DISALLOW_COPY_AND_ASSIGN ( GenericNode< B, S )
private

◆ EnsureAppendableInputs()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::EnsureAppendableInputs ( Zone zone)
protected

Definition at line 142 of file generic-node-inl.h.

142  {
143  if (!has_appendable_inputs_) {
144  void* deque_buffer = zone->New(sizeof(InputDeque));
145  InputDeque* deque = new (deque_buffer) InputDeque(zone);
146  for (int i = 0; i < input_count_; ++i) {
147  deque->push_back(inputs_.static_[i]);
148  }
149  inputs_.appendable_ = deque;
150  has_appendable_inputs_ = true;
151  }
152 }

References v8::internal::compiler::GenericNode< B, S >::has_appendable_inputs_, v8::internal::compiler::GenericNode< B, S >::input_count_, v8::internal::compiler::GenericNode< B, S >::inputs_, and v8::internal::Zone::New().

Referenced by v8::internal::compiler::GenericNode< B, S >::AppendInput().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ GetInputRecordPtr()

template<class B , class S >
Input* v8::internal::compiler::GenericNode< B, S >::GetInputRecordPtr ( int  index) const
inlineprotected

Definition at line 118 of file generic-node.h.

118  {
120  return &((*inputs_.appendable_)[index]);
121  } else {
122  return inputs_.static_ + index;
123  }
124  }

References v8::internal::compiler::GenericNode< B, S >::has_appendable_inputs_, and v8::internal::compiler::GenericNode< B, S >::inputs_.

Referenced by v8::internal::compiler::GenericNode< B, S >::InputAt(), v8::internal::compiler::GenericNode< B, S >::ReplaceInput(), and v8::internal::compiler::GenericNode< B, S >::TrimInputCount().

+ Here is the caller graph for this function:

◆ id()

template<class B , class S >
NodeId v8::internal::compiler::GenericNode< B, S >::id ( ) const
inline

Definition at line 35 of file generic-node.h.

35 { return id_; }

References v8::internal::compiler::GenericNode< B, S >::id_.

◆ InputAt()

template<class B , class S >
S* v8::internal::compiler::GenericNode< B, S >::InputAt ( int  index) const
inline

Definition at line 38 of file generic-node.h.

38  {
39  return static_cast<S*>(GetInputRecordPtr(index)->to);
40  }
Input * GetInputRecordPtr(int index) const
Definition: generic-node.h:118

References v8::internal::compiler::GenericNode< B, S >::GetInputRecordPtr(), v8::internal::S, and v8::internal::compiler::GenericNode< B, S >::Input::to.

Referenced by v8::internal::compiler::GenericNode< B, S >::InsertInput(), and v8::internal::compiler::GenericNode< B, S >::RemoveInput().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ InputCount()

template<class B , class S >
int v8::internal::compiler::GenericNode< B, S >::InputCount ( ) const
inline

Definition at line 37 of file generic-node.h.

37 { return input_count_; }

References v8::internal::compiler::GenericNode< B, S >::input_count_.

Referenced by v8::internal::compiler::GenericNode< B, S >::InsertInput(), and v8::internal::compiler::GenericNode< B, S >::RemoveInput().

+ Here is the caller graph for this function:

◆ inputs()

template<class B , class S >
Inputs v8::internal::compiler::GenericNode< B, S >::inputs ( )
inline

Definition at line 74 of file generic-node.h.

74 { return Inputs(this); }

Referenced by v8::internal::compiler::GenericNode< B, S >::New(), and v8::internal::compiler::GenericNode< B, S >::RemoveAllInputs().

+ Here is the caller graph for this function:

◆ InsertInput()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::InsertInput ( Zone zone,
int  index,
GenericNode< B, S > *  new_input 
)
inline

Definition at line 169 of file generic-node-inl.h.

170  {
171  DCHECK(index >= 0 && index < InputCount());
172  // TODO(turbofan): Optimize this implementation!
173  AppendInput(zone, InputAt(InputCount() - 1));
174  for (int i = InputCount() - 1; i > index; --i) {
175  ReplaceInput(i, InputAt(i - 1));
176  }
177  ReplaceInput(index, to_insert);
178 }
void AppendInput(Zone *zone, GenericNode *new_input)
void ReplaceInput(int index, GenericNode *new_input)
#define DCHECK(condition)
Definition: logging.h:205

References v8::internal::compiler::GenericNode< B, S >::AppendInput(), DCHECK, v8::internal::compiler::GenericNode< B, S >::InputAt(), v8::internal::compiler::GenericNode< B, S >::InputCount(), and v8::internal::compiler::GenericNode< B, S >::ReplaceInput().

+ Here is the call graph for this function:

◆ New()

template<class B , class S >
S * v8::internal::compiler::GenericNode< B, S >::New ( GenericGraphBase graph,
int  input_count,
S **  inputs 
)
static

Definition at line 226 of file generic-node-inl.h.

227  {
228  size_t node_size = sizeof(GenericNode);
229  size_t inputs_size = input_count * sizeof(Input);
230  size_t uses_size = input_count * sizeof(Use);
231  int size = static_cast<int>(node_size + inputs_size + uses_size);
232  Zone* zone = graph->zone();
233  void* buffer = zone->New(size);
234  S* result = new (buffer) S(graph, input_count);
235  Input* input =
236  reinterpret_cast<Input*>(reinterpret_cast<char*>(buffer) + node_size);
237  Use* use =
238  reinterpret_cast<Use*>(reinterpret_cast<char*>(input) + inputs_size);
239 
240  for (int current = 0; current < input_count; ++current) {
241  GenericNode* to = *inputs++;
242  input->to = to;
243  input->use = use;
244  use->input_index = current;
245  use->from = result;
246  to->AppendUse(use);
247  ++use;
248  ++input;
249  }
250  return result;
251 }
GenericNode(GenericGraphBase *graph, int input_count)
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be expose gc extension under the specified name show built in functions in stack traces use random jit cookie to mask large constants minimum length for automatic enable preparsing CPU profiler sampling interval in microseconds trace out of bounds accesses to external arrays default size of stack region v8 is allowed to maximum length of function source code printed in a stack trace min size of a semi the new space consists of two semi spaces print one trace line following each garbage collection do not print trace line after scavenger collection print cumulative GC statistics in only print modified registers Trace simulator debug messages Implied by trace sim abort randomize hashes to avoid predictable hash Fixed seed to use to hash property Print the time it takes to deserialize the snapshot A filename with extra code to be included in the A file to write the raw snapshot bytes to(mksnapshot only)") DEFINE_STRING(raw_context_file
enable harmony numeric enable harmony object literal extensions Optimize object size

References v8::internal::compiler::GenericNode< B, S >::GenericNode(), v8::internal::compiler::GenericNode< B, S >::inputs(), v8::internal::Zone::New(), v8::internal::S, size, v8::internal::compiler::GenericNode< B, S >::Input::to, to(), v8::internal::compiler::GenericNode< B, S >::Input::use, use(), and v8::internal::compiler::GenericGraphBase::zone().

+ Here is the call graph for this function:

◆ operator new()

template<class B , class S >
void* v8::internal::compiler::GenericNode< B, S >::operator new ( size_t  ,
void *  location 
)
inlineprotected

Definition at line 129 of file generic-node.h.

129 { return location; }

◆ OwnedBy()

◆ RemoveAllInputs()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::RemoveAllInputs
inline

Definition at line 96 of file generic-node-inl.h.

96  {
97  for (typename Inputs::iterator iter(inputs().begin()); iter != inputs().end();
98  ++iter) {
99  iter.GetInput()->Update(NULL);
100  }
101 }

References v8::internal::compiler::GenericNode< B, S >::Inputs::end(), v8::internal::compiler::GenericNode< B, S >::inputs(), and NULL.

+ Here is the call graph for this function:

◆ RemoveInput()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::RemoveInput ( int  index)
inline

Definition at line 181 of file generic-node-inl.h.

181  {
182  DCHECK(index >= 0 && index < InputCount());
183  // TODO(turbofan): Optimize this implementation!
184  for (; index < InputCount() - 1; ++index) {
185  ReplaceInput(index, InputAt(index + 1));
186  }
187  TrimInputCount(InputCount() - 1);
188 }

References DCHECK, v8::internal::compiler::GenericNode< B, S >::InputAt(), v8::internal::compiler::GenericNode< B, S >::InputCount(), v8::internal::compiler::GenericNode< B, S >::ReplaceInput(), and v8::internal::compiler::GenericNode< B, S >::TrimInputCount().

+ Here is the call graph for this function:

◆ RemoveUse()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::RemoveUse ( Use use)
inlineprotected

Definition at line 204 of file generic-node-inl.h.

204  {
205  if (last_use_ == use) {
206  last_use_ = use->prev;
207  }
208  if (use->prev != NULL) {
209  use->prev->next = use->next;
210  } else {
211  first_use_ = use->next;
212  }
213  if (use->next != NULL) {
214  use->next->prev = use->prev;
215  }
216  --use_count_;
217 }

References v8::internal::compiler::GenericNode< B, S >::first_use_, v8::internal::compiler::GenericNode< B, S >::last_use_, NULL, use(), and v8::internal::compiler::GenericNode< B, S >::use_count_.

Referenced by v8::internal::compiler::GenericNode< NodeData, Node >::RemoveUse(), and v8::internal::compiler::GenericNode< B, S >::ReplaceUsesIf().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ReplaceInput()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::ReplaceInput ( int  index,
GenericNode< B, S > *  new_input 
)
inline

Definition at line 118 of file generic-node-inl.h.

118  {
119  Input* input = GetInputRecordPtr(index);
120  input->Update(new_to);
121 }

References v8::internal::compiler::GenericNode< B, S >::GetInputRecordPtr(), and v8::internal::compiler::GenericNode< B, S >::Input::Update().

Referenced by v8::internal::compiler::GenericNode< B, S >::InsertInput(), and v8::internal::compiler::GenericNode< B, S >::RemoveInput().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ReplaceUses()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::ReplaceUses ( GenericNode< B, S > *  replace_to)
inline

Definition at line 60 of file generic-node-inl.h.

60  {
61  for (Use* use = first_use_; use != NULL; use = use->next) {
62  use->from->GetInputRecordPtr(use->input_index)->to = replace_to;
63  }
64  if (replace_to->last_use_ == NULL) {
65  DCHECK_EQ(NULL, replace_to->first_use_);
66  replace_to->first_use_ = first_use_;
67  replace_to->last_use_ = last_use_;
68  } else if (first_use_ != NULL) {
69  DCHECK_NE(NULL, replace_to->first_use_);
70  replace_to->last_use_->next = first_use_;
71  first_use_->prev = replace_to->last_use_;
72  replace_to->last_use_ = last_use_;
73  }
74  replace_to->use_count_ += use_count_;
75  use_count_ = 0;
76  first_use_ = NULL;
77  last_use_ = NULL;
78 }
#define DCHECK_NE(v1, v2)
Definition: logging.h:207
#define DCHECK_EQ(v1, v2)
Definition: logging.h:206

References v8::internal::compiler::GenericNode< B, S >::first_use_, v8::internal::compiler::GenericNode< B, S >::last_use_, NULL, and use().

+ Here is the call graph for this function:

◆ ReplaceUsesIf()

template<class B , class S >
template<class UnaryPredicate >
void v8::internal::compiler::GenericNode< B, S >::ReplaceUsesIf ( UnaryPredicate  pred,
GenericNode< B, S > *  replace_to 
)
inline

Definition at line 82 of file generic-node-inl.h.

83  {
84  for (Use* use = first_use_; use != NULL;) {
85  Use* next = use->next;
86  if (pred(static_cast<S*>(use->from))) {
87  RemoveUse(use);
88  replace_to->AppendUse(use);
89  use->from->GetInputRecordPtr(use->input_index)->to = replace_to;
90  }
91  use = next;
92  }
93 }

References v8::internal::compiler::GenericNode< B, S >::AppendUse(), v8::internal::compiler::GenericNode< B, S >::first_use_, NULL, v8::internal::compiler::GenericNode< B, S >::RemoveUse(), v8::internal::S, and use().

+ Here is the call graph for this function:

◆ TrimInputCount()

template<class B , class S >
void v8::internal::compiler::GenericNode< B, S >::TrimInputCount ( int  input_count)
inline

Definition at line 104 of file generic-node-inl.h.

104  {
105  if (new_input_count == input_count_) return; // Nothing to do.
106 
107  DCHECK(new_input_count < input_count_);
108 
109  // Update inline inputs.
110  for (int i = new_input_count; i < input_count_; i++) {
111  typename GenericNode<B, S>::Input* input = GetInputRecordPtr(i);
112  input->Update(NULL);
113  }
114  input_count_ = new_input_count;
115 }

References DCHECK, v8::internal::compiler::GenericNode< B, S >::GetInputRecordPtr(), v8::internal::compiler::GenericNode< B, S >::input_count_, NULL, and v8::internal::compiler::GenericNode< B, S >::Input::Update().

Referenced by v8::internal::compiler::GenericNode< B, S >::RemoveInput().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ UseAt()

template<class B , class S >
S* v8::internal::compiler::GenericNode< B, S >::UseAt ( int  index)
inline

Definition at line 47 of file generic-node.h.

47  {
48  DCHECK(index < use_count_);
49  Use* current = first_use_;
50  while (index-- != 0) {
51  current = current->next;
52  }
53  return static_cast<S*>(current->from);
54  }

References DCHECK, v8::internal::compiler::GenericNode< B, S >::first_use_, v8::internal::compiler::GenericNode< B, S >::Use::from, v8::internal::compiler::GenericNode< B, S >::Use::next, v8::internal::S, and v8::internal::compiler::GenericNode< B, S >::use_count_.

◆ UseCount()

template<class B , class S >
int v8::internal::compiler::GenericNode< B, S >::UseCount ( )
inline

Definition at line 46 of file generic-node.h.

46 { return use_count_; }

References v8::internal::compiler::GenericNode< B, S >::use_count_.

◆ uses()

template<class B , class S >
Uses v8::internal::compiler::GenericNode< B, S >::uses ( )
inline

Definition at line 89 of file generic-node.h.

89 { return Uses(this); }

Friends And Related Function Documentation

◆ GenericGraphBase

template<class B , class S >
friend class GenericGraphBase
friend

Definition at line 98 of file generic-node.h.

Member Data Documentation

◆ appendable_

template<class B , class S >
InputDeque* v8::internal::compiler::GenericNode< B, S >::appendable_

Definition at line 147 of file generic-node.h.

◆ first_use_

◆ has_appendable_inputs_

◆ id_

template<class B , class S >
NodeId v8::internal::compiler::GenericNode< B, S >::id_
private

Definition at line 138 of file generic-node.h.

Referenced by v8::internal::compiler::GenericNode< B, S >::id().

◆ input_count_

◆ 

◆ last_use_

◆ static_

template<class B , class S >
Input* v8::internal::compiler::GenericNode< B, S >::static_

Definition at line 146 of file generic-node.h.

◆ use_count_


The documentation for this class was generated from the following files: