Searched refs:HandleIf (Results 1 – 2 of 2) sorted by relevance
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 302 HANDLER_ATTRIBUTES bool HandleIf(bool cond, int32_t offset) { in HandleIf() function 871 return HandleIf(GetVReg(A()) == GetVReg(B()), C()); in IF_EQ() 875 return HandleIf(GetVReg(A()) != GetVReg(B()), C()); in IF_NE() 879 return HandleIf(GetVReg(A()) < GetVReg(B()), C()); in IF_LT() 883 return HandleIf(GetVReg(A()) >= GetVReg(B()), C()); in IF_GE() 887 return HandleIf(GetVReg(A()) > GetVReg(B()), C()); in IF_GT() 891 return HandleIf(GetVReg(A()) <= GetVReg(B()), C()); in IF_LE() 895 return HandleIf(GetVReg(A()) == 0, B()); in IF_EQZ() 899 return HandleIf(GetVReg(A()) != 0, B()); in IF_NEZ() 903 return HandleIf(GetVReg(A()) < 0, B()); in IF_LTZ() [all …]
|
/art/compiler/optimizing/ |
D | bounds_check_elimination.cc | 692 void HandleIf(HIf* instruction, HInstruction* left, HInstruction* right, IfCondition cond) { in HandleIf() function in art::BCEVisitor 1000 HandleIf(instruction, cond->GetLeft(), cond->GetRight(), cond->GetCondition()); in VisitIf()
|