Inline function expansion for compiling C programs

  • Authors:
  • P. P. Chang;W.-W. Hwu

  • Affiliations:
  • Coordinated Science Laboratory, University of Illinois, 1101 W. Springfield Ave., Urbana, IL;Coordinated Science Laboratory, University of Illinois, 1101 W. Springfield Ave., Urbana, IL

  • Venue:
  • PLDI '89 Proceedings of the ACM SIGPLAN 1989 Conference on Programming language design and implementation
  • Year:
  • 1989

Quantified Score

Hi-index 0.01

Visualization

Abstract

Inline function expansion replaces a function call with the function body. With automatic inline function expansion, programs can be constructed with many small functions to handle complexity and then rely on the compilation to eliminate most of the function calls. Therefore, inline expansion serves a tool for satisfying two conflicting goals: minizing the complexity of the program development and minimizing the function call overhead of program execution. A simple inline expansion procedure is presented which uses profile information to address three critical issues: code expansion, stack expansion, and unavailable function bodies. Experiments show that a large percentage of function calls/returns (about 59%) can be eliminated with a modest code expansion cost (about 17%) for twelve UNIX* programs.