Searched refs:HandleIf (Results 1 – 2 of 2) sorted by relevance
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 441 HANDLER_ATTRIBUTES bool HandleIf(bool cond, int32_t offset) { in HandleIf() function 973 return HandleIf(GetVReg(A()) == GetVReg(B()), C()); in IF_EQ() 977 return HandleIf(GetVReg(A()) != GetVReg(B()), C()); in IF_NE() 981 return HandleIf(GetVReg(A()) < GetVReg(B()), C()); in IF_LT() 985 return HandleIf(GetVReg(A()) >= GetVReg(B()), C()); in IF_GE() 989 return HandleIf(GetVReg(A()) > GetVReg(B()), C()); in IF_GT() 993 return HandleIf(GetVReg(A()) <= GetVReg(B()), C()); in IF_LE() 997 return HandleIf(GetVReg(A()) == 0, B()); in IF_EQZ() 1001 return HandleIf(GetVReg(A()) != 0, B()); in IF_NEZ() 1005 return HandleIf(GetVReg(A()) < 0, B()); in IF_LTZ() [all …]
|
/art/compiler/optimizing/ |
D | bounds_check_elimination.cc | 705 void HandleIf(HIf* instruction, HInstruction* left, HInstruction* right, IfCondition cond) { in HandleIf() function in art::BCEVisitor 1013 HandleIf(instruction, cond->GetLeft(), cond->GetRight(), cond->GetCondition()); in VisitIf()
|