Searched refs:module_array (Results 1 – 3 of 3) sorted by relevance
68 auto module_array = panda::pandasm::LiteralArray(std::move(literal_vec)); in FillProgramData() local70 std::move(module_array)); in FillProgramData()
146 void Serialize(const std::string &module_offset, const std::vector<std::string> &module_array,191 std::string SerializeModuleLiteralArray(const std::vector<std::string> &module_array) const;
717 for (auto &module_array : modulearray_table_) { in GetModuleLiterals() local718 for (auto &module : module_array.second) { in GetModuleLiterals()1403 …ssembler::Serialize(const std::string &module_offset, const std::vector<std::string> &module_array, in Serialize() argument1407 os << SerializeModuleLiteralArray(module_array); in Serialize()1411 std::string Disassembler::SerializeModuleLiteralArray(const std::vector<std::string> &module_array)… in SerializeModuleLiteralArray()1413 if (module_array.empty()) { in SerializeModuleLiteralArray()1419 …ss << (module_array.size() - 1); // Only needs to show the count of module tag, exclude module req… in SerializeModuleLiteralArray()1421 for (size_t index = 0; index < module_array.size(); index++) { in SerializeModuleLiteralArray()1422 ss << module_array[index] << ";\n"; in SerializeModuleLiteralArray()