Home
last modified time | relevance | path

Searched refs:cache_ (Results 1 – 25 of 29) sorted by relevance

12

/external/v8/src/
Dtyping-asm.cc65 cache_(TypeCache::Get()) { in AsmTyper()
244 SetResult(expr, cache_.kAsmDouble); in VisitExpressionAnnotation()
252 SetResult(expr, cache_.kAsmSigned); in VisitExpressionAnnotation()
254 SetResult(expr, cache_.kAsmInt); in VisitExpressionAnnotation()
339 RECURSE(VisitWithExpectation(stmt->condition(), cache_.kAsmSigned, in VisitIfStatement()
388 RECURSE(VisitWithExpectation(stmt->tag(), cache_.kAsmSigned, in VisitSwitchStatement()
400 RECURSE(VisitWithExpectation(label, cache_.kAsmSigned, in VisitSwitchStatement()
433 RECURSE(VisitWithExpectation(stmt->cond(), cache_.kAsmSigned, in VisitDoWhileStatement()
442 RECURSE(VisitWithExpectation(stmt->cond(), cache_.kAsmSigned, in VisitWhileStatement()
456 RECURSE(VisitWithExpectation(stmt->cond(), cache_.kAsmSigned, in VisitForStatement()
[all …]
Dbootstrapper.h20 explicit SourceCodeCache(Script::Type type): type_(type), cache_(NULL) { } in SourceCodeCache()
23 cache_ = create_heap_objects ? isolate->heap()->empty_fixed_array() : NULL; in Initialize()
27 v->VisitPointer(bit_cast<Object**, FixedArray**>(&cache_)); in Iterate()
31 for (int i = 0; i < cache_->length(); i+=2) { in Lookup()
32 SeqOneByteString* str = SeqOneByteString::cast(cache_->get(i)); in Lookup()
35 SharedFunctionInfo::cast(cache_->get(i + 1))); in Lookup()
46 int length = cache_->length(); in Add()
48 cache_->CopyTo(0, *new_array, 0, cache_->length()); in Add()
49 cache_ = *new_array; in Add()
53 cache_->set(length, *str); in Add()
[all …]
Dframes.h52 memset(&cache_[0], 0, sizeof(cache_)); in Flush()
58 InnerPointerToCodeCacheEntry* cache(int index) { return &cache_[index]; } in cache()
63 InnerPointerToCodeCacheEntry cache_[kInnerPointerToCodeCacheSize]; variable
Dtyping-asm.h117 TypeCache const& cache_; variable
/external/v8/src/compiler/
Djs-graph.cc78 Node** loc = cache_.FindHeapConstant(value); in HeapConstant()
122 Node** loc = cache_.FindInt32Constant(value); in Int32Constant()
131 Node** loc = cache_.FindInt64Constant(value); in Int64Constant()
140 Node** loc = cache_.FindNumberConstant(value); in NumberConstant()
149 Node** loc = cache_.FindFloat32Constant(value); in Float32Constant()
158 Node** loc = cache_.FindFloat64Constant(value); in Float64Constant()
167 Node** loc = cache_.FindExternalConstant(reference); in ExternalConstant()
201 cache_.GetCachedNodes(nodes); in GetCachedNodes()
Dcommon-operator.cc428 : cache_(kCache.Get()), zone_(zone) {} in CommonOperatorBuilder()
435 return &cache_.k##Name##Operator; \
445 return &cache_.kEnd##input_count##Operator; in CACHED_OP_LIST()
463 return &cache_.kReturn##input_count##Operator; in Return()
480 return &cache_.kBranchNoneOperator; in Branch()
482 return &cache_.kBranchTrueOperator; in Branch()
484 return &cache_.kBranchFalseOperator; in Branch()
494 return &cache_.kDeoptimizeEagerOperator; in Deoptimize()
496 return &cache_.kDeoptimizeSoftOperator; in Deoptimize()
506 return &cache_.kIfExceptionCOperator; in IfException()
[all …]
Dmachine-operator.cc337 : cache_(kCache.Get()), word_(word), flags_(flags) { in MachineOperatorBuilder()
345 const Operator* MachineOperatorBuilder::Name() { return &cache_.k##Name; }
352 return OptionalOperator(flags_ & k##Name ? &cache_.k##Name : nullptr); \
362 return &cache_.kTruncateFloat64ToInt32JavaScript; in PURE_OPTIONAL_OP_LIST()
364 return &cache_.kTruncateFloat64ToInt32RoundToZero; in PURE_OPTIONAL_OP_LIST()
374 return &cache_.kLoad##Type; \ in Load()
389 return &cache_.k##Store##kRep##NoWriteBarrier; \ in Store()
391 return &cache_.k##Store##kRep##MapWriteBarrier; \ in Store()
393 return &cache_.k##Store##kRep##PointerWriteBarrier; \ in Store()
395 return &cache_.k##Store##kRep##FullWriteBarrier; \ in Store()
[all …]
Descape-analysis.cc723 cache_(new (zone) MergeCache(zone)), in EscapeAnalysis()
1000 cache_->Clear(); in ProcessEffectPhi()
1011 cache_->states().push_back(state); in ProcessEffectPhi()
1022 if (cache_->states().size() == 0) { in ProcessEffectPhi()
1026 changed = mergeState->MergeFrom(cache_, zone(), graph(), common(), in ProcessEffectPhi()
1216 cache_->fields().clear(); in ProcessLoadFromPhi()
1219 cache_->fields().push_back(input); in ProcessLoadFromPhi()
1222 cache_->LoadVirtualObjectsForFieldsFrom(state, aliases_); in ProcessLoadFromPhi()
1223 if (cache_->objects().size() == cache_->fields().size()) { in ProcessLoadFromPhi()
1224 cache_->GetFields(offset); in ProcessLoadFromPhi()
[all …]
Dtyper.cc42 cache_(TypeCache::Get()) { in Typer()
63 Type::Union(Type::Union(singleton_false_, cache_.kZeroish, zone), in Typer()
374 if (!type->Is(t->cache_.kInteger)) { in Rangify()
415 if (type->Is(t->cache_.kIntegerOrMinusZero)) return type; in ToInteger()
416 return t->cache_.kIntegerOrMinusZero; in ToInteger()
447 if (type->Is(Type::Null())) return t->cache_.kSingletonZero; in ToNumber()
449 return Type::Union(Type::NaN(), t->cache_.kSingletonZero, t->zone()); in ToNumber()
455 if (type->Is(t->singleton_false_)) return t->cache_.kSingletonZero; in ToNumber()
456 if (type->Is(t->singleton_true_)) return t->cache_.kSingletonOne; in ToNumber()
457 if (type->Is(Type::Boolean())) return t->cache_.kZeroOrOne; in ToNumber()
[all …]
Dsimplified-operator.cc245 : cache_(kCache.Get()), zone_(zone) {} in SimplifiedOperatorBuilder()
249 const Operator* SimplifiedOperatorBuilder::Name() { return &cache_.k##Name; }
274 return &cache_.kLoadBuffer##Type; in LoadBuffer()
287 return &cache_.kStoreBuffer##Type; in StoreBuffer()
Djs-graph.h37 cache_(zone()) { in JSGraph()
158 CommonNodeCache cache_; variable
Dtyper.h57 TypeCache const& cache_; variable
Djs-operator.cc563 : cache_(kCache.Get()), zone_(zone) {} in JSOperatorBuilder()
568 return &cache_.k##Name##Operator; \
579 return &cache_.k##Name##SloppyOperator; \
581 return &cache_.k##Name##StrictOperator; \
583 return &cache_.k##Name##StrongOperator; \
Dsimplified-operator.h193 const SimplifiedOperatorGlobalCache& cache_; variable
Descape-analysis.h158 MergeCache* cache_; variable
Dcommon-operator.h192 const CommonOperatorGlobalCache& cache_; variable
Dmachine-operator.h350 MachineOperatorGlobalCache const& cache_;
/external/webrtc/webrtc/base/
Ddiskcache.h100 : cache_(cache), id_(id), rollback_(rollback) in cache_() function
102 locked_ = cache_->LockResource(id_); in cache_()
106 cache_->UnlockResource(id_); in ~CacheLock()
108 cache_->DeleteResource(id_); in ~CacheLock()
116 DiskCache* cache_;
Dhttpclient.cc273 uri_form_(URI_DEFAULT), cache_(NULL), cache_state_(CS_READY), in HttpClient()
390 if ((NULL != cache_) && CheckCache()) { in start()
455 ASSERT(NULL != cache_); in BeginCacheFile()
459 CacheLock lock(cache_, id, true); in BeginCacheFile()
469 scoped_ptr<StreamInterface> stream(cache_->WriteResource(id, kCacheBody)); in BeginCacheFile()
488 scoped_ptr<StreamInterface> stream(cache_->WriteResource(id, kCacheHeader)); in WriteCacheHeaders()
515 cache_->DeleteResource(GetCacheID(request())); in CompleteCacheFile()
520 ASSERT(NULL != cache_); in CheckCache()
524 if (!cache_->HasResource(id)) { in CheckCache()
566 scoped_ptr<StreamInterface> stream(cache_->ReadResource(id, kCacheHeader)); in ReadCacheHeaders()
[all …]
Dhttpclient.h91 void set_cache(DiskCache* cache) { ASSERT(!IsCacheActive()); cache_ = cache; } in set_cache()
92 bool cache_enabled() const { return (NULL != cache_); } in cache_enabled()
176 DiskCache* cache_; variable
Ddiskcache.cc45 : StreamAdapterInterface(stream), cache_(cache), id_(id), index_(index) in DiskCacheAdapter()
49 cache_->ReleaseResource(id_, index_); in ~DiskCacheAdapter()
53 const DiskCache* cache_; member in rtc::DiskCacheAdapter
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_quarantine.h48 : cache_(LINKER_INITIALIZED) { in Quarantine()
69 cache_.Transfer(c); in Drain()
71 if (cache_.Size() > GetSize() && recycle_mutex_.TryLock()) in Drain()
84 Cache cache_; variable
92 while (cache_.Size() > min_size) { in Recycle()
93 QuarantineBatch *b = cache_.DequeueBatch(); in Recycle()
/external/v8/src/wasm/
Dasm-wasm-builder.cc47 cache_(TypeCache::Get()), in AsmWasmBuilderImpl()
502 if (type->Is(cache_.kUint8Array)) { in VisitProperty()
505 } else if (type->Is(cache_.kInt8Array)) { in VisitProperty()
508 } else if (type->Is(cache_.kUint16Array)) { in VisitProperty()
511 } else if (type->Is(cache_.kInt16Array)) { in VisitProperty()
514 } else if (type->Is(cache_.kUint32Array)) { in VisitProperty()
517 } else if (type->Is(cache_.kInt32Array)) { in VisitProperty()
520 } else if (type->Is(cache_.kUint32Array)) { in VisitProperty()
523 } else if (type->Is(cache_.kFloat32Array)) { in VisitProperty()
526 } else if (type->Is(cache_.kFloat64Array)) { in VisitProperty()
[all …]
/external/compiler-rt/lib/asan/
Dasan_allocator.cc133 : cache_(cache) { in QuarantineCallback()
159 get_allocator().Deallocate(cache_, p); in Recycle()
163 return get_allocator().Allocate(cache_, size, 1, false); in Allocate()
167 get_allocator().Deallocate(cache_, p); in Deallocate()
170 AllocatorCache *cache_; member
/external/ceres-solver/cmake/
DFindEigen.cmake54 # are set with valid values _in the CMake cache_. This means that if these

12