What are compiled simulators and Instruction Set Interpreter based Simulators? What is the difference between them?
What are compiled simulators and Instruction Set Interpreter based Simulators? What is the difference
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Compiled simulators simply compile the code with the host machine’s compilers and run it natively on the host. Instruction set interpreters simulate the code running on the actual machine, and the code is exactly the same as the real code — compiled with the same compilers.
The iOS simulators are compiled simulators — they simply compile the code with an x86 compiler instead of an ARM compiler. Thus it doesn’t simulate everything, e.g., NEON instructions.