Home
last modified time | relevance | path

Searched refs:PreParsedScopeData (Results 1 – 14 of 14) sorted by relevance

/dports/www/node10/node-v10.24.1/deps/v8/src/parsing/
H A Dpreparsed-scope-data.h25 class PreParsedScopeData; variable
97 ProducedPreParsedScopeData(Handle<PreParsedScopeData> data, Zone* zone);
153 MaybeHandle<PreParsedScopeData> Serialize(Isolate* isolate);
178 Handle<PreParsedScopeData> previously_produced_preparsed_scope_data_;
228 void SetData(Handle<PreParsedScopeData> data);
246 Handle<PreParsedScopeData> data_;
H A Dpreparsed-scope-data.cc176 Handle<PreParsedScopeData> data, Zone* zone) in ProducedPreParsedScopeData()
277 MaybeHandle<PreParsedScopeData> ProducedPreParsedScopeData::Serialize( in Serialize()
285 return MaybeHandle<PreParsedScopeData>(); in Serialize()
292 return MaybeHandle<PreParsedScopeData>(); in Serialize()
295 Handle<PreParsedScopeData> data = isolate->factory()->NewPreParsedScopeData(); in Serialize()
308 MaybeHandle<PreParsedScopeData> maybe_child_data = in Serialize()
313 Handle<PreParsedScopeData> child_data = in Serialize()
488 void ConsumedPreParsedScopeData::SetData(Handle<PreParsedScopeData> data) { in SetData()
531 Handle<PreParsedScopeData> child_data_handle( in GetDataForSkippableFunction()
532 PreParsedScopeData::cast(child_data)); in GetDataForSkippableFunction()
H A Dparser.h32 class PreParsedScopeData; variable
/dports/www/node10/node-v10.24.1/deps/v8/src/objects/
H A Dshared-function-info.h23 class PreParsedScopeData : public Struct {
32 DECL_CAST(PreParsedScopeData)
33 DECL_PRINTER(PreParsedScopeData)
34 DECL_VERIFIER(PreParsedScopeData)
37 DISALLOW_IMPLICIT_CONSTRUCTORS(PreParsedScopeData);
196 inline PreParsedScopeData* preparsed_scope_data() const;
197 inline void set_preparsed_scope_data(PreParsedScopeData* data);
H A Dshared-function-info-inl.h20 CAST_ACCESSOR(PreParsedScopeData)
21 ACCESSORS(PreParsedScopeData, scope_data, PodArray<uint8_t>, kScopeDataOffset) in ACCESSORS() argument
22 ACCESSORS(PreParsedScopeData, child_data, FixedArray, kChildDataOffset) in ACCESSORS()
502 PreParsedScopeData* SharedFunctionInfo::preparsed_scope_data() const { in preparsed_scope_data()
504 return PreParsedScopeData::cast(function_data()); in preparsed_scope_data()
508 PreParsedScopeData* preparsed_scope_data) { in set_preparsed_scope_data()
/dports/www/node10/node-v10.24.1/deps/v8/src/heap/
H A Dfactory.h47 class PreParsedScopeData; variable
713 Handle<PreParsedScopeData> NewPreParsedScopeData();
H A Dfactory.cc2430 Handle<PreParsedScopeData> Factory::NewPreParsedScopeData() { in NewPreParsedScopeData()
2431 Handle<PreParsedScopeData> result = in NewPreParsedScopeData()
2432 Handle<PreParsedScopeData>::cast(NewStruct(TUPLE2_TYPE, TENURED)); in NewPreParsedScopeData()
/dports/www/node10/node-v10.24.1/deps/v8/src/ast/
H A Dscopes.h23 class PreParsedScopeData; variable
/dports/www/node10/node-v10.24.1/deps/v8/src/
H A Dcompiler.cc1094 Handle<PreParsedScopeData> data( in Compile()
1095 PreParsedScopeData::cast(shared_info->preparsed_scope_data())); in Compile()
H A Dobjects-debug.cc1786 void PreParsedScopeData::PreParsedScopeDataVerify() { in PreParsedScopeDataVerify()
H A Dobjects-printer.cc2054 void PreParsedScopeData::PreParsedScopeDataPrint(std::ostream& os) { // NOLINT in PreParsedScopeDataPrint()
H A Dobjects-inl.h116 TYPE_CHECKER(PreParsedScopeData, TUPLE2_TYPE) in TYPE_CHECKER()
H A Dobjects.h1144 V(PreParsedScopeData) \
H A Dobjects.cc13937 MaybeHandle<PreParsedScopeData> maybe_data = in InitFromFunctionLiteral()
13940 Handle<PreParsedScopeData> data = maybe_data.ToHandleChecked(); in InitFromFunctionLiteral()