Home | History | Annotate | Download | only in x64

Lines Matching defs:hydrogen_env

702   HEnvironment* hydrogen_env = current_block_->last_environment();
703 instr->set_environment(CreateEnvironment(hydrogen_env));
994 LEnvironment* LChunkBuilder::CreateEnvironment(HEnvironment* hydrogen_env) {
995 if (hydrogen_env == NULL) return NULL;
997 LEnvironment* outer = CreateEnvironment(hydrogen_env->outer());
998 int ast_id = hydrogen_env->ast_id();
1000 int value_count = hydrogen_env->length();
1001 LEnvironment* result = new LEnvironment(hydrogen_env->closure(),
1003 hydrogen_env->parameter_count(),
1009 HValue* value = hydrogen_env->values()->at(i);