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

  /external/v8/src/compiler/
machine-operator-reducer.cc 54 Node* MachineOperatorReducer::Word32Sar(Node* lhs, uint32_t rhs) {
56 return graph()->NewNode(machine()->Word32Sar(), lhs, Uint32Constant(rhs));
102 return Int32Add(Word32Sar(quotient, mag.shift), Word32Shr(dividend, 31));
587 quotient = Word32Sar(quotient, 31);
590 quotient = Word32Sar(quotient, shift);
    [all...]
raw-machine-assembler.h 194 Node* Word32Sar(Node* a, Node* b) {
195 return AddNode(machine()->Word32Sar(), a, b);

Completed in 1583 milliseconds