Home
last modified time | relevance | path

Searched refs:replacement (Results 1 – 9 of 9) sorted by relevance

/art/compiler/optimizing/
Dnodes.cc768 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 …]
Dinstruction_simplifier.cc1044 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()
Dbounds_check_elimination.cc1705 static void ReplaceInstruction(HInstruction* instruction, HInstruction* replacement) { in ReplaceInstruction() argument
1706 instruction->ReplaceWith(replacement); in ReplaceInstruction()
Dnodes.h1050 HInstruction* replacement);
1940 void ReplaceInput(HInstruction* replacement, size_t index);
/art/test/569-checker-pattern-replacement/
Drun18 -Xcompiler-option --no-inline-from=core-oj,569-checker-pattern-replacement.jar:classes2.dex
/art/compiler/linker/
Drelative_patcher_test.h235 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/
DOsr.smali20 # This ensures we can do on-stack replacement for branches to those nop blocks.
/art/tools/
Dcpplint.py284 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/
DAndroid.run-test.mk243 569-checker-pattern-replacement