compiling techniques
play

Compiling Techniques Lecture 10: Introduction to Java ByteCode - PowerPoint PPT Presentation

Introduction Java ByteCode Details Compiling Techniques Lecture 10: Introduction to Java ByteCode Christophe Dubach 10 November 2015 Christophe Dubach Compiling Techniques Introduction Java ByteCode Details Coursework: Block and


  1. Introduction Java ByteCode Details Compiling Techniques Lecture 10: Introduction to Java ByteCode Christophe Dubach 10 November 2015 Christophe Dubach Compiling Techniques

  2. Introduction Java ByteCode Details Coursework: Block and Procedure Christophe Dubach Compiling Techniques

  3. Introduction Java ByteCode Details Table of contents 1 Introduction Overview Java Virtual Machine Frames and Function Call 2 Java ByteCode JVM Types and Mnemonics Arguments and Operands 3 Details Variables Function Call and Return value Control Flow Christophe Dubach Compiling Techniques

  4. Introduction Overview Java ByteCode Java Virtual Machine Details Frames and Function Call From Java source code to the JVM Java code (.java) Java compiler ($javac) Java ByteCode (.class) Class Loader Interpreter JIT compiler Execution Engine Java Virtual Machine ($java) Christophe Dubach Compiling Techniques

  5. Introduction Overview Java ByteCode Java Virtual Machine Details Frames and Function Call From SmallC source code to the JVM SmallC code Java code (.c) (.java) Java compiler SmallC compiler ($javac) Java ByteCode (.class) Class Loader Interpreter JIT compiler Execution Engine Java Virtual Machine ($java) Christophe Dubach Compiling Techniques

  6. Introduction Overview Java ByteCode Java Virtual Machine Details Frames and Function Call Java (or SmallC) compiler: compile the source code into Java ByteCode Classloader: loads the bytecode from class files into the Runtime Execution Engine: executes the ByteCode Interpreter: interprets the ByteCode JIT compiler: compiles the ByteCode into native instruction on the fly (JIT = Just-In-Time) Christophe Dubach Compiling Techniques

  7. Introduction Overview Java ByteCode Java Virtual Machine Details Frames and Function Call Java Virtual Machine (JVM) The Java Virtual Machine is an abstract computing machine. It has an instruction set and manipulates various memory areas at run time The Java Virtual Machine knows nothing of the Java programming language, only of a particular binary format, the class file format. A class file contains Java Virtual Machine instructions (or Java ByteCode) as well as other information. Christophe Dubach Compiling Techniques

  8. Introduction Overview Java ByteCode Java Virtual Machine Details Frames and Function Call Frames In the JVM, a frame: stores data and partial results; performs dynamic linking; returns values for methods; and dispatches exceptions. Christophe Dubach Compiling Techniques

  9. Introduction Overview Java ByteCode Java Virtual Machine Details Frames and Function Call Frame Local Variables: array of Local Variables variables declared locally in a method (includes parameters) Operand Stack Operand Stack: LIFO (Last-In Last-Out) stack of operands Java Stack != Operand Stack The operand stack is used to perform computation. The Java stack is used to keep track of function calls. ... Christophe Dubach Compiling Techniques

  10. Introduction Overview Java ByteCode Java Virtual Machine Details Frames and Function Call Frame for foo Local Variables a b Example Operand Stack void bar ( i n t x , i n t y ) { . . . } void foo ( i n t a ) { 13 i n t b ; 7 bar ( 7 , 1 3 ) ; // push 7 // push 13 New frame for bar // c a l l bar Local Variables . . . } y=13 x=7 Operand Stack Christophe Dubach Compiling Techniques

  11. Introduction JVM Types and Mnemonics Java ByteCode Arguments and Operands Details What is Java ByteCode? Java ByteCode is the virtual instruction set of the Java virtual machine. One-byte instruction 256 possible opcodes (200+ in use) Stack-based computation Suggested reading: The Java Virtual Machine Specification: http://docs. oracle.com/javase/specs/jvms/se8/html/index.html Instructions listing: https://en.wikipedia.org/wiki/ Java_bytecode_instruction_listings Online tutorial http://blog.jamesdbloom.com/ JavaCodeToByteCode_PartOne.html Christophe Dubach Compiling Techniques

  12. Introduction JVM Types and Mnemonics Java ByteCode Arguments and Operands Details JVM Types Java byte code instructions operates on 9 main different types: the 8 primitives types: byte, char, short, int, long, float, double boolean, byte, short and char are sometimes treated as int and reference a reference is a pointer to an Object in the heap long and double values takes two slots in the operand stack and local variables (all the other types takes one) Christophe Dubach Compiling Techniques

  13. Introduction JVM Types and Mnemonics Java ByteCode Arguments and Operands Details Mnemonics A mnemonic is a textual form of an operation Each mnemonic is encoded as a byte in the class file This byte is called an operation code or opcode Examples: iadd : add two integers fmul : multiply two floats lload 1 : load a long value from the local variable 1 Christophe Dubach Compiling Techniques

  14. Introduction JVM Types and Mnemonics Java ByteCode Arguments and Operands Details Mnemonics Prefix/Suffix Type Size(in byte) b byte 1 s short 2 c char 1 i int 4 l long 8 f float 4 d double 8 a reference 4 or 8 Instructions dealing with the stack or local variables start with a letter corresponding to the type. Examples: iadd: adds two integers dadd: add two doubles Christophe Dubach Compiling Techniques

  15. Introduction JVM Types and Mnemonics Java ByteCode Arguments and Operands Details Arguments Arguments follows an instruction Examples: bipush 5 : load a byte onto the stack ldc ‘‘ Hello World!’’ : load a constant from the constant pool iconst 0 : load 0 onto the stack Example Operand Stack after Operand Stack 8 bipush 5 ... 5 bipush 8 ... Christophe Dubach Compiling Techniques

  16. Introduction JVM Types and Mnemonics Java ByteCode Arguments and Operands Details Operands Operands are taken from the operand stack and resulting value is produced on the stack Examples: iadd Example Operand Stack Operand Stack 8 after 13 5 iadd ... ... Christophe Dubach Compiling Techniques

  17. Introduction JVM Types and Mnemonics Java ByteCode Arguments and Operands Details Exercise Write the ByteCode for the following expression: 5*(3+4) Write down the status of the stack after each instruction Christophe Dubach Compiling Techniques

  18. Introduction Variables Java ByteCode Function Call and Return value Details Control Flow Local variables can be retrieved via load/store instructions. Frame for foo Example Local Variables . . . foo (33) . . . 33 5 void foo ( i n t a ) { bipush 5 Operand Stack i s t o r e 1 5 bipush 7 i l o a d 0 33 iadd 7 } 40 Christophe Dubach Compiling Techniques

  19. Introduction Variables Java ByteCode Function Call and Return value Details Control Flow Function Call and Return Value Function call A function call is performed with one of the invoke instructions (dynamic, interface, special, static, virtual). When a function call occurs, a new frame is created and the arguments taken from the operand stack become local variables Return value When a value is returned by the function, the current frame is destroyed and the return value is passed back to the callee onto its operand stack. Christophe Dubach Compiling Techniques

  20. Introduction Variables Java ByteCode Function Call and Return value Details Control Flow Example: Java ByteCode Example: SmallC/Java i n t add ( i n t x , i n t y ) { i l o a d 0 i l o a d 1 i n t add ( i n t x , i n t y ) { i r e t u r n return x+y ; } } void main () { void main () { bipush 7 add ( 7 , 1 3 ) ; bipush 13 } i n v o k e s t a t i c ”add ( I I ) I ” } Christophe Dubach Compiling Techniques

  21. Introduction Variables Java ByteCode Function Call and Return value Details Control Flow Branching instructions Branching instructions takes a label that points to the place where to jump to. Java ByteCode offers both unconditional and conditional branches. Unconditional branch: goto Conditional branches: if icmpeq jump if two stack operands are equals if icmplt jump if the first operand is less than the second one . . . ifeq jump if operand is 0 ifge jump if operand is greater than 0 . . . Christophe Dubach Compiling Techniques

  22. Introduction Variables Java ByteCode Function Call and Return value Details Control Flow Exmple 0: i l o a d 1 1: i l o a d 2 2: i f i c m p l e 7 5: i c o n s t 0 6: i r e t u r n 7: i c o n s t 1 8: i r e t u r n First the two parameters are loaded onto the operand stack using iload 1 and iload 2 . if icmple then compares the top two values on the operand stack. This operand branches to byte code 7 if the first operand is less then or equal to the second one. Christophe Dubach Compiling Techniques

  23. Introduction Variables Java ByteCode Function Call and Return value Details Control Flow Next lecture: Introduction to code generation Christophe Dubach Compiling Techniques

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend