Searched refs:ensure_safety (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | nodes.cc | 865 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()
|
D | nodes.h | 1057 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);
|