Method based technique of compilation with compilation server

  • Authors:
  • Mrudula Nimbarte;Smita Nagtode

  • Affiliations:
  • B. D. C. O. E. Sevagram, Wardha, M. S. - India;D.M.I.E.T.R. Sawangi(Meghe), Wardha, M.S. - India

  • Venue:
  • Proceedings of the 1st Amrita ACM-W Celebration on Women in Computing in India
  • Year:
  • 2010

Quantified Score

Hi-index 0.00

Visualization

Abstract

Compiler optimizations are difficult to implement and add complexity to a compiler. For this reason, compiler writers are selective about implementing them: they implement only the ones that they believe will be beneficial. Compilation Server (CS) is a server-assist mechanism to eliminate or reduce the compilation overhead. CS can compile and optimize code on behalf of clients. Broadly speaking, there are three interleaved steps in running java programs in a compiled environment: downloading the bytecodes, compiling and possibly optimizing the bytecodes, and running the compiled code. Optimized code typically runs faster than non-optimized code. We consider the possibility of moving compilation to a server. We demonstrate that there is a significant benefit to moving compilation to a server (i) lower execution time by reducing the overhead of optimization; (ii) lower memory management load on the client by reducing the footprint of the optimizing compiler.