Lines Matching refs:object
72 // Convert target address to the code object. Code::GetCodeFromTargetAddress
103 InlineCacheHolderFlag IC::GetCodeCacheForObject(Object* object) {
104 if (object->IsJSObject()) return OWN_MAP;
106 // If the object is a value, we use the prototype map for the cache.
107 ASSERT(object->IsString() || object->IsSymbol() ||
108 object->IsNumber() || object->IsBoolean());
114 Object* object,
116 if (object->IsSmi()) holder = PROTOTYPE_MAP;
117 Object* map_owner = holder == OWN_MAP
118 ? object : object->GetPrototype(isolate);