Home | History | Annotate | Download | only in src

Lines Matching defs:env

96   void SetInitialEnvironment(HEnvironment* env);
103 void UpdateEnvironment(HEnvironment* env);
746 OStream& operator<<(OStream& os, const HEnvironment& env);
1313 HBasicBlock* CreateBasicBlock(HEnvironment* env);
2236 HEnvironment* env) {
2243 env->is_local_index(index);
2246 HEnvironment* env = environment();
2247 int index = env->IndexFor(var);
2248 env->Bind(index, value);
2249 if (IsEligibleForEnvironmentLivenessAnalysis(var, index, value, env)) {
2254 bind->set_closure(env->closure());
2260 HEnvironment* env = environment();
2261 int index = env->IndexFor(var);
2262 HValue* value = env->Lookup(index);
2263 if (IsEligibleForEnvironmentLivenessAnalysis(var, index, value, env)) {
2268 lookup->set_closure(env->closure());