Searched refs:TryToIntPtrConstant (Results 1 – 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
D | code-assembler.cc | 381 bool CodeAssembler::TryToIntPtrConstant(TNode<Smi> tnode, intptr_t* out_value) { in TryToIntPtrConstant() function in v8::internal::compiler::CodeAssembler 387 return TryToIntPtrConstant(ReinterpretCast<IntPtrT>(tnode), out_value); in TryToIntPtrConstant() 390 bool CodeAssembler::TryToIntPtrConstant(TNode<IntegralT> node, in TryToIntPtrConstant() function in v8::internal::compiler::CodeAssembler 605 CODE_ASSEMBLER_COMPARE(IntPtrEqual, WordT, intptr_t, TryToIntPtrConstant, ==) 606 CODE_ASSEMBLER_COMPARE(WordEqual, WordT, intptr_t, TryToIntPtrConstant, ==) 607 CODE_ASSEMBLER_COMPARE(WordNotEqual, WordT, intptr_t, TryToIntPtrConstant, !=)
|
D | code-assembler.h | 572 bool TryToIntPtrConstant(TNode<IntegralT> node, intptr_t* out_value); 573 bool TryToIntPtrConstant(TNode<Smi> tnode, intptr_t* out_value);
|
/third_party/node/deps/v8/src/codegen/ |
D | code-stub-assembler.cc | 330 if (TryToIntPtrConstant(value, &constant)) { in WordIsPowerOfTwo() 766 if (TryToIntPtrConstant(value, &constant_value)) { in IsValidPositiveSmi() 792 if (TryToIntPtrConstant(value, &constant_value)) { in SmiUntag() 1224 if (TryToIntPtrConstant(size_in_bytes, &size_in_bytes_constant)) { in AllocateRaw() 1375 if (TryToIntPtrConstant(size_in_bytes, &size_constant)) { in Allocate() 3753 if (TryToIntPtrConstant(capacity, &const_capacity) && in AllocateOrderedHashTableWithCapacity() 8453 if (TryToIntPtrConstant(left, &left_constant) && in IntPtrMax() 8454 TryToIntPtrConstant(right, &right_constant)) { in IntPtrMax() 8465 if (TryToIntPtrConstant(left, &left_constant) && in IntPtrMin() 8466 TryToIntPtrConstant(right, &right_constant)) { in IntPtrMin() [all …]
|
D | code-stub-assembler.h | 358 if (TryToIntPtrConstant(node, out)) { in ToParameterConstant() 366 if (TryToIntPtrConstant(node, &constant)) { in ToParameterConstant()
|