/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-script.h | 375 struct V8_EXPORT CachedData { struct in v8::ScriptCompiler 378 CachedData() in CachedData() function 385 // data and guarantees that it stays alive until the CachedData object is 387 // (with delete[]) when the CachedData object is destroyed. 388 CachedData(const uint8_t* data, int length, 390 ~CachedData(); 399 CachedData(const CachedData&) = delete; 400 CachedData& operator=(const CachedData [all...] |
/third_party/node/deps/v8/include/ |
H A D | v8-script.h | 344 struct V8_EXPORT CachedData { struct in v8::ScriptCompiler 347 CachedData() in CachedData() function 354 // data and guarantees that it stays alive until the CachedData object is 356 // (with delete[]) when the CachedData object is destroyed. 357 CachedData(const uint8_t* data, int length, 359 ~CachedData(); 368 CachedData(const CachedData&) = delete; 369 CachedData& operator=(const CachedData [all...] |
/third_party/node/src/ |
H A D | node_builtins.h | 31 std::unique_ptr<v8::ScriptCompiler::CachedData>>; 102 const v8::ScriptCompiler::CachedData* GetCodeCache(const char* id) const;
|
H A D | node_builtins.cc | 157 const ScriptCompiler::CachedData* BuiltinLoader::GetCodeCache( in GetCodeCache() 276 ScriptCompiler::CachedData* cached_data = nullptr; in LookupAndCompileInternal() 335 ScriptCompiler::CachedData::BufferNotOwned in LookupAndCompileInternal() 343 std::unique_ptr<ScriptCompiler::CachedData> new_cached_data( in LookupAndCompileInternal() 526 auto new_cache = std::make_unique<v8::ScriptCompiler::CachedData>( in RefreshCodeCache() 527 buffer, length, v8::ScriptCompiler::CachedData::BufferOwned); in RefreshCodeCache()
|
H A D | node_contextify.cc | 830 ScriptCompiler::CachedData* cached_data = nullptr; in New() 833 cached_data = new ScriptCompiler::CachedData( in New() 882 std::unique_ptr<ScriptCompiler::CachedData> new_cached_data; in New() 919 std::unique_ptr<ScriptCompiler::CachedData> new_cached_data) { in StoreCodeCacheResult() 970 std::unique_ptr<ScriptCompiler::CachedData> cached_data( in CreateCachedData() 1201 ScriptCompiler::CachedData* cached_data = nullptr; in CompileFunction() 1204 cached_data = new ScriptCompiler::CachedData( in CompileFunction() 1292 std::unique_ptr<ScriptCompiler::CachedData> new_cached_data; in CompileFunction()
|
H A D | node_contextify.h | 189 std::unique_ptr<v8::ScriptCompiler::CachedData> new_cached_data);
|
H A D | module_wrap.cc | 174 ScriptCompiler::CachedData* cached_data = nullptr; in New() 181 new ScriptCompiler::CachedData(data + cached_data_buf->ByteOffset(), in New() 739 std::unique_ptr<ScriptCompiler::CachedData> cached_data( in CreateCachedData()
|
H A D | js_native_api_v8.cc | 1639 v8::ScriptCompiler::CachedData* cache = cachedData in OH_JSVM_CompileScript() 1640 ? new v8::ScriptCompiler::CachedData(cachedData, cachedDataLength) : nullptr; in OH_JSVM_CompileScript() 1747 v8::ScriptCompiler::CachedData* cache = cachedData in OH_JSVM_CompileScriptWithOrigin() 1748 ? new v8::ScriptCompiler::CachedData(cachedData, cachedDataLength) : nullptr; in OH_JSVM_CompileScriptWithOrigin() 1782 new v8::ScriptCompiler::CachedData(cache->cache, cache->length) : nullptr; in CompileOptionResolver() 1830 v8::ScriptCompiler::CachedData *cachedData = nullptr; 1882 v8::ScriptCompiler::CachedData* cache; in OH_JSVM_CreateCodeCache() 1892 cache->buffer_policy = v8::ScriptCompiler::CachedData::BufferNotOwned; in OH_JSVM_CreateCodeCache()
|
/third_party/node/deps/v8/src/snapshot/ |
H A D | code-serializer.cc | 51 ScriptCompiler::CachedData* CodeSerializer::Serialize( in Serialize() 89 ScriptCompiler::CachedData* result = in Serialize() 90 new ScriptCompiler::CachedData(cached_data->data(), cached_data->length(), in Serialize() 91 ScriptCompiler::CachedData::BufferOwned); in Serialize()
|
H A D | code-serializer.h | 75 V8_EXPORT_PRIVATE static ScriptCompiler::CachedData* Serialize(
|
/third_party/skia/tests/ |
H A D | CachedDataTest.cpp | 81 DEF_TEST(CachedData, reporter) { in DEF_TEST()
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8.h | 772 static ScriptCompiler::CachedData* LookupCodeCache(Isolate* isolate, 775 const ScriptCompiler::CachedData* data); 783 static std::map<std::string, std::unique_ptr<ScriptCompiler::CachedData>>
|
H A D | d8.cc | 477 std::map<std::string, std::unique_ptr<ScriptCompiler::CachedData>> 488 ScriptCompiler::CachedData* Shell::LookupCodeCache(Isolate* isolate, in LookupCodeCache() 499 ScriptCompiler::CachedData* cached_data = new ScriptCompiler::CachedData( in LookupCodeCache() 500 cache, length, ScriptCompiler::CachedData::BufferOwned); in LookupCodeCache() 507 const ScriptCompiler::CachedData* cache_data) { in StoreInCodeCache() 516 cached_code_map_[*key] = std::unique_ptr<ScriptCompiler::CachedData>( in StoreInCodeCache() 517 new ScriptCompiler::CachedData(cache, length, in StoreInCodeCache() 518 ScriptCompiler::CachedData::BufferOwned)); in StoreInCodeCache() 638 ScriptCompiler::CachedData* cached_cod in CompileString() [all...] |
/third_party/node/deps/v8/src/codegen/ |
H A D | compiler.h | 596 std::unique_ptr<ScriptCompiler::CachedData> data);
|
H A D | compiler.cc | 1842 Isolate* isolate, std::unique_ptr<ScriptCompiler::CachedData> cached_data) in BackgroundDeserializeTask() 1847 if (cached_data->buffer_policy == ScriptCompiler::CachedData::BufferOwned && in BackgroundDeserializeTask() 1849 cached_data->buffer_policy = ScriptCompiler::CachedData::BufferNotOwned; in BackgroundDeserializeTask()
|
/third_party/node/deps/v8/src/execution/arm/ |
H A D | simulator-arm.h | 50 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function in v8::internal::CachePage
|
H A D | simulator-arm.cc | 665 char* cached_line = cache_page->CachedData(offset & ~CachePage::kLineMask); in CheckICache() 669 cache_page->CachedData(offset), kInstrSize)); in CheckICache()
|
/third_party/node/deps/v8/src/execution/ppc/ |
H A D | simulator-ppc.h | 51 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function in v8::internal::CachePage
|
/third_party/node/deps/v8/src/execution/loong64/ |
H A D | simulator-loong64.h | 68 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function in v8::internal::CachePage
|
H A D | simulator-loong64.cc | 818 char* cached_line = cache_page->CachedData(offset & ~CachePage::kLineMask); in CheckICache() 822 cache_page->CachedData(offset), kInstrSize)); in CheckICache()
|
/third_party/node/deps/v8/src/execution/mips64/ |
H A D | simulator-mips64.h | 69 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function in v8::internal::CachePage
|
/third_party/node/deps/v8/src/execution/mips/ |
H A D | simulator-mips.h | 69 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function in v8::internal::CachePage
|
/third_party/node/deps/v8/src/execution/riscv64/ |
H A D | simulator-riscv64.h | 184 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function in v8::internal::CachePage
|
/third_party/node/deps/v8/src/execution/s390/ |
H A D | simulator-s390.h | 48 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function in v8::internal::CachePage
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 2000 ScriptCompiler::CachedData::CachedData(const uint8_t* data_, int length_, in CachedData() function in v8::ScriptCompiler::CachedData 2007 ScriptCompiler::CachedData::~CachedData() { in ~CachedData() 2723 Isolate* v8_isolate, std::unique_ptr<CachedData> cached_data) { in StartConsumingCodeCache() 2793 ScriptCompiler::CachedData* ScriptCompiler::CreateCodeCache( in CreateCodeCache() 2804 ScriptCompiler::CachedData* ScriptCompiler::CreateCodeCache( in CreateCodeCache() 2814 ScriptCompiler::CachedData* ScriptCompiler::CreateCodeCacheForFunction( in CreateCodeCacheForFunction()
|