HomeSort by: relevance | last modified time | path
    Searched refs:ix86_cost (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386-features.cc 526 return ix86_cost->sse_op;
529 return ix86_cost->sse_load[smode == DImode ? 1 : 0];
561 igain += 2 * m - ix86_cost->xmm_move;
564 += m * ix86_cost->int_store[2] - ix86_cost->sse_store[sse_cost_idx];
566 igain += m * ix86_cost->int_load[2] - ix86_cost->sse_load[sse_cost_idx];
574 : (m * (ix86_cost->int_load[2]
575 + ix86_cost->int_store[2])
576 - (ix86_cost->sse_load[sse_cost_idx]
    [all...]
i386.cc 130 const struct processor_costs *ix86_cost = NULL; variable in typeref:struct:processor_costs
20668 return MAX (ix86_cost->hard_register.fp_load [index],
20669 ix86_cost->hard_register.fp_store [index]);
20670 return in ? ix86_cost->hard_register.fp_load [index]
20671 : ix86_cost->hard_register.fp_store [index];
20679 return MAX (ix86_cost->hard_register.sse_load [index],
20680 ix86_cost->hard_register.sse_store [index]);
20681 return in ? ix86_cost->hard_register.sse_load [index]
20682 : ix86_cost->hard_register.sse_store [index];
20705 return MAX (ix86_cost->hard_register.mask_load[index]
    [all...]
i386.h 234 extern const struct processor_costs *ix86_cost;
238 (optimize_insn_for_size_p () ? &ix86_size_cost: ix86_cost)
1922 #define MOVE_RATIO(speed) ((speed) ? ix86_cost->move_ratio : 3)
1927 #define CLEAR_RATIO(speed) ((speed) ? ix86_cost->clear_ratio : 2)
i386-options.cc 879 /* TODO: ix86_cost should be chosen at instruction or function granuality
882 ix86_cost = &ix86_size_cost;
884 ix86_cost = ix86_tune_cost;
1664 default_algs = &ix86_cost->memset[TARGET_64BIT != 0];
1666 default_algs = &ix86_cost->memcpy[TARGET_64BIT != 0];
2570 /* TODO: ix86_cost should be chosen at instruction or function granuality
2573 ix86_cost = &ix86_size_cost;
2575 ix86_cost = ix86_tune_cost;
i386-expand.cc 6355 || (count * ix86_cost->add <= ix86_cost->shift_const
8605 cost = optimize_for_speed ? ix86_cost : &ix86_size_cost;
8808 if (ix86_cost->mult_init[mode == DImode ? 3 : 2]
8809 + ix86_cost->mult_bit * (mode == DImode ? 8 : 4)
8810 <= (ix86_cost->shift_const + ix86_cost->add) * nops
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386-features.cc 506 return ix86_cost->sse_op;
509 return ix86_cost->sse_load[smode == DImode ? 1 : 0];
541 igain += 2 * m - ix86_cost->xmm_move;
544 += m * ix86_cost->int_store[2] - ix86_cost->sse_store[sse_cost_idx];
546 igain += m * ix86_cost->int_load[2] - ix86_cost->sse_load[sse_cost_idx];
556 igain += ix86_cost->add;
558 igain += ix86_cost->shift_const;
561 igain += ix86_cost->shift_const - ix86_cost->sse_op
    [all...]
i386.cc 126 const struct processor_costs *ix86_cost = NULL; variable in typeref:struct:processor_costs
19781 return MAX (ix86_cost->hard_register.fp_load [index],
19782 ix86_cost->hard_register.fp_store [index]);
19783 return in ? ix86_cost->hard_register.fp_load [index]
19784 : ix86_cost->hard_register.fp_store [index];
19792 return MAX (ix86_cost->hard_register.sse_load [index],
19793 ix86_cost->hard_register.sse_store [index]);
19794 return in ? ix86_cost->hard_register.sse_load [index]
19795 : ix86_cost->hard_register.sse_store [index];
19815 return MAX (ix86_cost->hard_register.mask_load[index]
    [all...]
i386-options.cc 835 /* TODO: ix86_cost should be chosen at instruction or function granuality
838 ix86_cost = &ix86_size_cost;
840 ix86_cost = ix86_tune_cost;
1580 default_algs = &ix86_cost->memset[TARGET_64BIT != 0];
1582 default_algs = &ix86_cost->memcpy[TARGET_64BIT != 0];
2374 /* TODO: ix86_cost should be chosen at instruction or function granuality
2377 ix86_cost = &ix86_size_cost;
2379 ix86_cost = ix86_tune_cost;
i386.h 224 extern const struct processor_costs *ix86_cost;
228 (optimize_insn_for_size_p () ? &ix86_size_cost: ix86_cost)
1866 #define MOVE_RATIO(speed) ((speed) ? ix86_cost->move_ratio : 3)
1871 #define CLEAR_RATIO(speed) ((speed) ? ix86_cost->clear_ratio : 2)
i386-expand.cc 5999 || (count * ix86_cost->add <= ix86_cost->shift_const
8033 cost = optimize_for_speed ? ix86_cost : &ix86_size_cost;
8232 if (ix86_cost->mult_init[mode == DImode ? 3 : 2]
8233 + ix86_cost->mult_bit * (mode == DImode ? 8 : 4)
8234 <= (ix86_cost->shift_const + ix86_cost->add) * nops

Completed in 126 milliseconds