当前位置: 首页>>代码示例>>C++>>正文


C++ GenCollectedHeap::prepare_for_compaction方法代码示例

本文整理汇总了C++中GenCollectedHeap::prepare_for_compaction方法的典型用法代码示例。如果您正苦于以下问题:C++ GenCollectedHeap::prepare_for_compaction方法的具体用法?C++ GenCollectedHeap::prepare_for_compaction怎么用?C++ GenCollectedHeap::prepare_for_compaction使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在GenCollectedHeap的用法示例。


在下文中一共展示了GenCollectedHeap::prepare_for_compaction方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: GCTraceTime

void GenMarkSweep::mark_sweep_phase2() {
  // Now all live objects are marked, compute the new object addresses.

  // It is imperative that we traverse perm_gen LAST. If dead space is
  // allowed a range of dead object may get overwritten by a dead int
  // array. If perm_gen is not traversed last a Klass* may get
  // overwritten. This is fine since it is dead, but if the class has dead
  // instances we have to skip them, and in order to find their size we
  // need the Klass*!
  //
  // It is not required that we traverse spaces in the same order in
  // phase2, phase3 and phase4, but the ValidateMarkSweep live oops
  // tracking expects us to do so. See comment under phase4.

  GenCollectedHeap* gch = GenCollectedHeap::heap();

  GCTraceTime(Info, gc, phases) tm("Phase 2: Compute new object addresses", _gc_timer);

  gch->prepare_for_compaction();
}
开发者ID:campolake,项目名称:openjdk9,代码行数:20,代码来源:genMarkSweep.cpp


注:本文中的GenCollectedHeap::prepare_for_compaction方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。