Home
last modified time | relevance | path

Searched refs:ensure_safety (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dnodes.cc1050 bool ensure_safety) { in Remove() argument
1054 if (ensure_safety) { in Remove()
1061 void HBasicBlock::RemoveInstruction(HInstruction* instruction, bool ensure_safety) { in RemoveInstruction() argument
1063 Remove(&instructions_, this, instruction, ensure_safety); in RemoveInstruction()
1066 void HBasicBlock::RemovePhi(HPhi* phi, bool ensure_safety) { in RemovePhi() argument
1067 Remove(&phis_, this, phi, ensure_safety); in RemovePhi()
1070 void HBasicBlock::RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety) { in RemoveInstructionOrPhi() argument
1072 RemovePhi(instruction->AsPhi(), ensure_safety); in RemoveInstructionOrPhi()
1074 RemoveInstruction(instruction, ensure_safety); in RemoveInstructionOrPhi()
Dnodes.h1231 void RemoveInstruction(HInstruction* instruction, bool ensure_safety = true);
1232 void RemovePhi(HPhi* phi, bool ensure_safety = true);
1233 void RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety = true);