Searched refs:index_from_top (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/compiler/
H A Dcode-generator.cc534 // [index_from_top] in the stack (overwriting whatever was
536 size_t index_from_top = local
538 if (index >= index_from_top &&
539 index < index_from_top + iter->instruction()->OutputCount()) {
542 iter->instruction()->OutputAt(index - index_from_top),
/external/v8/src/crankshaft/
H A Dhydrogen.h607 HValue* ExpressionStackAt(int index_from_top) const {
608 int index = length() - index_from_top - 1;
613 void SetExpressionStackAt(int index_from_top, HValue* value);
614 HValue* RemoveExpressionStackAt(int index_from_top);
H A Dhydrogen.cc13113 void HEnvironment::SetExpressionStackAt(int index_from_top, HValue* value) { argument
13114 int count = index_from_top + 1;
13128 HValue* HEnvironment::RemoveExpressionStackAt(int index_from_top) { argument
13129 int count = index_from_top + 1;

Completed in 107 milliseconds