mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8180755: Remove use of bitMap.inline.hpp include from instanceKlass.hpp and c1_ValueSet.hpp
Reviewed-by: ehelin, coleenp, dholmes
This commit is contained in:
parent
b47172b765
commit
4c944bd1ca
24 changed files with 371 additions and 358 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -34,7 +34,6 @@
|
|||
#include "runtime/timerTrace.hpp"
|
||||
#include "utilities/bitMap.inline.hpp"
|
||||
#include "utilities/ostream.hpp"
|
||||
#include "prims/methodHandles.hpp"
|
||||
|
||||
//
|
||||
//
|
||||
|
@ -437,6 +436,10 @@ void GenerateOopMap::mark_bbheaders_and_count_gc_points() {
|
|||
}
|
||||
}
|
||||
|
||||
void GenerateOopMap::set_bbmark_bit(int bci) {
|
||||
_bb_hdr_bits.at_put(bci, true);
|
||||
}
|
||||
|
||||
void GenerateOopMap::reachable_basicblock(GenerateOopMap *c, int bci, int *data) {
|
||||
assert(bci>= 0 && bci < c->method()->code_size(), "index out of bounds");
|
||||
BasicBlock* bb = c->get_basic_block_at(bci);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue