Slashdot Mirror


User: mhandis

mhandis's activity in the archive.

Stories
0
Comments
4
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4

  1. Re:Need a way to un-highlight on (Useful) Stupid Vim Tricks? · · Score: 1

    :noh

    No Highlighting

  2. Already available in Switzerland on TV On Cellphones Ever Closer · · Score: 1

    TV on cell phones is already offered in other parts of the world. Swisscom in Switzerland (link), for example.

  3. Re:Realistic uses of Java in Handheld Devices on Java on Handheld Devices? · · Score: 1

    Jazelle is not a VM in hardware.

    Refer to my previous post:
    http://slashdot.org/comments.pl?sid=29543&c id=3174 313

  4. Re:We are prototyping on Java on Handheld Devices? · · Score: 1

    ARM's Jazelle is not a VM in hardware. It is a mode of the processor which can execute Java bytecodes in hardware, but it still needs a full-fledged Java VM to be made use of. What's more, the VM has to be written specifically to work with Jazelle, because it requires a specific memory model (what classes and objects look like in memory), which doesn't allow many standard optimizations of a standard VM.

    In many cases, JIT or AOT turns out to be much faster than Jazelle-like processors.