Home
last modified time | relevance | path

Searched refs:regular_exports (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/ast/
Dscopeinfo.cc914 Handle<FixedArray> regular_exports = in New() local
932 result->set(kRegularExportsIndex, *regular_exports); in New()
939 DCHECK_EQ(regular_exports()->length() % kRegularExportLength, 0); in RegularExportCount()
940 return regular_exports()->length() / kRegularExportLength; in RegularExportCount()
944 return String::cast(regular_exports()->get(i * kRegularExportLength + in RegularExportLocalName()
949 return Smi::cast(regular_exports()->get(i * kRegularExportLength + in RegularExportCellIndex()
955 return FixedArray::cast(regular_exports()->get( in RegularExportExportNames()
Dmodules.h139 const ZoneMultimap<const AstRawString*, Entry*>& regular_exports() const { in regular_exports() function
Dscopes.cc1961 for (const auto& it : module()->regular_exports()) { in AllocateModuleVariables()
/external/v8/src/interpreter/
Dinterpreter.cc857 Node* regular_exports = in DoLdaModuleVariable() local
861 Node* cell = __ LoadFixedArrayElement(regular_exports, export_index); in DoLdaModuleVariable()
900 Node* regular_exports = in DoStaModuleVariable() local
904 Node* cell = __ LoadFixedArrayElement(regular_exports, export_index); in DoStaModuleVariable()
/external/v8/src/
Dfactory.cc1829 Handle<FixedArray> regular_exports = in NewModule() local
1841 module->set_regular_exports(*regular_exports); in NewModule()
Dobjects-inl.h5795 ACCESSORS(Module, regular_exports, FixedArray, kRegularExportsOffset) in ACCESSORS()
8084 FixedArray* ModuleInfo::regular_exports() const { in regular_exports() function
8098 return regular_exports() == other->regular_exports() && in Equals()
Dobjects.h8164 inline FixedArray* regular_exports() const;
8242 DECL_ACCESSORS(regular_exports, FixedArray)
Dobjects.cc19908 module->regular_exports()->set(ExportIndex(cell_index), *cell); in CreateExport()
19928 object = handle(module->regular_exports()->get(ExportIndex(cell_index)), in LoadVariable()
19943 Handle<Object> object(module->regular_exports()->get(ExportIndex(cell_index)), in StoreVariable()