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;
721 for (auto &module_array : modulearray_table_) { in GetModuleLiterals() local722 for (auto &module : module_array.second) { in GetModuleLiterals()1407 …ssembler::Serialize(const std::string &module_offset, const std::vector<std::string> &module_array, in Serialize() argument1411 os << SerializeModuleLiteralArray(module_array); in Serialize()1415 std::string Disassembler::SerializeModuleLiteralArray(const std::vector<std::string> &module_array)… in SerializeModuleLiteralArray()1417 if (module_array.empty()) { in SerializeModuleLiteralArray()1423 …ss << (module_array.size() - 1); // Only needs to show the count of module tag, exclude module req… in SerializeModuleLiteralArray()1425 for (size_t index = 0; index < module_array.size(); index++) { in SerializeModuleLiteralArray()1426 ss << module_array[index] << ";\n"; in SerializeModuleLiteralArray()