Lines Matching full:divisor
602 LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
604 divisor_ = divisor;
608 int32_t divisor() const { return divisor_; }
620 LModByConstI(LOperand* dividend, int32_t divisor) {
622 divisor_ = divisor;
626 int32_t divisor() const { return divisor_; }
657 LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
659 divisor_ = divisor;
663 int32_t divisor() const { return divisor_; }
675 LDivByConstI(LOperand* dividend, int32_t divisor) {
677 divisor_ = divisor;
681 int32_t divisor() const { return divisor_; }
693 LDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) {
695 inputs_[1] = divisor;
700 LOperand* divisor() { return inputs_[1]; }
710 LFlooringDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
712 divisor_ = divisor;
716 int32_t divisor() { return divisor_; }
729 LFlooringDivByConstI(LOperand* dividend, int32_t divisor, LOperand* temp) {
731 divisor_ = divisor;
736 int32_t divisor() const { return divisor_; }
749 LFlooringDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) {
751 inputs_[1] = divisor;
756 LOperand* divisor() { return inputs_[1]; }
2668 static bool HasMagicNumberForDivisor(int32_t divisor);