Exploring and Unleashing the Power of Large Language Models in Automated Code Translation
Zhen Yang, Fang Liu, Zhongxing Yu, Jacky Wai Keung, Jia Li, Shuo Liu, Yifan Hong, Xiaoxue Ma, Zhi Jin, Ge Li
TL;DR
The paper addresses the challenge of translating code between programming languages by leveraging large language models (LLMs) and addressing practical gaps in accuracy and deployment cost. It conducts an empirical comparison between recent LLMs and state-of-the-art learning-based transpilers, finds that LLMs offer strong translation capabilities but suffer from comprehension and cross-language discrepancy issues. Motivated by these findings, it proposes UniTrans, a three-phase framework that generates auto-generated test cases, augments translations with those tests, and iteratively repairs failing translations using execution feedback. Through extensive experiments across Python, Java, and C++ with six dataset settings and multiple LLMs, UniTrans yields substantial improvements and demonstrates the value of test-driven augmentation and repair for code translation. The framework is open-sourced, highlighting its practical utility for codebase migration and providing a foundation for further research on prompt-based program refinement without re-training.
Abstract
Code translation tools (transpilers) are developed for automatic source-to-source translation. Although learning-based transpilers have shown impressive enhancement against rule-based counterparts, owing to their task-specific pre-training on extensive monolingual corpora. Their current performance still remains unsatisfactory for practical deployment, and the associated training resources are also prohibitively expensive. LLMs pre-trained on huge amounts of human-written code/text have shown remarkable performance in many code intelligence tasks due to their powerful generality, even without task-specific training. Thus, LLMs can potentially circumvent the above limitations, but they have not been exhaustively explored yet. This paper investigates diverse LLMs and learning-based transpilers for automated code translation tasks, finding that: although certain LLMs have outperformed current transpilers, they still have some accuracy issues, where most of the failures are induced by a lack of comprehension of source programs, missing clear instructions on I/O types in translation, and ignoring discrepancies between source and target programs. Enlightened by the above findings, we further propose UniTrans, a Unified code Translation framework, applicable to various LLMs, for unleashing their power in this field. Specifically, UniTrans first crafts a series of test cases for target programs with the assistance of source programs. Next, it harnesses the above auto-generated test cases to augment the code translation and then evaluate their correctness via execution. Afterward, UniTrans further (iteratively) repairs incorrectly translated programs prompted by test case execution results. Extensive experiments are conducted on six settings of translation datasets between Python, Java, and C++. Three recent LLMs of diverse sizes are tested with UniTrans, and all achieve substantial improvements.
