Lines Matching defs:index
149 ContextAccess::ContextAccess(size_t depth, size_t index, bool immutable)
152 index_(static_cast<uint32_t>(index)) {
154 DCHECK(index <= std::numeric_limits<uint32_t>::max());
159 return lhs.depth() == rhs.depth() && lhs.index() == rhs.index() &&
170 return base::hash_combine(access.depth(), access.index(), access.immutable());
175 return os << access.depth() << ", " << access.index() << ", "
1091 const Operator* JSOperatorBuilder::GeneratorRestoreRegister(int index) {
1096 index); // parameter
1203 const Operator* JSOperatorBuilder::LoadContext(size_t depth, size_t index,
1205 ContextAccess access(depth, index, immutable);
1215 const Operator* JSOperatorBuilder::StoreContext(size_t depth, size_t index) {
1216 ContextAccess access(depth, index, false);