Home | History | Annotate | Download | only in arm

Lines Matching defs:hydrogen_env

707   HEnvironment* hydrogen_env = current_block_->last_environment();
708 instr->set_environment(CreateEnvironment(hydrogen_env));
999 LEnvironment* LChunkBuilder::CreateEnvironment(HEnvironment* hydrogen_env) {
1000 if (hydrogen_env == NULL) return NULL;
1002 LEnvironment* outer = CreateEnvironment(hydrogen_env->outer());
1003 int ast_id = hydrogen_env->ast_id();
1005 int value_count = hydrogen_env->length();
1006 LEnvironment* result = new LEnvironment(hydrogen_env->closure(),
1008 hydrogen_env->parameter_count(),
1014 HValue* value = hydrogen_env->values()->at(i);