1. 01 Apr, 2015 11 commits
  2. 31 Mar, 2015 26 commits
  3. 30 Mar, 2015 3 commits
    • balazs.kilvady's avatar
      MIPS: [turbofan] Add backend support for float32 operations. · dd402998
      balazs.kilvady authored
      Port 8dad78cd
      
      Original commit message:
      This adds the basics necessary to support float32 operations in TurboFan.
      The actual functionality required to detect safe float32 operations will
      be added based on this later. Therefore this does not affect production
      code except for some cleanup/refactoring.
      
      In detail, this patchset contains the following features:
      - Add support for float32 operations to arm, arm64, ia32 and x64
        backends.
      - Add float32 machine operators.
      - Add support for float32 constants to simplified lowering.
      - Handle float32 representation for phis in simplified lowering.
      
      In addition, contains the following (related) cleanups:
      - Fix/unify naming of backend instructions.
      - Use AVX comparisons when available.
      - Extend ArchOpcodeField to 9 bits (required for arm64).
      - Refactor some code duplication in instruction selectors.
      
      BUG=v8:3589
      LOG=n
      
      Review URL: https://codereview.chromium.org/1046953004
      
      Cr-Commit-Position: refs/heads/master@{#27531}
      dd402998
    • dusan.milosavljevic's avatar
      MIPS: Refactor simulator and add selection instructions for r6. · f00b4e94
      dusan.milosavljevic authored
      TEST=
      BUG=
      
      Review URL: https://codereview.chromium.org/1046873004
      
      Cr-Commit-Position: refs/heads/master@{#27530}
      f00b4e94
    • rmcilroy's avatar
      Ensure that GC idle notifications either make progress or stop requesting more GCs. · 00477a5d
      rmcilroy authored
      The V8::IdleNotification will only return 'True' when the gc idle time handler
      thinks there is no more GC which can be done. However, the gc idle task handler
      can end up repeatedly making no progress (e.g., if it can't finalize a sweep)
      which causes idle tasks to be repeatedly scheduled in Chrome which do nothing
      but wake up Chrome. Fix this by returning Done if we can't make any progress
      within an Idle Round.
      
      BUG=chromium:470615
      LOG=Y
      
      Review URL: https://codereview.chromium.org/1042483002
      
      Cr-Commit-Position: refs/heads/master@{#27529}
      00477a5d