hotspot/src/share/vm/gc/g1/g1OopClosures.inline.hpp
changeset 46282 a001553763bc
parent 37413 2f71679d06dd
child 46307 686d50172bfd
equal deleted inserted replaced
46281:758ec922d4f2 46282:a001553763bc
     1 /*
     1 /*
     2  * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   112       // Place on the references queue
   112       // Place on the references queue
   113       _par_scan_state->push_on_queue(p);
   113       _par_scan_state->push_on_queue(p);
   114     } else if (state.is_ext()) {
   114     } else if (state.is_ext()) {
   115       _par_scan_state->do_oop_ext(p);
   115       _par_scan_state->do_oop_ext(p);
   116     } else {
   116     } else {
   117       assert(!_g1->obj_in_cs(obj), "checking");
   117       assert(!_g1->is_in_cset(obj), "checking");
   118     }
   118     }
   119   }
   119   }
   120 }
   120 }
   121 
   121 
   122 template <class T>
   122 template <class T>