Affiliation:
1. Uber Technologies, USA
2. University of California at Riverside, USA
Abstract
Swift, an increasingly-popular programming language, advocates the use of protocols, which define a set of required methods and properties for conforming types. Protocols are commonly used in Swift programs for abstracting away implementation details; e.g., in a large industrial app from Uber, they are heavily used to enable mock objects for unit testing. Unfortunately, heavy use of protocols can result in significant performance overhead. Beyond the dynamic dispatch often associated with such a feature, Swift allows for both value and reference types to conform to a protocol, leading to significant boxing and unboxing overheads.
In this paper, we describe three new optimizations and transformations to reduce the overhead of Swift protocols. Within a procedure, we define LocalVar, a dataflow analysis and transformation to remove both dynamic dispatch and boxing overheads. We also describe Param, which optimizes the case of protocol-typed method parameters using specialization. Finally, we describe SoleType, a transformation that injects casts when a global analysis (like type-hierarchy analysis) discovers some protocol variable must have some concrete type. We also describe how these optimizations work fruitfully together and with existing Swift optimizations to deliver further speedups.
We perform elaborate experimentation and demonstrate that our optimizations deliver an average 1.56x speedup on a suite of Swift benchmarks that use protocols. Further, we applied the optimizations to a production iOS Swift application from Uber used by millions of customers daily. For a set of performance spans defined by the developers of the application, the optimized version showed speedups ranging from 6.9% to 55.49%. A version of our optimizations has been accepted as part of the official Swift compiler distribution.
Publisher
Association for Computing Machinery (ACM)
Subject
Safety, Risk, Reliability and Quality,Software
Reference40 articles.
1. Type Inference of Self
2. Improving JavaScript performance by deconstructing the type system
3. Checked Load: Architectural support for JavaScript type-checking on mobile processors
4. AppleOTA 2019. Apple Over-The-Air Requirements. https://developer.apple.com/accessories/Accessory- Design- Guidelines. pdf . Accessed: 2019-04-01. AppleOTA 2019. Apple Over-The-Air Requirements. https://developer.apple.com/accessories/Accessory- Design- Guidelines. pdf . Accessed: 2019-04-01.
5. Fast static analysis of C++ virtual function calls
Cited by
3 articles.
订阅此论文施引文献
订阅此论文施引文献,注册后可以免费订阅5篇论文的施引文献,订阅后可以查看论文全部施引文献
1. Systematic Literature Review on Machine Learning and its Impact on APIs Deployment;Computación y Sistemas;2023-12-27
2. Linker Code Size Optimization for Native Mobile Applications;Proceedings of the 32nd ACM SIGPLAN International Conference on Compiler Construction;2023-02-17
3. The kingdoms of objects and values;Proceedings of the 2021 ACM SIGPLAN International Symposium on New Ideas, New Paradigms, and Reflections on Programming and Software;2021-10-17