Lines Matching refs:function_table
658 for (const auto &f : program_.function_table) { in ParseResetFunctionLabelsAndParams()
670 curr_func_ = &(program_.function_table.at(t.first)); in ParseResetFunctionLabelsAndParams()
694 for (auto &k : program_.function_table) { in ParseResetFunctionTable()
725 …if (insn_it->OperandListLength() - diff < program_.function_table.at(insn_it->ids[0]).GetParamsNum… in ParseResetFunctionTable()
978 for (auto &func : program_.function_table) { in ParseAfterMainLoop()
1296 AddObjectInTable(false, program_.function_table); in ParseOperandCall()
1318 program_.function_table.erase(p); in ParseOperandCall()
1322 if (program_.function_table.find(curr_ins_->ids.back()) == program_.function_table.end()) { in ParseOperandCall()
1323 auto node_handle = program_.function_table.extract(p); in ParseOperandCall()
1325 program_.function_table.insert(std::move(node_handle)); in ParseOperandCall()
1327 program_.function_table.erase(p); in ParseOperandCall()
1908 auto iter = program_.function_table.find(signature); in UpdateFunctionName()
1909 if (iter == program_.function_table.end() || !iter->second.file_location->is_defined) { in UpdateFunctionName()
1911 program_.function_table.erase(signature); in UpdateFunctionName()
1912 auto node_handle = program_.function_table.extract(curr_func_->name); in UpdateFunctionName()
1914 program_.function_table.insert(std::move(node_handle)); in UpdateFunctionName()
2030 AddObjectInTable(true, program_.function_table); in SetFunctionInformation()
2031 curr_func_ = &(program_.function_table.at(p)); in SetFunctionInformation()