Daneel: The difference between Java and Dalvik

Those of you who kept following IcedRobot might have seen that quite some work went into Daneel over the past months. He1 is in charge of parsing Android applications containing code intended to run on a Dalvik VM and transforming this code into something which can run on any underlying Java VM. So he is a VM compatible with Dalvik on top of a Java VM, or at least that’s what he wants to become.

So Daneel is multilingual in a strange way, he can read and understand Dalvik bytecode, but he only speaks and writes Java bytecode. To understand how he can do that we have to look at the differences between those two dialects.

Registers vs. Stack: We know Dalvik bytecode uses a register-machine, and Java bytecode uses a stack-machine. But each method frame on that stack-machine not only has an operand stack, it also has an array of local variables. Unfortunately this distinction is lost in our register-machine. To understand what this means, let us look at a full Java-Dalvik-Daneel round-trip for a simple method like the following.

public static int addConst(int val) {
   return val + 123456;
}

The first stop on our round-trip is the Java bytecode. So after we push this snippet through javac we get the following code which makes use of both, an operand stack and local variables.

public static int addConst(int);
  [max_stack=2, max_locals=1, args_size=1]
   0: iload_0
   1: ldc #int 123456
   3: iadd
   4: ireturn

The second stop takes us to the Dalvik bytecode. We push the above code through the dx tool and are left with the following code. Note that the distinction between the operand stack and local variables is lost completely, everything is stored in registers.

public static int addConst(int);
  [regs=2, ins=1, outs=0]
   0: const v0, #0x1E240
   1: add-int/2addr v0, v1
   2: return v0

The third and last step is Daneel reading the Dalvik bytecode and trying to reproduce sane Java bytecode again. The following is what he spits out after chewing on the input for a bit.

public static int addConst(int);
  [max_stack=2, max_locals=2, args_size=1]
   0: ldc #int 123456
   1: istore_1
   2: iload_1
   3: iload_0
   4: iadd
   5: istore_1
   6: iload_1
   7: ireturn

The observant reader will notice the vast difference between what we had at the beginning of our round-trip and what we ended up with. Daneel maps each Dalvik register to a Java local variable. Fortunately any decent Java VM will optimize away the unnecessary load and store instructions and we can achieve acceptable performance with this naive approach already.

Untyped Instructions: Another big difference might not be that obvious at first glance. Notice how the instruction at label 0 in the above Dalvik bytecode (the second stop on our round-trip) accesses register v0 without specifying the exact type of that register? The only thing Daneel can determine at that point in the code is that it’s a 32-bit value we are dealing with, it could be an int or a float value. For zero-constants it could even be a null reference we are dealing with. The exact type of that register is not revealed before the instruction at label 1, where v0 is read again by a typed instruction. It’s at that point that we learn the exact type of that register.

So Daneel has to keep track of all register types while iterating through the instruction stream to determine the exact types and decide which Java bytecode instructions to emit. I intend to write a separate article about how this is done by Daneel in the following days, so stay tuned.

Disclaimer: This is a technical description of just two major differences between Dalvik bytecode and Java bytecode. All political discussions about differences or similarities between Dalvik and Java in general are outside the scope of this article and I won’t comment on them.

1 Yes, Daneel is male. His girlfriend is called Ika. Together they love to drink iced tea because they try to get off caffeine. They even have a butler working for them who is called Jenkins, a very lazy guy who regularly was seen to crash during work.

Do you have an email list?

Do you have an email list? Thanks!

Spaustuve Kaune iPRINT. Viena

Spaustuve Kaune iPRINT. Viena geriausių spaustuvių Kauno rajone ir galbūt Lietuvoje. Koybiška spauda greitai ir pigiai. <a href="https://iprint.lt/">Spaustuve</a>

I don't really get what you

I don't really get what you mean. I hope that's important info you're sharing. Anyway, if you need air duct cleaners to take care of your air duct cleaning needs in Surprise, get the guys from https://www.airanddryerventcleaningsurprise.com for quality services at rates you can afford.

Thank you so much for sharing

Thank you so much for sharing this one!

Batu spinteles yra

Batu spinteles yra reikalingos kiekviename prieskambaryje. PALPAL Baldai siulo kokybiskas batu spinteles jusu namams

What language are you using?

What language are you using? Is that Indonesian? Anyway, which do you prefer, Java or Dalvik, for me I'd go for java. By the way, if you're looking for quality air duct cleaning, refer it to https://www.airanddryerventcleaningphoenix.com when you're in Phoenix, AZ.

An interesting discussion on

An interesting discussion on the difference between Java and Dalvik. Quite educating. Thanks for sharing.

This is awesome. Thank you!

This is awesome. Thank you!

There is a lot of difference

There is a lot of difference and it is good to know all about them.

I totally agree with your

I totally agree with your statement but to be honest, I'm not familiar with Dalvik.

This post gives another level

This post gives another level of information, Keep it up!

-Grant

hi grant. your plumbing

hi grant. your plumbing business is thriving. can you help support us also?

Thanks for sharing too. I

Thanks for sharing too. I really like this post, it's easy to understand.

I learn so much. I think Java

I learn so much. I think Java is better and hope to be good at it.

I really learned a lot from

I really learned a lot from this article. I agree with you it is interesting. Thank you for sharing.
https://www.carpetcleaning-redding.com/

Great work. Thanks for a very

Great work. Thanks for a very specific explanation.
https://www.drywallchico.com/

Thanks you for the nice post,

Thanks you for the nice post, This benefit a lot

An interesting discussion on

An interesting discussion on the difference between Java and Dalvik. Quite educating. Thanks for sharing. [url=https://www.bedford-flooring.co.uk] Bedford flooring [/url]

Very interesting discussion

Very interesting discussion on the difference between Java and Dalvik, I have really learned a lot all thanks to you. Please keep us updated.

I do think Java has more

I do think Java has more applications and is adaptable. I did learn many things though.

Thank you for sharing! Such

Thank you for sharing! Such great content, glad I found this blog!!

Very interesting discussion

Very interesting discussion on the difference between Java and Dalvik, I have really learned a lot all thanks to you. Please keep us updated

It's nice seeing this great

It's nice seeing this great information here.

You wrote well and the

You wrote well and the content is very informative. Mind, if I share my website, feel free to click the link https://www.goidahoinsurance.com/life-insurance-boise to learn more about our insurance services.

This is a great site

This is a great site

Thanks for the article. <a

Thanks for the article.

<a href="https://excelorange.com.au">Gladstone Website Design</a>

what is that funky code in

what is that funky code in your comment? I don't understand.

There is such great

There is such great information on this site

This is a great post, the

This is a great post, the differences of each one have their own functions. Visit now this site here https://www.a1treeservicespokane.com/

Yes, I completely agree.

Yes, I completely agree. However, I like Java better than Dalvik.

Regards,

Jack | Tree Care Specialist @ https://www.treeremovalservicechandler.com/

Thanks for posting this

Thanks for posting this article on the difference between Java and Dalvik. It's very informative and helpful. Some persons think they are similar, but article really highlights the difference in their features. Great work
Cheers
https://www.derbyroofers.co.uk

Mold remediation lynchburg va

Mold remediation lynchburg va

Portland Concrete Contractor

Portland Concrete Contractor is a name you can trust for beautiful decorative concrete. We work with clients in Portland and throughout the Pacific Northwest to provide superior products that stand apart from competitors’ services. (503) 461-8083

We're a Concrete Contractor

We're a Concrete Contractor in Houston Texas that helps commercial and residential building owners finish their concrete structures with the perfect finish. Resurfacing, staining, and more! Contact us today for information or request a quote online!

Los Angeles concrete

Los Angeles concrete contractors specialize in concrete resurfacing and concrete polishing. Call today for a free estimate and consult! 213 510 1217

Denver Concrete Contractor

Denver Concrete Contractor and Stamped Concrete provide a safe and versatile surface that can be used for many purposes. Available in a variety of colors, textures, and styles which allow you to customize your patio to complement your home.

Welcome to Forest Tree

Welcome to Forest Tree Service Pros, Columbia MDs Premiere tree removal service company. We specialize in tree removal, tree trimming, and tree service. Call now and one of our tree experts will be happy to assist you. (410) 498-7867

Welcome to Forest Tree

Welcome to Forest Tree Service Pros, your premier tree removal company in Parker, CO. We are dedicated to providing our clients with the highest quality tree removal services available, and our team of experienced arborists will ensure that your trees are removed quickly and safely. We understand that having trees removed can be a stressful experience, but we will do everything we can to make the process as smooth and hassle-free as possible. Contact us today to schedule a free consultation, and let us show you why we're the best tree removal company in Parker!

We are the best tree removal service in Parker, Colorado? Look no further than Forest Tree Service Pros. We are a team of certified arborists with years of experience in tree removal and tree care. We have the knowledge and equipment to safely and efficiently remove any tree, regardless of size or location. We also offer stump removal and tree trimming services.

We take pride in our work and always put the safety of our customers and employees first. We are fully insured and offer free estimates. Call us today to schedule a consultation.

Looking for the best tree

Looking for the best tree removal and stump grinding services in Dallas, GA? Look no further than Forest Tree Service Pros! We are a locally owned and operated tree service company that has been serving the Dallas area for over 10 years. We are the experts in tree removal, stump grinding, and tree trimming, and we offer the most competitive rates in town.

Looking for the best tree

Looking for the best tree removal and stump grinding services in Bakersfield Ca? Look no further than Forest Tree Service Pros! We are a locally owned and operated tree service company that has been serving the Bakersfield area for over 10 years. We are the experts in tree removal, stump grinding, and tree trimming, and we offer the most competitive rates in town.

Don't trust just anyone with your trees! Call the pros at Forest Tree Service today. We'll be happy to provide you with a free estimate for any of our services.

John N Eddie's Tree Care the

John N Eddie's Tree Care the premier provider of comprehensive tree service in Stockton, Modesto, Lodi, and Manteca.
Our dedication is to quality, safety and customer service. Let us meet all of your tree care needs. Call today! (209) 479-0251

5th Street Construction is a

5th Street Construction is a locally-owned and operated company based in Fort Collins, Colorado. We specialize in basement finishing and remodeling services to help homeowners transform their unfinished or underutilized basements into functional and stylish living spaces.

This is new to me. Thanks for

This is new to me. Thanks for sharing the difference.

This is great content, thanks

This is great content, thanks for sharing the differences as programming languages become more abundant it's important to know how they differ. https://www.roofingthunderbay.com/

Thanks for sharing this

Thanks for sharing this informative post. Great content!!
https://www.waterheaterrepair-dallas.com/troubleshoot-water-heater-havin...

Cant believe this article

Cant believe this article made soo much sense now. You really have a talent for this! Continue pressing on!

Thanks for this nice script.

Thanks for this nice script. Check out https://www.builditspokane.com/

Hello, I am looking forward

Hello, I am looking forward to another great post from you.

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!

I regard something genuinely

I regard something genuinely interesting about your website so I bookmarked.