Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc865 bool ensure_safety) { in Remove() argument
869 if (ensure_safety) { in Remove()
876 void HBasicBlock::RemoveInstruction(HInstruction* instruction, bool ensure_safety) { in RemoveInstruction() argument
878 Remove(&instructions_, this, instruction, ensure_safety); in RemoveInstruction()
881 void HBasicBlock::RemovePhi(HPhi* phi, bool ensure_safety) { in RemovePhi() argument
882 Remove(&phis_, this, phi, ensure_safety); in RemovePhi()
885 void HBasicBlock::RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety) { in RemoveInstructionOrPhi() argument
887 RemovePhi(instruction->AsPhi(), ensure_safety); in RemoveInstructionOrPhi()
889 RemoveInstruction(instruction, ensure_safety); in RemoveInstructionOrPhi()
Dnodes.h1057 void RemoveInstruction(HInstruction* instruction, bool ensure_safety = true);
1058 void RemovePhi(HPhi* phi, bool ensure_safety = true);
1059 void RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety = true);