Searched defs:Uint32Div (Results 1 - 4 of 4) sorted by relevance

/external/v8/test/mjsunit/asm/
H A Duint32div.js9 function Uint32Div(divisor) { function
25 var div = Uint32Div(divisor);
/external/v8/src/compiler/
H A Dmachine-operator-reducer.cc106 Node* MachineOperatorReducer::Uint32Div(Node* dividend, uint32_t divisor) { function in class:v8::internal::compiler::MachineOperatorReducer
629 return Replace(Uint32Div(dividend, divisor));
692 Node* quotient = Uint32Div(dividend, divisor);
H A Draw-machine-assembler.h270 Node* Uint32Div(Node* a, Node* b) { function in class:v8::internal::compiler::RawMachineAssembler
271 return AddNode(machine()->Uint32Div(), a, b);
H A Dsimplified-lowering.cc1402 // => unsigned Uint32Div
1404 if (lower()) DeferReplacement(node, lowering->Uint32Div(node));
2990 Node* SimplifiedLowering::Uint32Div(Node* const node) { function in class:v8::internal::compiler::SimplifiedLowering
2999 return graph()->NewNode(machine()->Uint32Div(), lhs, rhs, graph()->start());
3004 Node* div = graph()->NewNode(machine()->Uint32Div(), lhs, rhs, d.if_false);

Completed in 107 milliseconds