REVIEW 4 major objections 6 minor 1 cited by
Scalable, Validated Code Translation of Entire Projects using Large Language Models
T0 review · 4 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read This paper claims that LLM translation scales to whole projects when fragments are translated in dependency order, guided by feature-mapping rules and signature-level type-compatibility checks.
desk verdict A real advance in whole-project LLM translation with a clear architecture, but the 73% validation rate is uninterpretable without knowing how many functions are mocks. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The carrying mechanism is a post-order traversal over a dependency graph of code fragments, where each fragment must pass feature-mapping checks and a type-compatibility check before the next fragment is translated. Feature-mapping rules are triples: a syntactic pattern that detects when a rule applies, a natural-language instruction given to the LLM, and static checks that the generated code uses the expected Rust construct. Type-compatibility is checked by serializing execution-snapshot values to JSON and requiring lossless round-trips through the target type, with function signatures checked the same way. This makes errors detectable at the place they are introduced, before they contaminate downstream fragments.
What would settle it
Take a function the pipeline reports as I/O-equivalent and run it on inputs outside the collected test-suite snapshots, for example randomly generated values of the same types or mutations of recorded inputs, then compare Go and Rust outputs; a divergence on any such input would show the validation is restricted to covered behavior rather than full equivalence.
Extended reading notes
Core claim
The central claim is that the two obstacles to scaling LLM translation—unreliable mappings of source-language features and errors that cascade through interdependent fragments—can be handled by combining a small set of human-written translation rules with signature-level type-compatibility checks. The paper defines type-compatibility through execution snapshots: feasible values of a Go type are those observed when the project's own unit tests run, and a Rust type is compatible if each such value can be serialized to JSON, deserialized into the Rust type, serialized back, and deserialized into the original Go value unchanged. On top of this, feature-mapping rules tell the LLM how to render specific Go constructs such as global initialization, error returns, and structural interfaces in Rust, and the rules are enforced by static checks on the generated code. After a type-driven phase produces a compiling, type-compatible project, a semantics-driven phase checks each function for I/O equivalence on the same snapshots, mocking callees so failures are local. The reported outcome is that almost all source lines compile and, on average, 73% of functions are I/O-equivalent, with every failing test an assertion failure rather than a crash.
Load-bearing premise
The argument treats the input-output examples captured by the project's unit tests as defining the feasible values for type-compatibility and the universe for I/O equivalence; if those examples miss important inputs, a function counted as equivalent can still be wrong.
Editorial extensions
If this is right
- Whole-repository translation becomes a viable strategy: the largest case has 6,600 lines and 369 functions, far beyond the roughly 100-line ceiling reported for direct LLM translation.
- Because type-compatibility is checked before semantics, translation can proceed even when a function cannot be made to compile: it is mocked by calling the original Go function through a boundary, so the rest of the project is not blocked.
- The same pipeline yields a regression test suite for the translated code, since every I/O-equivalent function has concrete input-output examples that can be replayed as Rust unit tests.
- Failing unit tests in the translated projects are assertion failures rather than crashes, which lets the pipeline attribute each failure to a specific function and keep repairs local.
- The approach is described as agnostic to the language pair, so the feature-mapping and type-compatibility machinery could be instantiated for other source and target languages, not only Go-to-Rust.
Reading between the lines
- One implication the paper leaves implicit is that the equivalence rate is measured only on snapshots from the original test suite, so the 73% figure should be read as validated on covered behavior; the paper itself counts uncovered functions as automatically failing, and statement coverage ranges from 43.2% to 100%.
- A natural strengthening would be to add differential fuzzing after the pipeline: the same JSON round-trip harness used for type-compatibility could feed random or mutated inputs to both versions, turning validation from example-based into property-based.
- Because the tool logs LLM inputs and outputs and supports replaying them, the pipeline is deterministic for a fixed log, which makes the evaluation reproducible and makes future LLM improvements directly comparable on the same benchmarks.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents Oxidizer, a tool for translating entire Go projects to Rust using LLMs. The approach partitions a project into fragments (functions, types, globals), orders them by a dependency graph, and translates each fragment with the help of (i) hand-written feature mapping rules that constrain the LLM's handling of Go/Rust language differences, and (ii) type-compatibility checks that compare function and type signatures against execution snapshots collected from the project's own unit tests. A second phase checks I/O equivalence on those snapshots and repairs failing functions while freezing signatures. The evaluation on seven open-source Go projects reports that, on average, 99% of the code compiles and 73% of functions are validated as I/O equivalent, with ablation experiments suggesting that feature mapping is essential for progress and that type-compatibility improves equivalence rates.
Significance. If the reported numbers are taken at face value, this is a strong result for whole-project LLM-based translation: it substantially exceeds the equivalence rates reported by parallel work and, unlike earlier snippet-level approaches, it scales to a 6.6K-line / 369-function project. The two proposed mechanisms, feature mapping and type-compatibility, are clearly described and the ablation supports their importance. The paper also ships concrete reproducibility aids: it logs LLM inputs and outputs and can replay translation runs deterministically, and the feature mapping rules are specified enough to be re-implemented. The main value is in showing that a hybrid of symbolic rules, type-level checks, and modular LLM translation can make whole-project translation practical. The evaluation is honest about the V-relative nature of the validation in the body of the paper, but the abstract and headline metrics are easy to over-read as semantic equivalence on all inputs, and the reported rates do not separate mocked functions from genuinely translated ones.
major comments (4)
- The I/O equivalence relation is defined 'with respect to V', where V is the set of input/output/error tuples collected by running the source project's unit tests, and the paper states that functions without collected examples receive an automatically failing unit test. Consequently, the headline '% Equivalent' is a pass rate on the project's own test-suite inputs, not a statement of semantic equivalence on all inputs. A function can be wrong on any input outside V and still be counted as validated. The abstract's phrase 'reliable Rust translations' is therefore stronger than what the validation establishes. Please either qualify the abstract and conclusion to state that validation is on test-suite-derived examples, or add a held-out evaluation (e.g., differential fuzzing or a second test set) to show that the 73% rate generalizes. In addition, Table 1's statement coverage ranges from 43.2% to 100%, so per-benchmark and per-function snapshot counts should be reported so the reader can see how many examples underpin each function's validation.
- The reported '% Compiled' and '% Equivalent' figures do not disclose how many functions in each benchmark ended up as mocks, i.e., functions whose bodies are replaced by a call to the original Go function through the Go-Rust boundary. A mocked function compiles by construction and is trivially I/O equivalent to the original, so including mocks in both metrics inflates the headline numbers and conflates 'translated and validated' with 'not actually translated'. The text admits that the output 'may have some function/method bodies replaced with mocks' (§7.1.1), but Table 2 gives no mock counts. Please report for each benchmark the number of functions that were mocked, and give the % Equivalent computed both including and excluding mocks. Without this breakdown, the central claim that 73% of functions were successfully translated and validated cannot be assessed.
- The I/O equivalence check for functions compares serialized return values and errors, but the definition overloads the output y' to be 'an extension of the actual output that accounts for possible side-effects'. The paper never specifies how side effects are collected in the execution snapshots or how they are compared between Go and Rust. If side effects (mutations to receiver fields, global variables, I/O, or other observable state) are not captured in the snapshots, then two functions that differ only in such state will be incorrectly reported as equivalent. Please provide the concrete collection mechanism for side effects, or explicitly state that the validity of the equivalence check is limited to return values and errors, and adjust the claims accordingly.
- The benchmark selection is restricted to projects that 'only make use of Go standard libraries', and the paper notes that third-party libraries were deliberately excluded from the evaluation. This limits the generalizability of the claim that Oxidizer translates 'real-world Go codebases': a substantial fraction of real Go projects depend on third-party packages, and the authors even acknowledge that their approach supports such dependencies (§5.1) but do not demonstrate it. Please state explicitly that the reported results are for a curated subset of Go projects without third-party dependencies, and discuss what additional validation would be needed to support the broader 'entire project' claim.
minor comments (6)
- The formal rule notation in Figures 7 and 10 is difficult to read because of rendering artifacts (e.g., 'D/uni∈1A6.endl→code' and the ⇓/↝ symbols appear corrupted in the PDF). Please re-set these judgments in clean LaTeX so the premises and conclusions are legible.
- The round-tripping property for JSON serialization is stated as an assumption, but some Go types (e.g., channels, function values, cyclic data structures, or fields with unexported components) are not naturally JSON-serializable. Please state which types are assumed to be serializable and how the presented benchmarks avoid these cases.
- The logging-and-replay mechanism is a strong reproducibility feature, but the paper does not point to a public artifact or repository. Please include an artifact URL or a clear statement of availability, along with the exact prompt templates and version of Claude 3 Sonnet used.
- The sentence 'in one case by 144%' is ambiguous: an increase from 29% to 71% can be described as a 144% relative improvement, but the reader may misread it as 144 percentage points. Please restate with the actual before/after numbers.
- The notation D_go(S_go(x)) is used to describe input conversion, but the serialization/deserialization functions S and D are introduced only in §5.2; a forward reference or a brief restatement would help the reader.
- The claim of being 'considerably higher than any existing work' is based on comparing reported numbers from parallel papers rather than running those tools on the same benchmarks. Please soften this to 'higher than previously reported' or add a direct comparison on a shared benchmark set.
Circularity Check
No significant circularity; the validation metric is explicitly test-suite-relative, which is a stated limitation, not a circular derivation.
full rationale
The paper's central quantitative claim ('an average of 73% of functions successfully validated for I/O equivalence', Abstract and §7.2/Table 2) is explicitly a pass rate on execution snapshots collected from the source project's unit tests. Section 7.1.1 states: 'A unit test passes if and only if all computed outputs match the expected outputs,' and Definition 5 defines I/O equivalence 'with respect to V', where V is the set of input/output/error tuples collected by running the unit tests. This makes the metric test-relative, and the paper itself acknowledges the consequence: functions not covered by unit tests are automatically marked as not equivalent, and Table 1 reports statement coverage as low as 43.2%. That is a limitation on generalization to untested inputs, not a circular derivation: the translated function's outputs are not forced to match by the definitions; the check is an independent empirical comparison over a specified finite set. Type-compatibility (Definition 1) also uses test-suite-derived feasible values, but it is a separate serialization-based check, and no parameter is fitted to the quantity being predicted. Feature-mapping rules are hand-authored external guidance (§4.1), not fitted outputs. The self-citations to prior work by overlapping authors ([15], [16]) support motivation and LLM choice, but they are not load-bearing for the validation result, and no uniqueness theorem or self-citation chain forces the reported outcome. Finding: no significant circularity.
Assumptions & free parameters
free parameters (4)
- requery_budget =
10
- max_tries_type_driven =
15
- max_tries_semantics =
5
- temperature =
0.2
assumptions (6)
- domain assumption Unit-test execution snapshots define the feasible value set V for type-compatibility (Section 5.2, Definition 1).
- domain assumption I/O equivalence with respect to collected snapshots is treated as validation of semantic correctness (Section 6, Definition 5; Section 7.1.1).
- domain assumption JSON serialization and deserialization round-trip faithfully represents Go and Rust values at the boundary (Section 5.2).
- ad hoc to paper Hand-written feature mapping rules cover all Go-to-Rust feature differences that matter (Section 4.1).
- domain assumption The chosen LLM, Claude 3 Sonnet, is representative of state-of-the-art LLMs (Section 7.1.2).
- domain assumption The simplified FeatherweightGo grammar is sufficient to model the real benchmark projects (Section 3).
Cite this review
Pith. "Pith review of Scalable, Validated Code Translation of Entire Projects using Large Language Models." pith.science (2026). https://pith.science/paper/R4DZSVMT
@misc{pith2026241208035,
author = {Pith},
title = {Pith review of: Scalable, Validated Code Translation of Entire Projects using Large Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/R4DZSVMT}},
note = {Machine review of arXiv:2412.08035}
}
read the original abstract
Large language models (LLMs) show promise in code translation due to their ability to generate idiomatic code. However, a significant limitation when using LLMs for code translation is scalability: existing works have shown a drop in translation success rates for code exceeding around 100 lines. We overcome this limitation by developing a modular approach to translation, where we partition the code into small code fragments which can be translated independently and semantically validated (that is, checking I/O equivalence). When this approach is applied naively, we discover that LLMs are unreliable when translating features of the source language that do not have a direct mapping to the target language, and that the LLM often gets stuck in repair loops when attempting to fix errors. To address these issues, we introduce two key concepts: (1) feature mapping, which integrates predefined translation rules with LLM-based translation to guide the LLM in navigating subtle language differences and producing semantically accurate code; and (2) type-compatibility, which facilitates localized checks at the function signature level to detect errors early, thereby narrowing the scope of potential repairs. We apply our approach to translating real-world Go codebases to Rust, demonstrating that we can consistently generate reliable Rust translations for projects up to 6,600 lines of code and 369 functions, with an average of 73% of functions successfully validated for I/O equivalence, considerably higher than any existing work.
Figures
Figures from the paper (9 more)
Forward citations
Cited by 1 Pith paper
-
Syzygy: Dual Code-Test C to (safe) Rust Translation using LLMs and Dynamic Analysis
A dual code-and-test generation pipeline with dynamic-analysis specifications translates the 3,000-line Zopfli C library into safe Rust, though the top-level validation compares compression ratios rather than exact outputs.
Reference graph
Works this paper leans on
-
[1]
Modernization of legacy systems: A general ised roadmap,
S. Jain and I. Chana, “Modernization of legacy systems: A general ised roadmap, ” inInternational Conference on Com- puter and Communication Technology , ICCCT ’15, p. 62–67, ACM, 2015
work page 2015
-
[2]
How do professionals perceive legacy systems and software modernization?,
R. Khadka, B. V. Batlajery, A. M. Saeidi, S. Jansen, and J. Hage, “How do professionals perceive legacy systems and software modernization?, ” inInternational Conference on Software Engineering , ICSE 2014, p. 36–47, ACM, 2014
work page 2014
-
[3]
“Tools to build on A WS. ” https://aws.amazon.com/developer/tools/. Accessed: 2024-11-05
work page 2024
-
[4]
Cloud SDK: Libraries and command line interface
“Cloud SDK: Libraries and command line interface. ” https://cloud.google.com/sdk/. Accessed: 2024-11-05
work page 2024
-
[5]
“Download Azure SDKs and tools. ” https://azure.microsoft.com/en-us/downloads/. Accessed: 2024-11-05
work page 2024
-
[6]
Eliminating memory safety vulnerabilities once and for all (DARPA)
“Eliminating memory safety vulnerabilities once and for all (DARPA). ”https://www.darpa.mil/news-events/2024-07-31a
work page 2024
- [7]
-
[8]
Ownership guided C to Rust t ranslation,
H. Zhang, C. David, Y. Yu, and M. Wang, “Ownership guided C to Rust t ranslation, ” inComputer Aided Verification (CA V), vol. 13966 of LNCS, pp. 459–482, Springer, 2023
work page 2023
Show all 60 references
-
[9]
Explain-then-translate: an analysis on improving program translation with self-generated explanations,
Z. Tang, M. Agarwal, A. Shypula, B. Wang, D. Wijaya, J. Chen, and Y. Kim, “Explain-then-translate: an analysis on improving program translation with self-generated explanations, ” in Findings of the Association for Computational Linguistics: EMNLP 2023, pp. 1741–1788, Associat...
2023
-
[10]
Unsupe rvised translation of programming languages,
B. Rozière, M. Lachaux, L. Chanussot, and G. Lample, “Unsupe rvised translation of programming languages, ” in NeurIPS, 2020
2020
-
[11]
Leveraging automated unit tests for unsupervised code translation,
B. Rozière, J. Zhang, F. Charton, M. Harman, G. Synnaeve, and G. L ample, “Leveraging automated unit tests for unsupervised code translation, ” in ICLR, OpenReview.net, 2022
2022
-
[12]
Code translation with compiler representa- tions,
M. Szafraniec, B. Roziere, H. L. F. Charton, P. Labatut, and G. Synnaeve, “Code translation with compiler representa- tions, ”ICLR, 2023
2023
-
[13]
Rectifier: Code tr anslation with corrector via LLMs,
X. Yin, C. Ni, T. N. Nguyen, S. Wang, and X. Yang, “Rectifier: Code tr anslation with corrector via LLMs, ” CoRR, vol. abs/2407.07472, 2024
2024 arXiv
-
[14]
Lost in translation: A study of bugs introduced by large la nguage models while translating code,
R. Pan, A. R. Ibrahimzada, R. Krishna, D. Sankar, L. P. Wassi, M. Merler, B. Sobolev, R. Pavuluri, S. Sinha, and R. Jab- barvand, “Lost in translation: A study of bugs introduced by large la nguage models while translating code, ” 2024
2024
-
[15]
Towards translating real-world code with LLMs: A study of translating to Rust,
H. F. Eniser, H. Zhang, C. David, M. Wang, M. Christakis, B. Pauls en, J. Dodds, and D. Kroening, “Towards translating real-world code with LLMs: A study of translating to Rust, ” 2024
2024
-
[16]
VERT: Verified equivalent Rust transpilation with large language models as few-shot learners,
A. Z. H. Yang, Y. Takashima, B. Paulsen, J. Dodds, and D. Kroening , “VERT: Verified equivalent Rust transpilation with large language models as few-shot learners, ” 2024
2024
-
[17]
Repository-level compositional code translation and validation,
A. R. Ibrahimzada, K. Ke, M. Pawagi, M. S. Abid, R. Pan, S. Sinha, and R. Jabbarvand, “Repository-level compositional code translation and validation, ” 2024
2024
-
[18]
Context-aware code segmentatio n for C-to-Rust translation using large language models,
M. Shiraishi and T. Shinagawa, “Context-aware code segmentatio n for C-to-Rust translation using large language models, ” 2024
2024
-
[19]
Operational semantics for multi- language programs,
J. Matthews and R. B. Findler, “Operational semantics for multi- language programs, ” inProceedings of the 34th Annual ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages, POPL ’07, p. 3–10, ACM, 2007
2007
-
[20]
Moov ACH
“Moov ACH. ” https://github.com/moov-io/ach
-
[21]
Featherweight Go,
R. Griesemer, R. Hu, W. Kokke, J. Lange, I. L. Taylor, B. Toninh o, P. Wadler, and N. Yoshida, “Featherweight Go, ” 2020
2020
-
[22]
Anyhow
D. Tolnay, “Anyhow. ” https://github.com/dtolnay/anyhow, 2024. 22 Hanliang Zhang, Cristina David, Meng Wang, Brandon Pauls en, and Daniel Kroening
2024
-
[23]
RustAssistant: Using LLMs to fix compilation errors in Rust code,
P. Deligiannis, A. Lal, N. Mehrotra, R. Poddar, and A. Rastogi, “ RustAssistant: Using LLMs to fix compilation errors in Rust code, ” inInternational Conference on Software Engineering (ICSE) , pp. 267–279, IEEE, May 2025
2025
-
[24]
Claude
“Claude. ” https://www.anthropic.com/index/introducing-claude
-
[25]
GPT-4 technical report,
J. Achiam, S. Adler, S. Agarwal, L. Ahmad, I. Akkaya, F. L. Aleman, D. Almeida, J. Altenschmidt, S. Altman, S. Anadkat, et al., “GPT-4 technical report, ”arXiv preprint arXiv:2303.08774, 2023
2023 arXiv
-
[26]
Gemini
“Gemini. ” https://blog.google/technology/ai/google-gemini-ai/
-
[27]
String comparison and edit distance algorithms library
“String comparison and edit distance algorithms library. ” https://github.com/hbollon/go-edlib
-
[28]
Stats – Golang statistics package
“Stats – Golang statistics package. ” https://github.com/montanaflynn/stats
-
[29]
Textrank implementation in golang with extendable features (s ummarization, phrase extraction) and multithreading (goroutine)
“Textrank implementation in golang with extendable features (s ummarization, phrase extraction) and multithreading (goroutine).. ”https://github.com/DavidBelicza/TextRank/tree/master
-
[30]
Streaming approximate histograms in Go
“Streaming approximate histograms in Go. ” https://github.com/VividCortex/gohistogram
-
[31]
Takes a full name and splits it into individual name parts
“Takes a full name and splits it into individual name parts. ” https://github.com/polera/gonameparts
-
[32]
Provide check digit algorithms and calculators written in Go
“Provide check digit algorithms and calculators written in Go. ” https://github.com/osamingo/checkdigit
-
[33]
Transl ating C to safer Rust,
M. Emre, R. Schroeder, K. Dewey, and B. Hardekopf, “Transl ating C to safer Rust, ”Proceedings of the ACM on Program- ming Languages, vol. 5, no. OOPSLA, pp. 1–29, 2021
2021
-
[34]
C to Go translator
“C to Go translator. ” https://github.com/gotranspile/cxgo
-
[35]
Sharpen – automated Java->C# coversion
“Sharpen – automated Java->C# coversion. ” https://github.com/mono/sharpen
-
[36]
On the evaluatio n of neural code translation: Taxonomy and bench- mark,
M. Jiao, T. Yu, X. Li, G. Qiu, X. Gu, and B. Shen, “On the evaluatio n of neural code translation: Taxonomy and bench- mark, ” inAutomated Software Engineering (ASE), pp. 1529–1541, IEEE, Sept. 2023
2023
-
[37]
A ttention, compilation, and solver-based symbolic analysis are all you need,
P. Jana, P. Jha, H. Ju, G. Kishore, A. Mahajan, and V. Ganesh, “A ttention, compilation, and solver-based symbolic analysis are all you need, ” arXiv preprint arXiv:2306.06755, 2023
2023 arXiv
-
[38]
CodeFuse-13B: A pretrained multi-lingual code large language model,
P. Di, J. Li, H. Yu, W. Jiang, W. Cai, Y. Cao, C. Chen, D. Chen, H. Che n, L. Chen, G. Fan, J. Gong, Z. Gong, W. Hu, T. Guo, Z. Lei, T. Li, Z. Li, M. Liang, C. Liao, B. Liu, J. Liu, Z. Liu, S. Lu, M. Shen, G. Wang, H. Wang, Z. Wang, Z. Xu, J. Yang, Q. Ye, G. Zhang, Y. Zhang, Z...
2024
-
[39]
StructCoder: Structure -aware transformer for code generation,
S. Tipirneni, M. Zhu, and C. K. Reddy, “StructCoder: Structure -aware transformer for code generation, ” ACM Trans. Knowl. Discov. Data, vol. 18, Jan. 2024
2024
-
[40]
CodeTransOcean: A comp rehensive multilingual benchmark for code translation,
W. Yan, Y. Tian, Y. Li, Q. Chen, and W. Wang, “CodeTransOcean: A comp rehensive multilingual benchmark for code translation, ”arXiv preprint arXiv:2310.04951, 2023
2023 arXiv
-
[41]
CodeNet: A large-scale AI for code dataset for learning a divers ity of coding tasks,
R. Puri, D. S. Kung, G. Janssen, W. Zhang, G. Domeniconi, V. Zolotov , J. Dolby, J. Chen, M. Choudhury, L. Decker,et al., “CodeNet: A large-scale AI for code dataset for learning a divers ity of coding tasks, ” arXiv preprint arXiv:2105.12655, 2021
2021 arXiv
-
[42]
CodeXGLUE: A machine learning benchmark dataset for code understanding and generatio n,
S. Lu, D. Guo, S. Ren, J. Huang, A. Svyatkovskiy, A. Blanco, C. Clement, D. Drain, D. Jiang, D. Tang, G. Li, L. Zhou, L. Shou, L. Zhou, M. Tufano, M. GONG, M. Zhou, N. Duan, N. Sundaresan, S. K. Deng, S. Fu, and S. LIU, “CodeXGLUE: A machine learning benchmark dataset for code...
2021
-
[43]
A V ATAR: A parallel corpus for Java-Python program translation,
W. U. Ahmad, M. G. R. Tushar, S. Chakraborty, and K.-W. Chang, “A V ATAR: A parallel corpus for Java-Python program translation, ”arXiv preprint arXiv:2108.11590, 2021
2021 arXiv
-
[44]
Is your code generated b y ChatGPT really correct? Rigorous evaluation of large language models for code generation,
J. Liu, C. S. Xia, Y. Wang, and L. Zhang, “Is your code generated b y ChatGPT really correct? Rigorous evaluation of large language models for code generation, ” Advances in Neural Information Processing Systems , vol. 36, 2024
2024
-
[45]
Evaluating large language models trained on code,
M. Chen, J. Tworek, H. Jun, Q. Yuan, H. P. d. O. Pinto, J. Kaplan, H . Edwards, Y. Burda, N. Joseph, G. Brockman, et al., “Evaluating large language models trained on code, ” arXiv preprint arXiv:2107.03374, 2021
2021 arXiv
-
[46]
Multilingual code co-e volution using large language models,
J. Zhang, P. Nie, J. J. Li, and M. Gligoric, “Multilingual code co-e volution using large language models, ” inFoundations of Software Engineering, pp. 695–707, 2023
2023
-
[47]
Automated program repair in the era of large pre-trained language models,
C. S. Xia, Y. Wei, and L. Zhang, “Automated program repair in the era of large pre-trained language models, ” in ICSE, IEEE, 2023
2023
-
[48]
Contrastrep air: Enhancing conversation-based automated program repair via contrastive test case pairs,
J. Kong, M. Cheng, X. Xie, S. Liu, X. Du, and Q. Guo, “Contrastrep air: Enhancing conversation-based automated program repair via contrastive test case pairs, ” arXiv preprint arXiv:2403.01971, 2024
2024
-
[49]
Leve raging compiler intermediate representation for multi- and cross-language verification,
J. J. Garzella, M. Baranowski, S. He, and Z. Rakamarić, “Leve raging compiler intermediate representation for multi- and cross-language verification, ” in Verification, Model Checking, and Abstract Interpretation , pp. 90–111, Springer, 2020
2020
-
[50]
Semantic s oundness for language interoperability,
D. Patterson, N. Mushtak, A. Wagner, and A. Ahmed, “Semantic s oundness for language interoperability, ” inProgram- ming Language Design and Implementation , PLDI 2022, p. 609–624, ACM, 2022
2022
-
[51]
Translation validation,
A. Pnueli, M. Siegel, and E. Singerman, “Translation validation, ” in Tools and Algorithms for Construction and Analysis of Systems, vol. 1384 of LNCS, pp. 151–166, Springer, 1998. Scalable, Validated Code Translation of Entire Projects us ing Large Language Models 23
1998
-
[52]
Translation validation for an optimizing compiler ,
G. C. Necula, “Translation validation for an optimizing compiler , ” inProceedings of the ACM SIGPLAN 2000 conference on Programming language design and implementation , pp. 83–94, 2000
2000
-
[53]
HyDiff: Hybrid differential software analysis,
Y. Noller, C. S. Păsăreanu, M. Böhme, Y. Sun, H. L. Nguyen, and L. Grunske, “HyDiff: Hybrid differential software analysis, ” inInternational Conference on Software Engineering , pp. 1273–1285, 2020
2020
-
[54]
Regres sion tests to expose change interaction errors,
M. Böhme, B. C. d. S. Oliveira, and A. Roychoudhury, “Regres sion tests to expose change interaction errors, ” in Foun- dations of Software Engineering , pp. 334–344, 2013
2013
-
[55]
Shadow of a doubt: testing for divergences between software versions,
H. Palikareva, T. Kuchta, and C. Cadar, “Shadow of a doubt: testing for divergences between software versions, ” in Proceedings of the 38th International Conference on Softwa re Engineering, pp. 1181–1192, 2016
2016
-
[56]
Directed increme ntal symbolic execution,
S. Person, G. Yang, N. Rungta, and S. Khurshid, “Directed increme ntal symbolic execution, ” ACM Sigplan Notices , vol. 46, no. 6, pp. 504–515, 2011
2011
-
[57]
DLFuzz: Differentia l fuzzing testing of deep learning systems,
J. Guo, Y. Jiang, Y. Zhao, Q. Chen, and J. Sun, “DLFuzz: Differentia l fuzzing testing of deep learning systems, ” in European Software Engineering Conference and Symposium on the Foundations of Software Engineering , pp. 739–743, 2018
2018
-
[58]
Automated behavioral regression t esting,
W. Jin, A. Orso, and T. Xie, “Automated behavioral regression t esting, ” inInternational Conference on Software Testing, Verification and Validation, pp. 137–146, IEEE, 2010
2010
-
[59]
Diffuzz: different ial fuzzing for side-channel analysis,
S. Nilizadeh, Y. Noller, and C. S. Pasareanu, “Diffuzz: different ial fuzzing for side-channel analysis, ” in International Conference on Software Engineering (ICSE) , pp. 176–187, IEEE, 2019
2019
-
[60]
N ezha: Efficient domain-independent differential testing,
T. Petsios, A. Tang, S. Stolfo, A. D. Keromytis, and S. Jana, “N ezha: Efficient domain-independent differential testing, ” in 2017 IEEE Symposium on Security and Privacy (SP) , pp. 615–632, IEEE, 2017
2017
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.