Home
last modified time | relevance | path

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

/external/v8/src/objects/
Dmodule-info.h40 inline FixedArray* regular_exports() const { in regular_exports() function
63 return regular_exports() == other->regular_exports() && in Equals()
Dscope-info.cc886 Handle<FixedArray> regular_exports = in New() local
904 result->set(kRegularExportsIndex, *regular_exports); in New()
911 DCHECK_EQ(regular_exports()->length() % kRegularExportLength, 0); in RegularExportCount()
912 return regular_exports()->length() / kRegularExportLength; in RegularExportCount()
916 return String::cast(regular_exports()->get(i * kRegularExportLength + in RegularExportLocalName()
921 return Smi::cast(regular_exports()->get(i * kRegularExportLength + in RegularExportCellIndex()
927 return FixedArray::cast(regular_exports()->get( in RegularExportExportNames()
/external/v8/src/ast/
Dmodules.h139 const ZoneMultimap<const AstRawString*, Entry*>& regular_exports() const { in regular_exports() function
Dscopes.cc2186 for (const auto& it : module()->regular_exports()) { in AllocateModuleVariables()
/external/v8/src/interpreter/
Dinterpreter.cc1005 Node* regular_exports = in DoLdaModuleVariable() local
1009 Node* cell = __ LoadFixedArrayElement(regular_exports, export_index); in DoLdaModuleVariable()
1048 Node* regular_exports = in DoStaModuleVariable() local
1052 Node* cell = __ LoadFixedArrayElement(regular_exports, export_index); in DoStaModuleVariable()
/external/v8/src/
Dfactory.cc1925 Handle<FixedArray> regular_exports = in NewModule() local
1937 module->set_regular_exports(*regular_exports); in NewModule()
Dobjects.cc19665 module->regular_exports()->set(ExportIndex(cell_index), *cell); in CreateExport()
19685 object = handle(module->regular_exports()->get(ExportIndex(cell_index)), in LoadVariable()
19700 Handle<Object> object(module->regular_exports()->get(ExportIndex(cell_index)), in StoreVariable()
Dobjects-inl.h5626 ACCESSORS(Module, regular_exports, FixedArray, kRegularExportsOffset) in ACCESSORS()
Dobjects.h7780 DECL_ACCESSORS(regular_exports, FixedArray)