Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java Bytecode DUP

Tags:

java

bytecode

I am wondering why the Exception in the following bytecode (used to throw an Exception) is duplicated.

NEW java/lang/IllegalArgumentException
DUP
INVOKESPECIAL java/lang/IllegalArgumentException <init> ()V
ATHROW
like image 920
LanguagesNamedAfterCofee Avatar asked Sep 15 '12 15:09

LanguagesNamedAfterCofee


Video Answer


2 Answers

I'll analyze this line by line where [] = new stack after that op is used:

  1. NEW puts a new IllegalArgumentException onto the stack [SomeIllegalArgumentException]
  2. DUP duplicates it [SomeIllegalArgumentException, SomeIllegalArgumentException]
  3. INVOKESPECIAL pops off the top one and initializes it by calling it's <init> method [SomeIllegalArgumentException] (The init method will not return the object to put back onto the stack, so the object must first be duplicated so as to keep it on the stack)
  4. ATHROW Throws the other (a duplicate off the one we initialized) []
like image 96
Alex Coleman Avatar answered Oct 03 '22 02:10

Alex Coleman


In byte code, an object is first created by class, and then a constructor is called on that object. The signature of a constructor ends with V for void as it does return anything. This means a copy of the original reference to the object must be kept on the stack (or in a variable) so it can be thrown after the constructor is called.

BTW The internal name for a constructor is <init> and the internal name for a static initialiser code is <clinit>

like image 31
Peter Lawrey Avatar answered Oct 03 '22 02:10

Peter Lawrey