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 60 Node* MachineOperatorReducer::Word32Shr(Node* lhs, uint32_t rhs) {
62 return graph()->NewNode(machine()->Word32Shr(), lhs, Uint32Constant(rhs));
102 return Int32Add(Word32Sar(quotient, mag.shift), Word32Shr(dividend, 31));
111 dividend = Word32Shr(dividend, shift);
120 quotient = Word32Shr(
121 Int32Add(Word32Shr(Int32Sub(dividend, quotient), 1), quotient),
124 quotient = Word32Shr(quotient, mag.shift);
589 quotient = Int32Add(Word32Shr(quotient, 32u - shift), dividend);
626 NodeProperties::ChangeOp(node, machine()->Word32Shr());
    [all...]
raw-machine-assembler.h 191 Node* Word32Shr(Node* a, Node* b) {
192 return AddNode(machine()->Word32Shr(), a, b);

Completed in 871 milliseconds