Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/interpreter/riscv64/
Dinterpreter.cc453 bool cond_value; in Branch() local
456 cond_value = arg1 == arg2; in Branch()
459 cond_value = arg1 != arg2; in Branch()
462 cond_value = arg1 < arg2; in Branch()
465 cond_value = arg1 >= arg2; in Branch()
468 cond_value = bit_cast<int64_t>(arg1) < bit_cast<int64_t>(arg2); in Branch()
471 cond_value = bit_cast<int64_t>(arg1) >= bit_cast<int64_t>(arg2); in Branch()
477 if (cond_value) { in Branch()