Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dboolean_simplifier.cc122 HInstruction* replacement; in TryRemovingBooleanSelection() local
124 replacement = GetOppositeCondition(if_condition); in TryRemovingBooleanSelection()
125 if (replacement->GetBlock() == nullptr) { in TryRemovingBooleanSelection()
126 block->InsertInstructionBefore(replacement, if_instruction); in TryRemovingBooleanSelection()
129 replacement = if_condition; in TryRemovingBooleanSelection()
135 phi->ReplaceWith(replacement); in TryRemovingBooleanSelection()
Dnodes.cc465 HInstruction* replacement) { in ReplaceAndRemoveInstructionWith() argument
467 InsertInstructionBefore(replacement, initial); in ReplaceAndRemoveInstructionWith()
468 initial->ReplaceWith(replacement); in ReplaceAndRemoveInstructionWith()
759 void HInstruction::ReplaceInput(HInstruction* replacement, size_t index) { in ReplaceInput() argument
761 SetRawInputAt(index, replacement); in ReplaceInput()
762 replacement->AddUseAt(this, index); in ReplaceInput()
Dnodes.h689 HInstruction* replacement);
1455 void ReplaceInput(HInstruction* replacement, size_t index);
/art/compiler/linker/
Drelative_patcher_test.h206 std::string replacement = oss.str(); in DumpDiff() local
207 expected_hex_str.replace(0u, remove * 3u, replacement); in DumpDiff()
208 linked_hex_str.replace(0u, remove * 3u, replacement); in DumpDiff()
209 diff_indicator_str.replace(0u, remove * 3u, replacement); in DumpDiff()
/art/tools/
Dcpplint.py280 for op, replacement in [('==', 'EQ'), ('!=', 'NE'),
283 _CHECK_REPLACEMENT['DCHECK'][op] = 'DCHECK_%s' % replacement
284 _CHECK_REPLACEMENT['CHECK'][op] = 'CHECK_%s' % replacement
285 _CHECK_REPLACEMENT['EXPECT_TRUE'][op] = 'EXPECT_%s' % replacement
286 _CHECK_REPLACEMENT['ASSERT_TRUE'][op] = 'ASSERT_%s' % replacement
287 _CHECK_REPLACEMENT['EXPECT_TRUE_M'][op] = 'EXPECT_%s_M' % replacement
288 _CHECK_REPLACEMENT['ASSERT_TRUE_M'][op] = 'ASSERT_%s_M' % replacement