Lines Matching refs:function_table
659 for (const auto &f : program_.function_table) { in ParseResetFunctionLabelsAndParams()
671 curr_func_ = &(program_.function_table.at(t.first)); in ParseResetFunctionLabelsAndParams()
695 for (auto &k : program_.function_table) { in ParseResetFunctionTable()
726 …if (insn_it->OperandListLength() - diff < program_.function_table.at(insn_it->ids[0]).GetParamsNum… in ParseResetFunctionTable()
979 for (auto &func : program_.function_table) { in ParseAfterMainLoop()
1301 AddObjectInTable(false, program_.function_table); in ParseOperandCall()
1323 program_.function_table.erase(p); in ParseOperandCall()
1327 if (program_.function_table.find(curr_ins_->ids.back()) == program_.function_table.end()) { in ParseOperandCall()
1328 auto node_handle = program_.function_table.extract(p); in ParseOperandCall()
1330 program_.function_table.insert(std::move(node_handle)); in ParseOperandCall()
1332 program_.function_table.erase(p); in ParseOperandCall()
1914 auto iter = program_.function_table.find(signature); in UpdateFunctionName()
1916 if (iter == program_.function_table.end() || !iter->second.file_location->is_defined) { in UpdateFunctionName()
1918 program_.function_table.erase(signature); in UpdateFunctionName()
1919 auto node_handle = program_.function_table.extract(curr_func_->name); in UpdateFunctionName()
1921 program_.function_table.insert(std::move(node_handle)); in UpdateFunctionName()
2038 AddObjectInTable(true, program_.function_table); in SetFunctionInformation()
2039 curr_func_ = &(program_.function_table.at(p)); in SetFunctionInformation()