English

SWIM: Synthesizing What I Mean

Software Engineering 2016-02-16 v2

Abstract

Modern programming frameworks come with large libraries, with diverse applications such as for matching regular expressions, parsing XML files and sending email. Programmers often use search engines such as Google and Bing to learn about existing APIs. In this paper, we describe SWIM, a tool which suggests code snippets given API-related natural language queries such as "generate md5 hash code". We translate user queries into the APIs of interest using clickthrough data from the Bing search engine. Then, based on patterns learned from open-source code repositories, we synthesize idiomatic code describing the use of these APIs. We introduce \emph{structured call sequences} to capture API-usage patterns. Structured call sequences are a generalized form of method call sequences, with if-branches and while-loops to represent conditional and repeated API usage patterns, and are simple to extract and amenable to synthesis. We evaluated SWIM with 30 common C# API-related queries received by Bing. For 70% of the queries, the first suggested snippet was a relevant solution, and a relevant solution was present in the top 10 results for all benchmarked queries. The online portion of the workflow is also very responsive, at an average of 1.5 seconds per snippet.

Keywords

Cite

@article{arxiv.1511.08497,
  title  = {SWIM: Synthesizing What I Mean},
  author = {Mukund Raghothaman and Yi Wei and Youssef Hamadi},
  journal= {arXiv preprint arXiv:1511.08497},
  year   = {2016}
}

Comments

Final draft of paper to be presented at ICSE 2016

R2 v1 2026-06-22T11:55:10.670Z