1 / 29

HiPE version 1.0

HiPE version 1.0. Kostis Sagonas Uppsala University. Structure of this talk. 1. Recent past 2. Present 3. Near future. Part 1: Recent Past. Historical introduction. During the last few years, the following people: Erik “Happi” Johansson Mikael Pettersson Richard Carlsson

jerrell
Download Presentation

HiPE version 1.0

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. HiPEversion 1.0 Kostis Sagonas Uppsala University

  2. Structure of this talk 1. Recent past 2. Present 3. Near future

  3. Part 1: Recent Past

  4. Historical introduction During the last few years, the following people: Erik “Happi” Johansson Mikael Pettersson Richard Carlsson Kostis Sagonas have been having fun developing and maintaining the HiPE system...

  5. HiPE: High Performance Erlang A “just-in-time” native code compiler for Erlang • Allows flexible, user-controlled compilation of Erlang programs to native machine code • Fine-grained: Compilation unit is a single function • HiPE 0.92 released as open-source in March 2000 (see also www.csd.uu.se/projects/hipe) • Released version was JAM-based (Erlang R4) • Available only for SPARC machines

  6. HiPE: Technical Details • Both virtual machine code and native code can happily co-exist in the runtime system • HiPE optimizes calls to functions which execute in the same mode • Preserves tail-calls • The generated native code is quite efficient • HiPE significantly outperforms all other Erlang implementations • has similar performance to e.g. Concurrent SML/NJ

  7. Old HiPE Architecture SymbolicJAM Code area JAM Bytecode JAMDissassembler Icode OtherData JAMEmulator RTL NativeCode HiPELoader SPARC Erlang Run-Time System HiPE Compiler The HiPE system

  8. Speedup of HiPE (0.92) over other Erlang implementations

  9. Success of HiPE: Let’s take a quick poll... Who has used HiPE ? My educated guess: A few… Who is using HiPE instead of using Erlang/OTP ? Most probable answer: None!

  10. Part 2: Present

  11. HiPE version 1.0: The current HiPE team At Uppsala University: Erik “Happi” Johansson Mikael Pettersson Richard Carlsson Kostis Sagonas + Jesper Wilhelmsson Recent addition from the Erlang/OTP team: BjornGustavsson

  12. HiPE version 1.0: Main Features of Interest • HiPE is fully and tightly integrated within Open Source Erlang/OTP Release 8 • Handles the full Erlang language • Back-ends for: • SPARC • x86-based machines running Linux or Solaris • Usually very reasonable compilation times • Acceptable sizes of object code

  13. New HiPE Architecture SymbolicBEAM Code area BEAM Bytecode BEAMDissassembler Icode OtherData BEAMEmulator RTL NativeCode HiPELoader SPARC X86 Erlang Run-Time System HiPE Compiler A HiPE-enabled Erlang/OTP system

  14. HiPE version 1.0: Installation Guide 1. Get Open Source Erlang/OTP R8 2. If on SPARC or x86, instead of typing: ./configure ./make type: ./configure --enable-hipe ./make

  15. HiPE: Invoking the compiler (novice user) • Instead of typing: 1> c(Module, Options). types: 1> c(Module, [native|Options]). • Alternatively, instead of typing: erlc … File types: erlc +native … File

  16. HiPE: Invoking the compiler (seasoned user) • Instead of typing: 1> c(Module, Options). types: 1> c(Module, [native,{hipe,[’O3’,...]}|Options]). • Learns about the full set of HiPE compiler options by typing: 1> hipe:help().

  17. HiPE: Invoking the compiler (expert user) • Selectively and dynamically compiles individual Erlang functions using: 1> c(M). … 42> hipe:c({M,F,A}, HiPE_Opts). • Reports bugs to: hipe-bugs@csd.uu.se

  18. HiPE: Invoking the compiler (HiPE hacker) Sends bug fixes and compiler improvements to: hipe@csd.uu.se

  19. HiPE version 1.0: Currently known limitations • Native code will not be unloaded once loaded into the system (slight memory leak) • Tracing and debugging support is non-existent Hint:Use HiPE once your application is debugged! • Floating point arithmetic slower than in BEAM • Exception information often slightly differs between BEAM and HiPE • in particular, no tracelist is provided • Fixed size (i.e., non-resizable) constant pool

  20. HiPE version 1.0: Performance Expectations

  21. HiPE version 1.0: Useful Hints To get the most out of HiPE: • Compile all time-critical parts of your Erlang application into native code • Separate hot from cold code (perhaps by placing them into different modules) • Avoid easily avoidable mode-switches

  22. Part 3: Near Future

  23. HiPE: Current Work • Optimization of inter-process communication and efficient memory management for concurrent processes • Formal specification of the Core Erlang language and its full integration within HiPE and Erlang/OTP • New inliner for the BEAM compiler • Experimental extensions of the Erlang language

  24. Process 1 Process 2 Process n ... stack stack stack Global ETS Table ... heap heap heap Alternative Memory Architectures for Erlang • Erlang/OTP has a process-centric view of memory management: each process allocates each own memory area Interprocess communication is quite expensive

  25. Alternative Memory Architectures for Erlang • We (mainly Jesper Wilhelmsson) have designed and implemented an Erlang/OTP system where: • the heap is shared between all processes • but each process allocates its own stack Process 1 Process 2 Process n ... stack stack stack Global ETS Table Global Heap Interprocess communication does not involve copying of messages

  26. Unified Heap Architecture: Installation Guide 1. Get Erlang/OTP R8 2. Install by typing: ./configure --enable-unified-heap ./make Warnings: • Highly experimental at this point! • Does not work with HiPE Request: Send us your favourite concurrent Erlang application

  27. Core Erlang:Formal Specification and Use in OSE • A small and relatively clean subset of Erlang • Syntactic sugar is removed • Resembles other “core” FP languages • An appropriate medium to: • base the compiler’s front-end (already part of R8) • apply high-level transformations such as: • inlining (currently under development) • deforestation (prototype; results so far inconclusive) • base work of static analysis or verification A formal definition of Core Erlang is currently available as a tech report (Richard Carlsson et al)

  28. Core Erlang Inliner: User’s Manual • Instead of typing: 1> c(Module, Options). type: 1> c(Module, [inline|Options]).

  29. Extensions of the Erlang language • Parameterized Erlang modules • Design laid out; issue is efficient implementation • Current work by Richard Carlsson & Mikael Pettersson • User-defined parametric datatypes (a la ML) • Structured module system for Erlang

More Related