Searched refs:gt_bias (Results 1 - 11 of 11) sorted by relevance

/art/runtime/interpreter/mterp/mips/
H A Dop_cmpl_float.S1 %default { "gt_bias":"0" }
19 .if $gt_bias
34 .if $gt_bias
H A Dop_cmpl_double.S1 %default { "gt_bias":"0" }
21 .if $gt_bias
36 .if $gt_bias
/art/runtime/interpreter/mterp/mips64/
H A Dfcmp.S17 .if $gt_bias
H A DfcmpWide.S17 .if $gt_bias
/art/compiler/optimizing/
H A Dcode_generator_mips.h301 bool gt_bias,
308 bool gt_bias,
316 bool gt_bias,
321 bool gt_bias,
H A Dcode_generator_mips.cc3334 bool gt_bias = instruction->IsGtBias();
3342 if (gt_bias) {
3354 if (gt_bias) {
3374 bool gt_bias = instruction->IsGtBias();
3382 if (gt_bias) {
3394 if (gt_bias) {
4460 bool gt_bias,
4481 if (gt_bias) {
4490 if (gt_bias) {
4499 if (gt_bias) {
[all...]
H A Dcode_generator_mips64.h297 bool gt_bias,
301 bool gt_bias,
H A Dcode_generator_mips64.cc3603 bool gt_bias,
3622 if (gt_bias) {
3631 if (gt_bias) {
3640 if (gt_bias) {
3649 if (gt_bias) {
3675 if (gt_bias) {
3684 if (gt_bias) {
3693 if (gt_bias) {
3702 if (gt_bias) {
3718 bool gt_bias,
[all...]
H A Dcode_generator_arm64.cc123 inline Condition ARM64FPCondition(IfCondition cond, bool gt_bias) { argument
131 case kCondLT: return gt_bias ? cc : lt /* unordered */;
132 case kCondLE: return gt_bias ? ls : le /* unordered */;
133 case kCondGT: return gt_bias ? hi /* unordered */ : gt;
134 case kCondGE: return gt_bias ? cs /* unordered */ : ge;
H A Dcode_generator_arm.cc1367 inline Condition ARMFPCondition(IfCondition cond, bool gt_bias) { argument
1375 case kCondLT: return gt_bias ? CC : LT /* unordered */;
1376 case kCondLE: return gt_bias ? LS : LE /* unordered */;
1377 case kCondGT: return gt_bias ? HI /* unordered */ : GT;
1378 case kCondGE: return gt_bias ? CS /* unordered */ : GE;
H A Dcode_generator_arm_vixl.cc1411 inline vixl32::Condition ARMFPCondition(IfCondition cond, bool gt_bias) { argument
1419 case kCondLT: return gt_bias ? cc : lt /* unordered */;
1420 case kCondLE: return gt_bias ? ls : le /* unordered */;
1421 case kCondGT: return gt_bias ? hi /* unordered */ : gt;
1422 case kCondGE: return gt_bias ? cs /* unordered */ : ge;

Completed in 241 milliseconds