Home | History | Annotate | Download | only in heap

Lines Matching refs:js_object

2258 void MarkCompactCollector::TracePossibleWrapper(JSObject* js_object) {
2259 DCHECK(js_object->WasConstructedFromApiFunction());
2260 if (js_object->GetInternalFieldCount() >= 2 &&
2261 js_object->GetInternalField(0) &&
2262 js_object->GetInternalField(0) != heap_->undefined_value() &&
2263 js_object->GetInternalField(1) != heap_->undefined_value()) {
2264 DCHECK(reinterpret_cast<intptr_t>(js_object->GetInternalField(0)) % 2 == 0);
2266 reinterpret_cast<void*>(js_object->GetInternalField(0)),
2267 reinterpret_cast<void*>(js_object->GetInternalField(1))));