HomeSort by relevance Sort by last modified time
    Searched defs:Word32Shr (Results 1 - 2 of 2) sorted by null

  /external/v8/src/compiler/
machine-operator-reducer.cc 59 Node* MachineOperatorReducer::Word32Shr(Node* lhs, uint32_t rhs) {
61 return graph()->NewNode(machine()->Word32Shr(), lhs, Uint32Constant(rhs));
101 return Int32Add(Word32Sar(quotient, mag.shift), Word32Shr(dividend, 31));
110 dividend = Word32Shr(dividend, shift);
119 quotient = Word32Shr(
120 Int32Add(Word32Shr(Int32Sub(dividend, quotient), 1), quotient),
123 quotient = Word32Shr(quotient, mag.shift);
533 quotient = Int32Add(Word32Shr(quotient, 32u - shift), dividend);
570 NodeProperties::ChangeOp(node, machine()->Word32Shr());
    [all...]
raw-machine-assembler.h 179 Node* Word32Shr(Node* a, Node* b) {
180 return AddNode(machine()->Word32Shr(), a, b);

Completed in 98 milliseconds