Home
last modified time | relevance | path

Searched refs:cache_type (Results 1 - 19 of 19) sorted by relevance

/third_party/node/deps/v8/src/codegen/
H A Dcompilation-cache.cc311 const char* cache_type; in LookupEval() local
316 cache_type = "eval-global"; in LookupEval()
323 cache_type = "eval-contextual"; in LookupEval()
327 LOG(isolate(), CompilationCacheEvent("hit", cache_type, result.shared())); in LookupEval()
355 const char* cache_type; in PutEval() local
360 cache_type = "eval-global"; in PutEval()
366 cache_type = "eval-contextual"; in PutEval()
368 LOG(isolate(), CompilationCacheEvent("put", cache_type, *function_info)); in PutEval()
/third_party/node/deps/v8/src/compiler/
H A Djs-type-hint-lowering.h117 Node* cache_type, Node* index,
H A Djs-typed-lowering.cc1845 Node* cache_type = n.cache_type(); in ReduceJSForInNext() local
1862 receiver_map, cache_type); in ReduceJSForInNext()
1891 receiver_map, cache_type); in ReduceJSForInNext()
1958 Node* cache_type = enumerator; in ReduceJSForInPrepare() local
2065 Replace(user, cache_type); in ReduceJSForInPrepare()
H A Djs-type-hint-lowering.cc425 Node* receiver, Node* cache_array, Node* cache_type, Node* index, in ReduceForInNextOperation()
424 ReduceForInNextOperation( Node* receiver, Node* cache_array, Node* cache_type, Node* index, Node* effect, Node* control, FeedbackSlot slot) const ReduceForInNextOperation() argument
H A Dbytecode-graph-builder.cc260 Node* receiver, Node* cache_array, Node* cache_type, Node* index,
3604 Node* cache_type = environment()->LookupRegister( in VisitForInNext() local
3615 receiver, cache_array, cache_type, index, slot); in VisitForInNext()
3622 cache_array, cache_type, index, feedback_vector_node()); in VisitForInNext()
4057 Node* cache_type, Node* index, in TryBuildSimplifiedForInNext()
4063 receiver, cache_array, cache_type, index, effect, control, slot); in TryBuildSimplifiedForInNext()
4055 TryBuildSimplifiedForInNext(Node* receiver, Node* cache_array, Node* cache_type, Node* index, FeedbackSlot slot) TryBuildSimplifiedForInNext() argument
H A Djs-generic-lowering.cc1084 Node* cache_type = enumerator; // Just to clarify the rename. in LowerJSForInPrepare() local
1110 Replace(user, cache_type); in LowerJSForInPrepare()
H A Djs-native-context-specialization.cc2056 Node* cache_type = name.cache_type(); in ReduceJSLoadPropertyWithEnumeratedKey() local
2071 cache_type); in ReduceJSLoadPropertyWithEnumeratedKey()
2077 // Load the enum cache indices from the {cache_type}. in ReduceJSLoadPropertyWithEnumeratedKey()
2079 simplified()->LoadField(AccessBuilder::ForMapDescriptors()), cache_type, in ReduceJSLoadPropertyWithEnumeratedKey()
H A Dtyper.cc1867 Type const cache_type = in TypeJSForInPrepare() local
1871 return Type::Tuple(cache_type, cache_array, cache_length, zone()); in TypeJSForInPrepare()
H A Djs-operator.h1755 V(CacheType, cache_type, 2, Object) \
H A Djs-call-reducer.cc3000 Node* cache_type = n.cache_type();
3012 receiver_map, cache_type);
/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter-generator.cc2859 // |cache_info_triple + 2|, with the registers holding cache_type, cache_array,
2867 TNode<HeapObject> cache_type = enumerator; // Just to clarify the rename. in IGNITION_HANDLER() local
2878 StoreRegisterTripleAtOperandIndex(cache_type, cache_array, cache_length, 0); in IGNITION_HANDLER()
2888 TNode<Object> cache_type; in IGNITION_HANDLER() local
2890 std::tie(cache_type, cache_array) = LoadRegisterPairAtOperandIndex(2); in IGNITION_HANDLER()
2900 Branch(TaggedEqual(receiver_map, cache_type), &if_fast, &if_slow); in IGNITION_HANDLER()
2910 key, cache_type, maybe_feedback_vector, in IGNITION_HANDLER()
/third_party/cmsis/CMSIS/Core/Include/
H A Dcore_ca.h1324 uint32_t cache_type; in L1C_CleanInvalidateCache() local
1328 cache_type = (clidr >> i*3U) & 0x7UL; in L1C_CleanInvalidateCache()
1329 if ((cache_type >= 2U) && (cache_type <= 4U)) in L1C_CleanInvalidateCache()
/third_party/node/deps/v8/src/execution/
H A Disolate.h1437 icu::UMemory* get_cached_icu_object(ICUObjectCacheType cache_type,
1439 void set_icu_object_in_cache(ICUObjectCacheType cache_type,
1442 void clear_cached_icu_object(ICUObjectCacheType cache_type);
H A Disolate.cc5384 icu::UMemory* Isolate::get_cached_icu_object(ICUObjectCacheType cache_type, in ThrowInternal() argument
5387 icu_object_cache_[static_cast<int>(cache_type)]; in ThrowInternal()
5392 void Isolate::set_icu_object_in_cache(ICUObjectCacheType cache_type, in ThrowInternal() argument
5395 icu_object_cache_[static_cast<int>(cache_type)] = { in ThrowInternal()
5399 void Isolate::clear_cached_icu_object(ICUObjectCacheType cache_type) { in ThrowInternal() argument
5400 icu_object_cache_[static_cast<int>(cache_type)] = ICUObjectCacheEntry{}; in ThrowInternal()
/third_party/node/deps/v8/src/objects/
H A Djs-date-time-format.cc811 Isolate::ICUObjectCacheType cache_type = ConvertToCacheType(defaults); in ToLocaleDateTime() local
837 isolate->get_cached_icu_object(cache_type, locales)); in ToLocaleDateTime()
866 cache_type, locales, in ToLocaleDateTime()
/third_party/node/deps/v8/src/logging/
H A Dlog.h161 void CompilationCacheEvent(const char* action, const char* cache_type,
H A Dlog.cc1624 void Logger::CompilationCacheEvent(const char* action, const char* cache_type, in CompilationCacheEvent() argument
1633 << cache_type << Logger::kNext << script_id << Logger::kNext in CompilationCacheEvent()
/third_party/node/deps/v8/src/baseline/
H A Dbaseline-compiler.cc2132 interpreter::Register cache_type, cache_array; in VisitForInNext() local
2133 std::tie(cache_type, cache_array) = iterator().GetRegisterPairOperand(2); in VisitForInNext()
2137 cache_type, // cache type in VisitForInNext()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_s3tc.c1137 LLVMTypeRef cache_type = lp_build_format_cache_type(gallivm); in s3tc_store_cached_block() local
1138 ptr = LLVMBuildGEP2(builder, cache_type, cache, indices, ARRAY_SIZE(indices), ""); in s3tc_store_cached_block()
1145 ptr = LLVMBuildGEP2(builder, cache_type, cache, indices, ARRAY_SIZE(indices), ""); in s3tc_store_cached_block()

Completed in 77 milliseconds