/third_party/node/deps/v8/include/ |
D | v8-script.h | 344 struct V8_EXPORT CachedData { struct 347 CachedData() in CachedData() argument 357 CachedData(const uint8_t* data, int length, 359 ~CachedData(); 368 CachedData(const CachedData&) = delete; argument 369 CachedData& operator=(const CachedData&) = delete; argument 380 CachedData* cached_data = nullptr, 384 Local<String> source_string, CachedData* cached_data = nullptr, 391 V8_INLINE const CachedData* GetCachedData() const; 411 std::unique_ptr<CachedData> cached_data; [all …]
|
/third_party/node/src/ |
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()
|
D | node_builtins.h | 31 std::unique_ptr<v8::ScriptCompiler::CachedData>>; 102 const v8::ScriptCompiler::CachedData* GetCodeCache(const char* id) const;
|
D | node_contextify.cc | 830 ScriptCompiler::CachedData* cached_data = nullptr; in New() 833 cached_data = new ScriptCompiler::CachedData( in New() 883 std::unique_ptr<ScriptCompiler::CachedData> new_cached_data; in New() 920 std::unique_ptr<ScriptCompiler::CachedData> new_cached_data) { in StoreCodeCacheResult() 971 std::unique_ptr<ScriptCompiler::CachedData> cached_data( in CreateCachedData() 1202 ScriptCompiler::CachedData* cached_data = nullptr; in CompileFunction() 1205 cached_data = new ScriptCompiler::CachedData( in CompileFunction() 1293 std::unique_ptr<ScriptCompiler::CachedData> new_cached_data; in CompileFunction()
|
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()
|
D | node_contextify.h | 189 std::unique_ptr<v8::ScriptCompiler::CachedData> new_cached_data);
|
D | js_native_api_v8.cc | 1513 v8::ScriptCompiler::CachedData* cache = cachedData in OH_JSVM_CompileScript() 1514 ? new v8::ScriptCompiler::CachedData(cachedData, cachedDataLength) : nullptr; in OH_JSVM_CompileScript() 1608 v8::ScriptCompiler::CachedData* cache = cachedData in OH_JSVM_CompileScriptWithOrigin() 1609 ? new v8::ScriptCompiler::CachedData(cachedData, cachedDataLength) : nullptr; in OH_JSVM_CompileScriptWithOrigin() 1634 v8::ScriptCompiler::CachedData* cache; in OH_JSVM_CreateCodeCache() 1644 cache->buffer_policy = v8::ScriptCompiler::CachedData::BufferNotOwned; in OH_JSVM_CreateCodeCache()
|
/third_party/node/deps/v8/src/snapshot/ |
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()
|
D | code-serializer.h | 75 V8_EXPORT_PRIVATE static ScriptCompiler::CachedData* Serialize(
|
/third_party/skia/tests/ |
D | CachedDataTest.cpp | 81 DEF_TEST(CachedData, reporter) { in DEF_TEST() argument
|
/third_party/node/deps/v8/src/d8/ |
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>>
|
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_code = nullptr; in CompileString() 759 ScriptCompiler::CachedData* cached_data = in ExecuteString() [all …]
|
/third_party/node/deps/v8/src/execution/ppc/ |
D | simulator-ppc.h | 51 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function
|
D | simulator-ppc.cc | 720 char* cached_line = cache_page->CachedData(offset & ~CachePage::kLineMask); in CheckICache() 724 cache_page->CachedData(offset), kInstrSize)); in CheckICache()
|
/third_party/node/deps/v8/src/execution/arm/ |
D | simulator-arm.h | 50 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function
|
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/codegen/ |
D | compiler.h | 596 std::unique_ptr<ScriptCompiler::CachedData> data);
|
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/mips/ |
D | simulator-mips.h | 69 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function
|
/third_party/node/deps/v8/src/execution/loong64/ |
D | simulator-loong64.h | 68 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function
|
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/ |
D | simulator-mips64.h | 69 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function
|
/third_party/node/deps/v8/src/execution/riscv64/ |
D | simulator-riscv64.h | 184 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function
|
/third_party/node/deps/v8/src/execution/s390/ |
D | simulator-s390.h | 48 char* CachedData(int offset) { return &data_[offset]; } in CachedData() function
|
/third_party/node/deps/v8/src/api/ |
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()
|