HomeSort by relevance Sort by last modified time
    Searched defs:orig_instr (Results 1 - 2 of 2) sorted by null

  /art/compiler/optimizing/
superblock_cloner_test.cc 221 HInstruction* orig_instr = it.first; local
224 EXPECT_EQ(cloner.GetBlockCopy(orig_instr->GetBlock()), copy_instr->GetBlock());
225 EXPECT_EQ(orig_instr->GetKind(), copy_instr->GetKind());
226 EXPECT_EQ(orig_instr->GetType(), copy_instr->GetType());
228 if (orig_instr->IsPhi()) {
232 EXPECT_EQ(orig_instr->InputCount(), copy_instr->InputCount());
235 for (size_t i = 0, e = orig_instr->InputCount(); i < e; i++) {
236 HInstruction* orig_input = orig_instr->InputAt(i);
245 EXPECT_EQ(orig_instr->HasEnvironment(), copy_instr->HasEnvironment());
248 if (orig_instr->HasEnvironment())
    [all...]
superblock_cloner.cc 510 void SuperblockCloner::CheckInstructionInputsRemapping(HInstruction* orig_instr) {
511 DCHECK(!orig_instr->IsPhi());
512 HInstruction* copy_instr = GetInstrCopy(orig_instr);
513 for (size_t i = 0, e = orig_instr->InputCount(); i < e; i++) {
514 HInstruction* orig_input = orig_instr->InputAt(i);
515 DCHECK(orig_input->GetBlock()->Dominates(orig_instr->GetBlock()));
527 if (orig_instr->HasEnvironment()) {
528 HEnvironment* orig_env = orig_instr->GetEnvironment();
662 HInstruction* orig_instr = it.Current(); local
663 HInstruction* copy_instr = orig_instr->Clone(arena_)
672 HInstruction* orig_instr = it.Current(); local
    [all...]

Completed in 52 milliseconds