Lines Matching full:option
37 /// and the PBQP option <--> storage location map).
72 /// Returns true if the given PBQP option represents a physical register,
74 bool isPRegOption(unsigned vreg, unsigned option) const {
77 return !isSpillOption(vreg, option);
80 /// Returns true if the given PBQP option represents spilling, false
82 bool isSpillOption(unsigned vreg, unsigned option) const {
83 // We hardcode option zero as the spill option.
84 return option == 0;
90 /// Get PReg for option.
91 unsigned getPRegForOption(unsigned vreg, unsigned option) const;