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 69 Node* MachineOperatorReducer::Word32Sar(Node* lhs, uint32_t rhs) {
71 return graph()->NewNode(machine()->Word32Sar(), lhs, Uint32Constant(rhs));
117 return Int32Add(Word32Sar(quotient, mag.shift), Word32Shr(dividend, 31));
807 quotient = Word32Sar(quotient, 31);
810 quotient = Word32Sar(quotient, shift);
    [all...]
raw-machine-assembler.h 227 Node* Word32Sar(Node* a, Node* b) {
228 return AddNode(machine()->Word32Sar(), a, b);

Completed in 56 milliseconds