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

  /external/v8/src/compiler/
machine-operator-reducer.h 51 Node* Word32Shr(Node* lhs, uint32_t rhs);
machine-operator-reducer.cc 75 Node* MachineOperatorReducer::Word32Shr(Node* lhs, uint32_t rhs) {
77 return graph()->NewNode(machine()->Word32Shr(), lhs, Uint32Constant(rhs));
117 return Int32Add(Word32Sar(quotient, mag.shift), Word32Shr(dividend, 31));
126 dividend = Word32Shr(dividend, shift);
135 quotient = Word32Shr(
136 Int32Add(Word32Shr(Int32Sub(dividend, quotient), 1), quotient),
139 quotient = Word32Shr(quotient, mag.shift);
809 quotient = Int32Add(Word32Shr(quotient, 32u - shift), dividend);
    [all...]
code-assembler.h 111 V(Word32Shr) \
288 Node* Word32Shr(Node* value, int shift);
code-assembler.cc 375 Node* CodeAssembler::Word32Shr(Node* value, int shift) {
376 return (shift != 0) ? raw_assembler()->Word32Shr(value, Int32Constant(shift))
graph-assembler.h 40 V(Word32Shr) \
machine-operator.h 217 const Operator* Word32Shr();
int64-lowering.cc 644 graph()->NewNode(machine()->Word32Shr(), low_input, masked_shift),
647 machine()->Word32Or(), graph()->NewNode(machine()->Word32Shr(),
    [all...]
raw-machine-assembler.h 224 Node* Word32Shr(Node* a, Node* b) {
225 return AddNode(machine()->Word32Shr(), a, b);
opcodes.h 388 V(Word32Shr) \
machine-operator.cc 88 V(Word32Shr, Operator::kNoProperties, 2, 0, 1) \
    [all...]
simplified-lowering.cc     [all...]
wasm-compiler.cc 558 op = m->Word32Shr();
    [all...]
effect-control-linearizer.cc     [all...]
  /external/v8/src/
code-stub-assembler.cc     [all...]
  /external/v8/src/builtins/
builtins-number.cc     [all...]
  /external/v8/src/interpreter/
interpreter.cc     [all...]

Completed in 93 milliseconds