Home | History | Annotate | Download | only in compiler

Lines Matching defs:access

70   ContextAccess access = OpParameter<ContextAccess>(node);
74 for (int i = access.depth(); i > 0; --i) {
78 // If the access itself is mutable, only fold-in the parent.
79 if (!access.immutable()) {
80 // The access does not have to look up a parent, nothing to fold.
81 if (access.depth() == 0) {
85 0, access.index(), access.immutable());
92 Handle<Object>(context->get(access.index()), info_->isolate());
118 ContextAccess access = OpParameter<ContextAccess>(node);
120 // The access does not have to look up a parent, nothing to fold.
121 if (access.depth() == 0) {
127 for (int i = access.depth(); i > 0; --i) {
131 const Operator* op = jsgraph_->javascript()->StoreContext(0, access.index());