Searched refs:replacement (Results 1 – 9 of 9) sorted by relevance
/art/compiler/optimizing/ |
D | nodes.cc | 768 HInstruction* replacement) { in ReplaceAndRemoveInstructionWith() argument 772 DCHECK(replacement->IsControlFlow()); in ReplaceAndRemoveInstructionWith() 773 DCHECK_EQ(replacement->GetId(), -1); in ReplaceAndRemoveInstructionWith() 774 DCHECK_EQ(replacement->GetType(), Primitive::kPrimVoid); in ReplaceAndRemoveInstructionWith() 779 replacement->SetBlock(this); in ReplaceAndRemoveInstructionWith() 780 replacement->SetId(GetGraph()->GetNextInstructionId()); in ReplaceAndRemoveInstructionWith() 781 instructions_.InsertInstructionBefore(replacement, initial); in ReplaceAndRemoveInstructionWith() 782 UpdateInputsUsers(replacement); in ReplaceAndRemoveInstructionWith() 784 InsertInstructionBefore(replacement, initial); in ReplaceAndRemoveInstructionWith() 785 initial->ReplaceWith(replacement); in ReplaceAndRemoveInstructionWith() [all …]
|
D | instruction_simplifier.cc | 1044 HCondition* replacement = GetOppositeConditionSwapOps(block->GetGraph()->GetArena(), condition); in VisitCondition() local 1046 if (replacement != nullptr) { in VisitCondition() 1048 replacement->SetBias(ComparisonBias::kGtBias); in VisitCondition() 1050 replacement->SetBias(ComparisonBias::kLtBias); in VisitCondition() 1052 block->ReplaceAndRemoveInstructionWith(condition, replacement); in VisitCondition() 1055 condition = replacement; in VisitCondition()
|
D | bounds_check_elimination.cc | 1705 static void ReplaceInstruction(HInstruction* instruction, HInstruction* replacement) { in ReplaceInstruction() argument 1706 instruction->ReplaceWith(replacement); in ReplaceInstruction()
|
D | nodes.h | 1050 HInstruction* replacement); 1940 void ReplaceInput(HInstruction* replacement, size_t index);
|
/art/test/569-checker-pattern-replacement/ |
D | run | 18 -Xcompiler-option --no-inline-from=core-oj,569-checker-pattern-replacement.jar:classes2.dex
|
/art/compiler/linker/ |
D | relative_patcher_test.h | 235 std::string replacement = oss.str(); in DumpDiff() local 236 expected_hex_str.replace(0u, remove * 3u, replacement); in DumpDiff() 237 linked_hex_str.replace(0u, remove * 3u, replacement); in DumpDiff() 238 diff_indicator_str.replace(0u, remove * 3u, replacement); in DumpDiff()
|
/art/test/570-checker-osr/smali/ |
D | Osr.smali | 20 # This ensures we can do on-stack replacement for branches to those nop blocks.
|
/art/tools/ |
D | cpplint.py | 284 for op, replacement in [('==', 'EQ'), ('!=', 'NE'), 287 _CHECK_REPLACEMENT['DCHECK'][op] = 'DCHECK_%s' % replacement 288 _CHECK_REPLACEMENT['CHECK'][op] = 'CHECK_%s' % replacement 289 _CHECK_REPLACEMENT['EXPECT_TRUE'][op] = 'EXPECT_%s' % replacement 290 _CHECK_REPLACEMENT['ASSERT_TRUE'][op] = 'ASSERT_%s' % replacement 291 _CHECK_REPLACEMENT['EXPECT_TRUE_M'][op] = 'EXPECT_%s_M' % replacement 292 _CHECK_REPLACEMENT['ASSERT_TRUE_M'][op] = 'ASSERT_%s_M' % replacement
|
/art/test/ |
D | Android.run-test.mk | 243 569-checker-pattern-replacement
|