Searched refs:NumberToUint32 (Results 1 – 18 of 18) sorted by relevance
/external/v8/test/cctest/compiler/ |
D | test-simplified-lowering.cc | 139 Node* convert = t.NumberToUint32(loaded); in TEST() 1020 t.simplified()->NumberToUint32()); in TEST() 1023 t.simplified()->NumberToUint32()); in TEST() 1094 Node* trunc = t.graph()->NewNode(t.simplified()->NumberToUint32(), t.p0); in TEST() 1107 Node* trunc = t.graph()->NewNode(t.simplified()->NumberToUint32(), p0); in TEST() 1117 Node* trunc = t.graph()->NewNode(t.simplified()->NumberToUint32(), t.p0); in TEST() 1128 Node* trunc = t.graph()->NewNode(t.simplified()->NumberToUint32(), input); in TEST() 1630 Node* num = t.NumberToUint32(t.Parameter(0)); in TEST() 1632 Node* trunc = t.NumberToUint32(mul); in TEST() 1648 Node* num = t.NumberToUint32(t.Parameter(0)); in TEST() [all …]
|
D | graph-builder-tester.h | 139 Node* NumberToUint32(Node* a) { in NumberToUint32() function 140 return NewNode(simplified()->NumberToUint32(), a); in NumberToUint32()
|
/external/v8/src/runtime/ |
D | runtime-atomics.cc | 140 return NumberToUint32(*number); in FromObject() 150 return NumberToUint32(*number); in FromObject() 160 return NumberToUint32(*number); in FromObject() 580 uint32_t usize = NumberToUint32(*size); in RUNTIME_FUNCTION()
|
D | runtime-array.cc | 221 if (NumberToUint32(keys->get(i)) >= length) continue; in RUNTIME_FUNCTION()
|
/external/v8/src/ |
D | conversions.h | 174 inline uint32_t NumberToUint32(Object* number);
|
D | conversions-inl.h | 125 uint32_t NumberToUint32(Object* number) { in NumberToUint32() function
|
D | objects.cc | 511 << (NumberToUint32(*rhs) & 0x1F)); in ShiftLeft() 523 (NumberToUint32(*rhs) & 0x1F)); in ShiftRight() 535 return isolate->factory()->NewNumberFromUint(NumberToUint32(*lhs) >> in ShiftRightLogical() 536 (NumberToUint32(*rhs) & 0x1F)); in ShiftRightLogical() 15561 (NumberToUint32(numbers->get(j - 1)) > in InsertionSortPairs() 15562 NumberToUint32(numbers->get(j)))) { in InsertionSortPairs() 15579 uint32_t parent_value = NumberToUint32(numbers->get(parent_index)); in HeapSortPairs() 15580 uint32_t child_value = NumberToUint32(numbers->get(child_index)); in HeapSortPairs() 15599 uint32_t child1_value = NumberToUint32(numbers->get(child_index)); in HeapSortPairs() 15600 uint32_t child2_value = NumberToUint32(numbers->get(child_index + 1)); in HeapSortPairs() [all …]
|
D | builtins.cc | 2495 int product = static_cast<int>(NumberToUint32(*x) * NumberToUint32(*y)); in BUILTIN()
|
D | api.cc | 3527 if (obj->IsNumber()) return Just(NumberToUint32(*obj)); in Uint32Value() 3539 if (obj->IsNumber()) return NumberToUint32(*obj); in Uint32Value()
|
/external/v8/src/compiler/ |
D | simplified-operator.h | 200 const Operator* NumberToUint32();
|
D | typer.cc | 252 static Type* NumberToUint32(Type*, Typer*); 554 Type* Typer::Visitor::NumberToUint32(Type* type, Typer* t) { in NumberToUint32() function in v8::internal::compiler::Typer::Visitor 970 rhs = NumberToUint32(ToNumber(rhs, t), t); in JSShiftRightTyper() 1006 lhs = NumberToUint32(ToNumber(lhs, t), t); in JSShiftRightLogicalTyper() 1692 return TypeUnaryOp(node, NumberToUint32); in TypeNumberToUint32() 1718 type = NumberToUint32(ToNumber(type, t), t); in StringFromCharCodeTyper()
|
D | js-builtin-reducer.cc | 528 return graph()->NewNode(simplified()->NumberToUint32(), input); in ToUint32()
|
D | simplified-operator.cc | 276 V(NumberToUint32, Operator::kNoProperties, 1) \
|
D | opcodes.h | 225 V(NumberToUint32) \
|
D | js-typed-lowering.cc | 381 node = graph()->NewNode(simplified()->NumberToUint32(), node); in ConvertToUI32()
|
/external/v8/test/unittests/compiler/ |
D | simplified-operator-unittest.cc | 57 PURE(NumberToUint32, Operator::kNoProperties, 1),
|
D | node-test-utils.cc | 2334 IS_UNOP_MATCHER(NumberToUint32)
|
/external/v8/src/heap/ |
D | incremental-marking.cc | 468 uint32_t key = NumberToUint32(k); in PatchIncrementalMarkingRecordWriteStubs()
|