Daneel: Type inference for Dalvik bytecode

In the last blog post about Daneel I mentioned one particular caveat of Dalvik bytecode, namely the existence of untyped instructions, which has a huge impact on how we transform bytecode. I want to take a similar approach as last time and look at one specific example to illustrate those implications. So let us take a look at the following Java method.

public float untyped(float[] array, boolean flag) {
   if (flag) {
      float delta = 0.5f;
      return array[7] + delta;
   } else {
      return 0.2f;
   }
}

The above is a straightforward snippet and most of you probably know how the generated Java bytecode will look like. So let’s jump right to the Dalvik bytecode and discuss that in detail.

UntypedSample.untyped:([FZ)F:
  [regs=5, ins=3, outs=0]
   0000: if-eqz v4, 0009
   0002: const/high16 v0, #0x3f000000
   0004: const/4 v1, #0x7
   0005: aget v1, v3, v1
   0007: add-float/2addr v0, v1
   0008: return v0
   0009: const v0, #0x3e4ccccd
   000c: goto 0008

Keep in mind that Daneel doesn’t like to remember things, so he wants to look through the code just once from top to bottom and emit Java bytecode while doing so. He gets really puzzled at certain points in the code.

  • Label 2: What is the type of register v0?
  • Label 4: What is the type of register v1?
  • Label 9: Register v0 again? What’s the type at this point?

You, as a reader, do have the answer because you know and understand the semantic of the underlying Java code, but Daneel doesn’t, so he tries to infer the types. Let’s look through the code in the same way Daneel does.

At method entry he knows about the types of method parameters. Dalvik passes parameters in the last registers (in this case in v3 and v4). Also we have a register (in this case v2) holding a this reference. So we start out with the following register types at method entry.

UntypedSample.untyped:([FZ)F:
  [regs=5, ins=3, outs=0]               uninit uninit object [float bool

The array to the right represents the inferred register types at each point in the instruction stream as determined by the abstract interpreter. Note that we also have to keep track of the dimension count and the element type for array references. Now let’s look at the first block of instructions.

   0002: const/high16 v0, #0x3f000000   u32    uninit object [float bool
   0004: const/4 v1, #0x7               u32    u32    object [float bool
   0005: aget v1, v3, v1                u32    float  object [float bool
   0007: add-float/2addr v0, v1         float  float  object [float bool

Each line shows the register type after the instruction has been processed. At each line Daneel learns something new about the register types.

  • Label 2: I don’t know the type of v0, only that it holds an untyped 32-bit value.
  • Label 4: Same applies for v1 here, it’s an untyped 32-bit value as well.
  • Label 5: Now I know v1 is used as an array index, it must have been an integer value. Also the array reference in register v3 is accessed, so I know the result is a float value. The result is stored in v1, overwriting it’s previous content.
  • Label 7: Now I know v0 is used in a floating-point addition, it must have been a float value.

Keep in mind that at each line, Daneel emits appropriate Java bytecode. So whenever he learns the concrete type of a register, he might need to retroactively patch previously emitted instructions, because some of his assumptions about the type were broken.

Finally we look at the second block of instructions reached through the conditional branch as part of the if-statement.

   0009: const v0, #0x3e4ccccd          u32    uninit object [float bool
   000c: goto 0008                      float  uninit object [float bool

When reaching this block we basically have the same information as at method entry. Again Daneel learns in the process.

  • Label 9: I don’t know the type of v0, only that it holds an untyped 32-bit value.
  • Label 12: Now I know that v0 has to be a float value because the unconditional branch targets the join-point at label 8. And I already looked at that code and know that we expect a float value in that register at that point.

This illustrates why our abstract interpreter also has to remember and merge register type information at each join-point. It’s important to keep in mind that Daneel follows the instruction stream from top to bottom, as opposed to the control-flow of the code.

Now imagine scrambling up the code so that instruction stream and control-flow are vastly different from each other, together with a few exception handlers and an optimal register re-usage as produced by some SSA representation. That’s where Daneel still keeps choking at the moment. But we can handle most of the code produced by the dx tool already and will hunt down all those nasty bugs triggered by obfuscated code as well.

Disclaimer: The abstract interpreter and the method rewriter were mostly written by Rémi Forax, with this post I take no credit for it’s implementation whatsoever, I just want to explain how it works.

great information bytecode!!

great information bytecode!! I like it !!
<a href="https://www.atticinsulationsilverspring.com/">Read More</a>

You made some decent factors

You made some decent factors there. I looked on the internet for the problem and found most individuals will go along with with your website.Anthony Dietrich https://www.hotfrog.com/company/1307313258409984/anthony-dietrich/gaines...

At method entry he knows

At method entry he knows about the types of method parameters. Dalvik passes parameters in the last registers (in this case in v3 and v4). Also we have a register (in this case v2) holding a this reference. So we start out with the following register types at method entry.

Now I know v1 is used as an

Now I know v1 is used as an array index, it must have been an integer value. Also the array reference in register v3 is accessed, so I know the result.

Wow how good is this. Thank

Wow how good is this. Thank you from https://www.goldcoastbifolddoorpros.com.au

So glad I found this! Thanks

So glad I found this! Thanks for sharing from both https://www.centralcoastshowerscreens.com & https://www.geelongshowerscreen.com.au

Love this thread! Thank you

Come and check this out for

Come and check this out for wonderful reviews about carports design. You will be amazed!

This is very interesting! I

This is very interesting! I would love to know more about it.

Actually I believe the whole

Actually I believe the whole text for Cody and Phil got swapped. Or the photos got swapped. One or the other.

I am building a 24x18ft

I am building a 24x18ft carport with 8in c channel spaced 4.5ft and spans the 24ft. I am using 2 1/2in oilfield pipe as the 4 corner posts and it will have a metal roof. It will stand aprox 8ft to top of structure. Do I need to add more support posts or can the 4 post handle the weight. The posts will have .5in plates welded to bottom with bolts going into concrete slab. Thanks to anyone with some advice. And of you need anymore info just lmkhttps://www.atticinsulationsilverspring.com/

This is such a great blog.

This is such a great blog. Thank you for sharing your talent with everyone. You are an inspiration. Keep posting!

It’s important to keep in

It’s important to keep in mind that Daneel follows the instruction stream from top to bottom, as opposed to the control-flow of the code.

Such a high standard post!

Such a high standard post! Thanks from https://www.sydneybifolddoorpros.com.au

Thanks. I really like it !!

Thanks. I really like it !!

Wow! Thanks for the great

Wow! Thanks for the great explanation of how this bytecode works.

Much appreciated. Cheers!

Awesome information!

Awesome information!

Awesome stuff...wish they

Awesome stuff...wish they make some more of this kind of topic

It is very interesting to see

It is very interesting to see the need and power in leaving comments on other blogs.

There are great topics from

There are great topics from here. You may alsosee from here

Remember that Daneel doesn't

Remember that Daneel doesn't like to remember anything, therefore he just wants to read the code once from top to bottom, emitting Java bytecode in the process. At some parts in the code, he becomes perplexed.

Thankful for this article

Thankful for this article ...keep it up

Really impressive! Thanks for

Really impressive! Thanks for sharing your brilliant idea!

It is good to see you

It is good to see you verbalize from the heart and clarity on this important subject can be easily observed... Scott Dietrich Gainesville VA https://www.icujp.org/9502

Great article. Awesome

Great article. Awesome

thank you for this wonderful

thank you for this wonderful article this is very helpful to me

CHECK THIS OUT

CHECK THIS OUT

Thanks for sharing.<a

Thanks for sharing.<a href="https://www.stalbansplumbingheating.co.uk/">plumbers in st Albans</a>

This is such a great resource

This is such a great resource that you are providing and you give it away for free.

Couldn't be more happy to

Couldn't be more happy to have found this content

Discover great ideas on how

Discover great ideas on how to be creative with landscaping

Really thankful for this

Really thankful for this helpful article

I had been honored to obtain

I had been honored to obtain a call from a friend as he found the important guidelines shared on the site. Browsing your blog post is a real wonderful experience. Thanks again for thinking of readers like me, and I hope for you the best of achievements as being a professional discipline. Anthony Dietrich Gainesville VA https://usask.academia.edu/Departments/Anthony_Dietrich_Gainesville_VA

What an great way on how the

What an great way on how the information was given. Thanks to this site!!!

Thanks for the great

Thanks for the great information!

You should make more of these

You should make more of these kind of article.

THis is very exciting indeed

THis is very exciting indeed

Great work really

Great work really

Good info and I am so much

Good info and I am so much thankful https://carolinespringslandscaping.com

Amazing content writing

Amazing content writing

This is such great content

This is such great content

Cool stuff!!! amazing

Cool stuff!!! amazing

This is such great info

This is such great info

I was very encouraged to find

I was very encouraged to find this site. The reason being that this is such an informative post. Thanks for sharing!

the friendly, experienced,

the friendly, experienced, and reliable team of driveway installers, maintainers, and repairers near you in Hayes and Hillingdon.

This is an interesting

This is an interesting article. https://towsontowtruck.com/

I visited a lot of website

I visited a lot of website but I appreciate this one contains something special in it in it Tony Scott Dietrich https://www.tvweek.com/tvbizwire/2019/10/how-to-get-warnermedias-upcomin...

Well written content. Thank

Well written content. Thank you for sharing. https://glenburnietowingservice.com/

The Quality Management

The Quality Management System, also called a QMS, has an array of methods, types, procedures and documents that are recorded. The report scope characterizes the scheme of operational rules that will govern how the company creates and transmits to customers the item and/or administration. The QMS needs to be tailored to your organization’s needs as well as the administration or item you ‘re giving, yet with an ISO 9001 Certification, it provides lots of rules which help make sure you don’t miss significant components where the QMS needs to be effective.

“It’s always good to learn

“It’s always good to learn tips like you share for blog posting. As I just started posting comments for blog and facing problem of lots of rejections. I think your suggestion would be helpful for me. I will let you know if its work for me too.” <a href="https://anthony-scott-dietrich.blogspot.com/">Anthony Scott Dietrich</a>