Home
last modified time | relevance | path

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

/external/v8/src/objects/
Dmodule-inl.h22 ACCESSORS(Module, regular_exports, FixedArray, kRegularExportsOffset) in ACCESSORS()
62 FixedArray* ModuleInfo::regular_exports() const { in regular_exports() function
80 return regular_exports() == other->regular_exports() && in Equals()
Dscope-info.cc921 Handle<FixedArray> regular_exports = in New() local
939 result->set(kRegularExportsIndex, *regular_exports); in New()
947 DCHECK_EQ(regular_exports()->length() % kRegularExportLength, 0); in RegularExportCount()
948 return regular_exports()->length() / kRegularExportLength; in RegularExportCount()
952 return String::cast(regular_exports()->get(i * kRegularExportLength + in RegularExportLocalName()
957 return Smi::ToInt(regular_exports()->get(i * kRegularExportLength + in RegularExportCellIndex()
962 return FixedArray::cast(regular_exports()->get( in RegularExportExportNames()
Dmodule.h47 DECL_ACCESSORS(regular_exports, FixedArray)
264 inline FixedArray* regular_exports() const;
Dmodule.cc139 module->regular_exports()->set(ExportIndex(cell_index), *cell); in CreateExport()
158 cell = regular_exports()->get(ExportIndex(cell_index)); in GetCell()
233 Handle<FixedArray> regular_exports = in Reset() local
234 factory->NewFixedArray(module->regular_exports()->length()); in Reset()
248 module->set_regular_exports(*regular_exports); in Reset()
/external/v8/src/ast/
Dmodules.h158 const RegularExportMap& regular_exports() const { return regular_exports_; } in regular_exports() function
Dscopes.cc2291 for (const auto& it : module()->regular_exports()) { in AllocateModuleVariables()
/external/v8/src/interpreter/
Dinterpreter-generator.cc684 TNode<FixedArray> regular_exports = in IGNITION_HANDLER() local
688 Node* cell = LoadFixedArrayElement(regular_exports, export_index); in IGNITION_HANDLER()
726 TNode<FixedArray> regular_exports = in IGNITION_HANDLER() local
730 Node* cell = LoadFixedArrayElement(regular_exports, export_index); in IGNITION_HANDLER()
/external/v8/src/heap/
Dfactory.cc3023 Handle<FixedArray> regular_exports = in NewModule() local
3036 module->set_regular_exports(*regular_exports); in NewModule()