Lines Matching full:divisor
588 LModByPowerOf2I(LOperand* dividend, int32_t divisor) {
590 divisor_ = divisor;
594 int32_t divisor() const { return divisor_; }
606 LModByConstI(LOperand* dividend, int32_t divisor) {
608 divisor_ = divisor;
612 int32_t divisor() const { return divisor_; }
639 LDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
641 divisor_ = divisor;
645 int32_t divisor() const { return divisor_; }
657 LDivByConstI(LOperand* dividend, int32_t divisor) {
659 divisor_ = divisor;
663 int32_t divisor() const { return divisor_; }
675 LDivI(LOperand* dividend, LOperand* divisor) {
677 inputs_[1] = divisor;
681 LOperand* divisor() { return inputs_[1]; }
690 LFlooringDivByPowerOf2I(LOperand* dividend, int32_t divisor) {
692 divisor_ = divisor;
696 int32_t divisor() { return divisor_; }
709 LFlooringDivByConstI(LOperand* dividend, int32_t divisor, LOperand* temp) {
711 divisor_ = divisor;
716 int32_t divisor() const { return divisor_; }
729 LFlooringDivI(LOperand* dividend, LOperand* divisor) {
731 inputs_[1] = divisor;
735 LOperand* divisor() { return inputs_[1]; }
2551 static bool HasMagicNumberForDivisor(int32_t divisor);