What we eval in the shadows: a large-scale study of eval in R programs
What we eval in the shadows: a large-scale study of eval in R programs
复制标题
DOI:
10.1145/3485502
复制
发表时间:
2021-10
影响因子:
--
通讯作者:
Aviral Goel;P. Donat-Bouillud;Filip Krikava;C. Kirsch;J. Vitek
中科院分区:
文献类型:
--
作者:
Aviral Goel;P. Donat-Bouillud;Filip Krikava;C. Kirsch;J. Vitek
Most dynamic languages allow users to turn text into code using various functions, often named eval, with language-dependent semantics. The widespread use of these reflective functions hinders static analysis and prevents compilers from performing optimizations. This paper aims to provide a better sense of why programmers use eval. Understanding why eval is used in practice is key to finding ways to mitigate its negative impact. We have reasons to believe that reflective feature usage is language and application domain-specific; we focus on data science code written in R and compare our results to previous work that analyzed web programming in JavaScript. We analyze 49,296,059 calls to eval from 240,327 scripts extracted from 15,401 R packages. We find that eval is indeed in widespread use; R’s eval is more pervasive and arguably dangerous than what was previously reported for JavaScript.