< prev index next >

src/hotspot/share/gc/shenandoah/mode/shenandoahIUMode.cpp

Print this page
*** 21,16 ***
   * questions.
   *
   */
  
  #include "precompiled.hpp"
! #include "gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.hpp"
- #include "gc/shenandoah/heuristics/shenandoahAggressiveHeuristics.hpp"
- #include "gc/shenandoah/heuristics/shenandoahCompactHeuristics.hpp"
- #include "gc/shenandoah/heuristics/shenandoahStaticHeuristics.hpp"
  #include "gc/shenandoah/mode/shenandoahIUMode.hpp"
- #include "gc/shenandoah/shenandoahHeap.inline.hpp"
  #include "logging/log.hpp"
  #include "logging/logTag.hpp"
  #include "runtime/globals_extension.hpp"
  #include "runtime/java.hpp"
  
--- 21,12 ---
   * questions.
   *
   */
  
  #include "precompiled.hpp"
! #include "gc/shenandoah/heuristics/shenandoahHeuristics.hpp"
  #include "gc/shenandoah/mode/shenandoahIUMode.hpp"
  #include "logging/log.hpp"
  #include "logging/logTag.hpp"
  #include "runtime/globals_extension.hpp"
  #include "runtime/java.hpp"
  

*** 59,24 ***
    SHENANDOAH_CHECK_FLAG_UNSET(ShenandoahSATBBarrier);
    SHENANDOAH_CHECK_FLAG_SET(ShenandoahIUBarrier);
    SHENANDOAH_CHECK_FLAG_SET(ShenandoahCASBarrier);
    SHENANDOAH_CHECK_FLAG_SET(ShenandoahCloneBarrier);
    SHENANDOAH_CHECK_FLAG_SET(ShenandoahStackWatermarkBarrier);
! }
- 
- ShenandoahHeuristics* ShenandoahIUMode::initialize_heuristics() const {
-   if (ShenandoahGCHeuristics == nullptr) {
-     vm_exit_during_initialization("Unknown -XX:ShenandoahGCHeuristics option (null)");
-   }
-   ShenandoahHeap* heap = ShenandoahHeap::heap();
-   if (strcmp(ShenandoahGCHeuristics, "aggressive") == 0) {
-     return new ShenandoahAggressiveHeuristics(heap);
-   } else if (strcmp(ShenandoahGCHeuristics, "static") == 0) {
-     return new ShenandoahStaticHeuristics(heap);
-   } else if (strcmp(ShenandoahGCHeuristics, "adaptive") == 0) {
-     return new ShenandoahAdaptiveHeuristics(heap);
-   } else if (strcmp(ShenandoahGCHeuristics, "compact") == 0) {
-     return new ShenandoahCompactHeuristics(heap);
-   }
-   vm_exit_during_initialization("Unknown -XX:ShenandoahGCHeuristics option");
-   return nullptr;
  }
--- 55,7 ---
    SHENANDOAH_CHECK_FLAG_UNSET(ShenandoahSATBBarrier);
    SHENANDOAH_CHECK_FLAG_SET(ShenandoahIUBarrier);
    SHENANDOAH_CHECK_FLAG_SET(ShenandoahCASBarrier);
    SHENANDOAH_CHECK_FLAG_SET(ShenandoahCloneBarrier);
    SHENANDOAH_CHECK_FLAG_SET(ShenandoahStackWatermarkBarrier);
!   SHENANDOAH_CHECK_FLAG_UNSET(ShenandoahCardBarrier);
  }
< prev index next >