How does the Dalvik virtual machine compare to a real hardware platform such as X86 or ARM?
- How many registers does Dalvik have?
- 8 like the X86
- 16 like most common CPUs
- Infinity with register window like Parrot VM
- What type of instruction is Dalvik more like?
- RISC
- CISC
- How many Operands does Dalvik support?
- Most have three though the X86 has only two?
- What type is used in Dalvik?
- Register-Register
- Register-Memory
- Register-Register/ Register-Memory
- What type of Instruction encoding is used in Dalvik?
- Variable
- Fixed
- How long are the instructions for Dalvik?
- 8 bits
- 16 bits
- 32 bits
- something else maybe?
- How does the Dalvik VM compare as far as performance in comparison to real bare hardware?
- Finally what Endianness is Dalvik?
- Big
- Little
- Bi