equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 2001, 2014, 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. |
59 (_hr_)->hrs_index(), \ |
59 (_hr_)->hrs_index(), \ |
60 (_hr_)->is_survivor() ? "S" : (_hr_)->is_young() ? "E" : \ |
60 (_hr_)->is_survivor() ? "S" : (_hr_)->is_young() ? "E" : \ |
61 (_hr_)->startsHumongous() ? "HS" : \ |
61 (_hr_)->startsHumongous() ? "HS" : \ |
62 (_hr_)->continuesHumongous() ? "HC" : \ |
62 (_hr_)->continuesHumongous() ? "HC" : \ |
63 !(_hr_)->is_empty() ? "O" : "F", \ |
63 !(_hr_)->is_empty() ? "O" : "F", \ |
64 (_hr_)->bottom(), (_hr_)->top(), (_hr_)->end() |
64 p2i((_hr_)->bottom()), p2i((_hr_)->top()), p2i((_hr_)->end()) |
65 |
65 |
66 // sentinel value for hrs_index |
66 // sentinel value for hrs_index |
67 #define G1_NULL_HRS_INDEX ((uint) -1) |
67 #define G1_NULL_HRS_INDEX ((uint) -1) |
68 |
68 |
69 // A dirty card to oop closure for heap regions. It |
69 // A dirty card to oop closure for heap regions. It |
548 void set_containing_set(HeapRegionSetBase* containing_set) { |
548 void set_containing_set(HeapRegionSetBase* containing_set) { |
549 assert((containing_set == NULL && _containing_set != NULL) || |
549 assert((containing_set == NULL && _containing_set != NULL) || |
550 (containing_set != NULL && _containing_set == NULL), |
550 (containing_set != NULL && _containing_set == NULL), |
551 err_msg("containing_set: "PTR_FORMAT" " |
551 err_msg("containing_set: "PTR_FORMAT" " |
552 "_containing_set: "PTR_FORMAT, |
552 "_containing_set: "PTR_FORMAT, |
553 containing_set, _containing_set)); |
553 p2i(containing_set), p2i(_containing_set))); |
554 |
554 |
555 _containing_set = containing_set; |
555 _containing_set = containing_set; |
556 } |
556 } |
557 |
557 |
558 HeapRegionSetBase* containing_set() { return _containing_set; } |
558 HeapRegionSetBase* containing_set() { return _containing_set; } |