Home | History | Annotate | Download | only in src

Lines Matching refs:cache_

51   explicit SourceCodeCache(Script::Type type): type_(type), cache_(NULL) { }
54 cache_ = create_heap_objects ? Heap::empty_fixed_array() : NULL;
58 v->VisitPointer(bit_cast<Object**, FixedArray**>(&cache_));
63 for (int i = 0; i < cache_->length(); i+=2) {
64 SeqAsciiString* str = SeqAsciiString::cast(cache_->get(i));
66 *handle = Handle<JSFunction>(JSFunction::cast(cache_->get(i + 1)));
77 int length = cache_->length();
80 cache_->CopyTo(0, *new_array, 0, cache_->length());
81 cache_ = *new_array;
83 cache_->set(length, *str);
84 cache_->set(length + 1, *fun);
90 FixedArray* cache_;