1. 16 2月, 2018 1 次提交
  2. 09 2月, 2018 6 次提交
  3. 08 2月, 2018 7 次提交
  4. 25 1月, 2018 3 次提交
  5. 16 1月, 2018 3 次提交
  6. 30 12月, 2017 2 次提交
  7. 13 11月, 2017 1 次提交
    • E
      arm/translate-a64: mark path as unreachable to eliminate warning · 5ca66278
      Emilio G. Cota 提交于
      Fixes the following warning when compiling with gcc 5.4.0 with -O1
      optimizations and --enable-debug:
      
      target/arm/translate-a64.c: In function ‘aarch64_tr_translate_insn’:
      target/arm/translate-a64.c:2361:8: error: ‘post_index’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
           if (!post_index) {
              ^
      target/arm/translate-a64.c:2307:10: note: ‘post_index’ was declared here
           bool post_index;
                ^
      target/arm/translate-a64.c:2386:8: error: ‘writeback’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
           if (writeback) {
              ^
      target/arm/translate-a64.c:2308:10: note: ‘writeback’ was declared here
           bool writeback;
                ^
      
      Note that idx comes from selecting 2 bits, and therefore its value
      can be at most 3.
      Signed-off-by: NEmilio G. Cota <cota@braap.org>
      Acked-by: NPhilippe Mathieu-Daudé <f4bug@amsat.org>
      Message-id: 1510087611-1851-1-git-send-email-cota@braap.org
      Reviewed-by: NPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      5ca66278
  8. 31 10月, 2017 1 次提交
  9. 25 10月, 2017 3 次提交
  10. 10 10月, 2017 1 次提交
  11. 21 9月, 2017 1 次提交
    • P
      target/arm: Remove out of date ARM ARM section references in A64 decoder · 4ce31af4
      Peter Maydell 提交于
      In the A64 decoder, we have a lot of references to section numbers
      from version A.a of the v8A ARM ARM (DDI0487). This version of the
      document is now long obsolete (we are currently on revision B.a),
      and various intervening versions renumbered all the sections.
      
      The most recent B.a version of the document doesn't assign
      section numbers at all to the individual instruction classes
      in the way that the various A.x versions did. The simplest thing
      to do is just to delete all the out of date C.x.x references.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: NAlex Bennée <alex.bennee@linaro.org>
      Message-id: 20170915150849.23557-1-peter.maydell@linaro.org
      4ce31af4
  12. 15 9月, 2017 2 次提交
  13. 06 9月, 2017 9 次提交