Lines Matching refs:environment
377 // Ensure the environment uses entries are consistent.
382 AddError(StringPrintf("Environment user of %s:%d has a wrong "
423 AddError(StringPrintf("Instruction %s:%d in block %d requires an environment "
430 // Ensure an instruction having an environment is dominated by the
431 // instructions contained in the environment.
432 for (HEnvironment* environment = instruction->GetEnvironment();
433 environment != nullptr;
434 environment = environment->GetParent()) {
435 for (size_t i = 0, e = environment->Size(); i < e; ++i) {
436 HInstruction* env_instruction = environment->GetInstructionAt(i);
439 AddError(StringPrintf("Instruction %d in environment of instruction %d "
461 // Find the top-level environment. This corresponds to the environment of
463 HEnvironment* environment = instruction->GetEnvironment();
464 while (environment->GetParent() != nullptr) {
465 environment = environment->GetParent();
468 // Find all catch blocks and test that `instruction` has an environment
474 if (environment->GetInstructionAt(catch_phi->GetRegNumber()) == nullptr) {
477 "corresponding environment slot is empty.",