/art/compiler/optimizing/ |
D | nodes.cc | 960 void HBasicBlock::ReplaceAndRemovePhiWith(HPhi* initial, HPhi* replacement) { in ReplaceAndRemovePhiWith() argument 962 InsertPhiAfter(replacement, initial); in ReplaceAndRemovePhiWith() 963 initial->ReplaceWith(replacement); in ReplaceAndRemovePhiWith() 968 HInstruction* replacement) { in ReplaceAndRemoveInstructionWith() argument 972 DCHECK(replacement->IsControlFlow()); in ReplaceAndRemoveInstructionWith() 973 DCHECK_EQ(replacement->GetId(), -1); in ReplaceAndRemoveInstructionWith() 974 DCHECK_EQ(replacement->GetType(), DataType::Type::kVoid); in ReplaceAndRemoveInstructionWith() 979 replacement->SetBlock(this); in ReplaceAndRemoveInstructionWith() 980 replacement->SetId(GetGraph()->GetNextInstructionId()); in ReplaceAndRemoveInstructionWith() 981 instructions_.InsertInstructionBefore(replacement, initial); in ReplaceAndRemoveInstructionWith() [all …]
|
D | induction_var_range.h | 133 void Replace(HInstruction* instruction, HInstruction* fetch, HInstruction* replacement); 336 HInstruction* replacement);
|
D | induction_var_range.cc | 321 HInstruction* replacement) { in Replace() argument 326 ReplaceInduction(induction_analysis_->LookupInfo(lp, instruction), fetch, replacement); in Replace() 328 ReplaceInduction(induction_analysis_->LookupInfo(lp, GetLoopControl(lp)), fetch, replacement); in Replace() 1360 HInstruction* replacement) { in ReplaceInduction() argument 1365 info->fetch = replacement; in ReplaceInduction() 1367 ReplaceInduction(info->op_a, fetch, replacement); in ReplaceInduction() 1368 ReplaceInduction(info->op_b, fetch, replacement); in ReplaceInduction()
|
D | induction_var_analysis.cc | 162 HInstruction* replacement, in FixOutsideUse() argument 171 if (replacement == nullptr) { in FixOutsideUse() 174 user->ReplaceInput(replacement, index); in FixOutsideUse() 185 if (replacement == nullptr) { in FixOutsideUse() 189 user->SetRawEnvAt(index, replacement); in FixOutsideUse() 190 replacement->AddEnvUseAt(user, index); in FixOutsideUse()
|
D | superblock_cloner.h | 331 HInstruction* user, HInstruction* old_instruction, HInstruction* replacement);
|
D | instruction_simplifier.cc | 1577 HCondition* replacement = in VisitCondition() local 1580 if (replacement != nullptr) { in VisitCondition() 1582 replacement->SetBias(ComparisonBias::kGtBias); in VisitCondition() 1584 replacement->SetBias(ComparisonBias::kLtBias); in VisitCondition() 1586 block->ReplaceAndRemoveInstructionWith(condition, replacement); in VisitCondition() 1589 condition = replacement; in VisitCondition()
|
D | loop_optimization.cc | 2417 HInstruction* replacement = induction_range_.GenerateLastValue(instruction, graph_, block); in TryReplaceWithLastValue() local 2430 user->ReplaceInput(replacement, index); in TryReplaceWithLastValue() 2431 induction_range_.Replace(user, instruction, replacement); // update induction in TryReplaceWithLastValue() 2445 user->SetRawEnvAt(index, replacement); in TryReplaceWithLastValue() 2446 replacement->AddEnvUseAt(user, index); in TryReplaceWithLastValue()
|
D | superblock_cloner.cc | 601 HInstruction* user, HInstruction* old_instruction, HInstruction* replacement) { in UpdateInductionRangeInfoOf() argument 603 induction_range_->Replace(user, old_instruction, replacement); in UpdateInductionRangeInfoOf()
|
D | bounds_check_elimination.cc | 1997 void ReplaceInstruction(HInstruction* instruction, HInstruction* replacement) { in ReplaceInstruction() argument 2003 instruction->ReplaceWith(replacement); in ReplaceInstruction()
|
D | nodes.h | 1295 void ReplaceAndRemovePhiWith(HPhi* initial, HPhi* replacement); 1298 HInstruction* replacement); 2042 void ReplaceInput(HInstruction* replacement, size_t index); 2359 void ReplaceUsesDominatedBy(HInstruction* dominator, HInstruction* replacement); 2360 void ReplaceEnvUsesDominatedBy(HInstruction* dominator, HInstruction* replacement); 2361 void ReplaceInput(HInstruction* replacement, size_t index);
|
/art/test/986-native-method-bind/ |
D | info.txt | 1 Tests native-method-bind callback and native method replacement.
|
/art/dex2oat/linker/ |
D | relative_patcher_test.h | 266 std::string replacement = oss.str(); in DumpDiff() local 267 expected_hex_str.replace(0u, remove * 3u, replacement); in DumpDiff() 268 linked_hex_str.replace(0u, remove * 3u, replacement); in DumpDiff() 269 diff_indicator_str.replace(0u, remove * 3u, replacement); in DumpDiff()
|
/art/openjdkjvmti/ |
D | ti_heap.h | 103 art::ObjPtr<art::mirror::Object> replacement)
|
/art/test/570-checker-osr/smali/ |
D | Osr.smali | 20 # This ensures we can do on-stack replacement for branches to those nop blocks.
|