Lines Matching defs:obj
27 Object obj = cache.get(cache_entry);
31 DCHECK(!obj.IsFixedArray());
32 if (obj.IsWeakFixedArray()) {
33 WeakFixedArray literals_map = WeakFixedArray::cast(obj);
55 Object obj = cache->get(cache_entry);
59 DCHECK(!obj.IsFixedArray());
60 if (!obj.IsWeakFixedArray() || WeakFixedArray::cast(obj).length() == 0) {
65 Handle<WeakFixedArray> old_literals_map(WeakFixedArray::cast(obj), isolate);
223 bool IsMatch(Object obj) override {
224 FixedArray val = FixedArray::cast(obj);
258 Object obj = table->get(index + 1);
259 if (obj.IsSharedFunctionInfo()) {
260 return handle(SharedFunctionInfo::cast(obj), isolate);
279 Object obj = table->get(index + 1);
280 if (!obj.IsSharedFunctionInfo()) return empty_result;
285 return InfoCellPair(isolate, SharedFunctionInfo::cast(obj), feedback_cell);