0e5ff1bd3073e3847ac8400ba46814878beb8605 |
|
04-Jul-2014 |
David 'Digit' Turner <digit@google.com> |
memcheck: Remove feature entirely This patch removes the memcheck feature from the Android emulator code base. This is for several reasons: - Supporting the feature impacts many QEMU-specific emulation files in subtle ways, that make it difficult to refactor this code to integrate upstream changes. - The feature only works for ARM (32-bit), has no unit tests, and generates massive amounts of false positive messages coming from the platform. - Barely anyone uses it. This feature might make a comeback in the future, but this will be under a different life-form that will have adapted to the new state of the code. + As a bonus, fix the build! Change-Id: Idd19a3bc7923379cb1e82850f14499549b6a991b
/external/qemu/target-arm/helper.h
|
0b4c9e8457959b01cd26f60ef214e9b5b7a297d4 |
|
03-Apr-2014 |
David 'Digit' Turner <digit@google.com> |
target-arm: Get rid of dyngen-exec.h usage. This patch modifies the helpers for the ARM target to ensure that the CPUARMState, when needed, is always passed explicitly as the first parameter, instead of relying on a global register variable. Change-Id: Ic6c588be92bd3eef3b2a2063992028bce44c8a23
/external/qemu/target-arm/helper.h
|
c4e7d8228a1f893b3a5a639da5b99b53720224bd |
|
03-Apr-2014 |
David 'Digit' Turner <digit@google.com> |
target-arm: Remove AREG0 usage from IWMMX helpers. This also gets us to the upstream version of iwmmxt_helper.c Change-Id: Icb94de2e69eed7177266f0c22c4e761ae8ba964c
/external/qemu/target-arm/helper.h
|
3d323dda130b16c690a78f08b7f766becb84914f |
|
19-Mar-2014 |
David 'Digit' Turner <digit@google.com> |
target-arm: Remove global env in neon_helper.c Upstream 02da0b2d7152f736b1fba95902f55db4fd7ea3a5 Change-Id: Icd74332c0e65a89110bc73471b4cec6ccfec5d61
/external/qemu/target-arm/helper.h
|
16998987568fa923e463d41735dcf5c1b28220b9 |
|
18-Mar-2014 |
David 'Digit' Turner <digit@google.com> |
target-arm: Pass fp status pointer explicitly to neon fp helpers Upstream 5aaebd13da29a7157b757590284664dc42ea6a69 Upstream ae1857eca22b58d430941730bd097e95a484652c Upstream aa47cfdd178d8ea96b6e2f550742ddbb445fdacb Change-Id: I4a4eac8e4596f5faffb8ee3bcf39f8ef89590824
/external/qemu/target-arm/helper.h
|
26d285dfa9f482e5b2f6d6df2bcb0eaed06cb1a9 |
|
18-Mar-2014 |
David 'Digit' Turner <digit@google.com> |
tcg: Use hash table + static table for helpers. This changes the registration of helper functions inside of TCG to: - Use a GHashTable to store the map from helpers to function names. - Move the helper registration from targets to tcg. - Merge tcg_register_helper into tcg_context_init. Note: this makes TCG more dependent on target helper.h headers, it adds significant coupling, but so be it. Upstream 7c57df0d852a9a9faf9068ff235886c8b28b113e Upstream 6e085f72c6d331fb0e9fc69e3061cd1e5893d9e4 Upstream 5cd8f6210f83db15702e81b91e40e7079608e6f3 Upstream 100b5e0170e86661aaf830869be930a1a201ed08 Upstream 84fd9dd3f78ced9d41e1160d43862bb620cb462a Change-Id: Ie0877cf9a62451d89881e882d06d04456e5abe1b
/external/qemu/target-arm/helper.h
|
852088c7e08182c2de563872d558309815cbfa0d |
|
14-Dec-2013 |
David 'Digit' Turner <digit@android.com> |
Move headers to include/exec/ Change-Id: Ife43f9cd12a02aa98f408043b0cccb9fe45a9ff7
/external/qemu/target-arm/helper.h
|
5285864985be9077e58e42235af6582dee72e841 |
|
03-Jun-2011 |
David 'Digit' Turner <digit@android.com> |
target-arm: integrate upstream ARM translator. The new translator has the following benefits: - faster emulation of ARMv5TE code (through improved JIT) - proper support for ARMv7 and NEON - rebuilding the full-eng platform images for ARMv7-A results in additionnal speed increases (a.k.a. Thumb-2 rocks!). Note that, as an interesting side effect, NEON machine code is generally slower than the equivalent C code it is supposed to replace when run inside the emulator. This can be explained by the fact that for now the translator simply translates each NEON instruction into a series of sequential host instructions (and also requires over-head for packing/unpacking/saturation/ etc...). This change has been tested by running the "full-eng" platform image rebuilt for ARMv7-A and Neon and using an appropriate kernel image (prebuilt/android-arm/kernel/kernel-qemu-armv7). The system could boot and seems to work perfectly. Not a single issue has been experienced during testing. On a 2.4 GHz Xeon CPU, the image boots in about 25 seconds (compared to 40 seconds for a vanilla one without this emulator patch). Thanks to Peter Maydell at Linaro and ARM with his hard work to make this happen (first in upstream, and now on Android). This integration is based on the Meego git repository (git://gitorious.org/qemu-maemo/qemu.git) using the following hash: 7e2d65b0c95c865b1fa6d3d4948e8e822b9ac2fd On top of which, the following upstream patch has been applied (with recommendation from Peter): b7fa9214d8d4f57992c9acd0ccb125c54a095f00 (We chose this repository because it was the closest to the previous integrate. We will probably use the Linaro ones for future work on this part of the emulator). Change-Id: I54837e3d2e908b2380d158411d7a9813630e7e4e
/external/qemu/target-arm/helper.h
|