Searched refs:type_hint (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/tools/debug_helper/ |
H A D | debug-helper.h | 86 // to pass the |decompressed_type| value as the type_hint on a subsequent call 198 const char* type_hint); 234 const HeapAddresses& heap_addresses, const char* type_hint = nullptr) { in GetObjectProperties() 236 object, memory_accessor, heap_addresses, type_hint)); in GetObjectProperties()
|
H A D | get-object-properties.cc | 155 const char* type_hint, in GetTypedHeapObject() 198 if (type_hint != nullptr) { in GetTypedHeapObject() 199 TypedObject hint_result = GetTypedObjectByHint(address, type_hint); in GetTypedHeapObject() 554 uintptr_t address, d::MemoryAccessor accessor, const char* type_hint, in GetHeapObjectPropertiesNotCompressed() 561 GetTypedHeapObject(address, accessor, type_hint, heap_addresses); in GetHeapObjectPropertiesNotCompressed() 601 d::HeapAddresses heap_addresses, const char* type_hint) { in GetHeapObjectPropertiesMaybeCompressed() 626 type_hint, heap_addresses); in GetHeapObjectPropertiesMaybeCompressed() 631 const d::HeapAddresses& heap_addresses, const char* type_hint) { in GetObjectProperties() 643 heap_addresses, type_hint); in GetObjectProperties() 780 const char* type_hint) { in _v8_debug_helper_GetObjectProperties() 154 GetTypedHeapObject(uintptr_t address, d::MemoryAccessor accessor, const char* type_hint, const d::HeapAddresses& heap_addresses) GetTypedHeapObject() argument 553 GetHeapObjectPropertiesNotCompressed( uintptr_t address, d::MemoryAccessor accessor, const char* type_hint, const d::HeapAddresses& heap_addresses) GetHeapObjectPropertiesNotCompressed() argument 599 GetHeapObjectPropertiesMaybeCompressed( uintptr_t address, d::MemoryAccessor memory_accessor, d::HeapAddresses heap_addresses, const char* type_hint) GetHeapObjectPropertiesMaybeCompressed() argument 629 GetObjectProperties( uintptr_t address, d::MemoryAccessor memory_accessor, const d::HeapAddresses& heap_addresses, const char* type_hint) GetObjectProperties() argument 777 _v8_debug_helper_GetObjectProperties(uintptr_t object, d::MemoryAccessor memory_accessor, const d::HeapAddresses& heap_addresses, const char* type_hint) _v8_debug_helper_GetObjectProperties() argument [all...] |
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-generator.cc | 658 TypeHint type_hint() const { return type_hint_; } in type_hint() function in v8::internal::interpreter::BytecodeGenerator::ExpressionResultScope 5803 TypeHint type_hint = VisitForAccumulatorValue(expr->expression()); in VisitNot() local 5804 builder()->LogicalNot(ToBooleanModeFromTypeHint(type_hint)); in VisitNot() 6216 TypeHint type_hint = VisitForAccumulatorValue(subexpr); in VisitArithmeticExpression() local 6220 if (expr->op() == Token::ADD && type_hint == TypeHint::kString) { in VisitArithmeticExpression() 6240 TypeHint type_hint = VisitForAccumulatorValue(expr->first()); in VisitNaryArithmeticExpression() local 6253 if (rhs_hint == TypeHint::kString) type_hint = TypeHint::kString; in VisitNaryArithmeticExpression() 6261 if (type_hint == TypeHint::kString && expr->op() == Token::ADD) { in VisitNaryArithmeticExpression() 6477 TypeHint type_hint = VisitForAccumulatorValue(substitutions[i]); in VisitTemplateLiteral() local 6478 if (type_hint ! in VisitTemplateLiteral() 6599 TypeHint type_hint = VisitForAccumulatorValue(expr); VisitLogicalOrSubExpression() local 6617 TypeHint type_hint = VisitForAccumulatorValue(expr); VisitLogicalAndSubExpression() local 7124 TypeHint type_hint; VisitForTest() local 7154 TypeHint type_hint = VisitForAccumulatorValue(expr); VisitForNullishTest() local [all...] |
H A D | bytecode-generator.h | 445 static constexpr ToBooleanMode ToBooleanModeFromTypeHint(TypeHint type_hint) { in ToBooleanModeFromTypeHint() argument 446 return type_hint == TypeHint::kBoolean ? ToBooleanMode::kAlreadyBoolean in ToBooleanModeFromTypeHint()
|
Completed in 15 milliseconds