dex2jar and JD-GUI label statements

826 Views Asked by At

I used dex2jar to get jar from an apk and to view it used JD-GUI .

But I notice there are label symbols such as following,

      if (this.data.length != 7)
              break label279;

    // more code here
     label279: short[] aos = { 0, 0 };

is it something added by compiler(or Obfuscate) ? is there any other tool that could use to avoid these labels?


If found this https://code.google.com/p/dex2jar/source/browse/dex-ir/src/main/java/com/googlecode/dex2jar/ir/ts/CleanLabel.java?r=e8b872fdfce8a5a39aa7df083c46ec724fa8d3f4

is it something relate for this cleaning ?

1

There are 1 best solutions below

1
On

Further research:

if (Math.abs(k) > this.mMaxRotationAngle)
  if (k >= 0)
    break label100;
label100: for (k = -this.mMaxRotationAngle; ; k = this.mMaxRotationAngle)
{
  transformImageBitmap((ImageView)paramView, paramTransformation, k);
  break;
}

From the above code by natural observation I changed the code to :

if (Math.abs(k) > this.mMaxRotationAngle)

// label100: 
for (k = -this.mMaxRotationAngle; ; k = this.mMaxRotationAngle)
{
  if (k >= 0)
    break;// label100;
  transformImageBitmap((ImageView)paramView, paramTransformation, k);
 // break;
}

Still the label100 remains as a mystery... Wondering how does dex2jar handles the situations when it is unaware of the code.

the existence of : operator also suggests that there might be a for each loop

If at some point in future this mystery is resolved then please notify me too.

thanks.