mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
6976186: integrate Shark HotSpot changes
Shark is a JIT compiler for Zero that uses the LLVM compiler infrastructure. Reviewed-by: kvn, twisti
This commit is contained in:
parent
c9ac8cc788
commit
d7310fb0f7
67 changed files with 12200 additions and 40 deletions
|
@ -70,7 +70,7 @@ class ciMethod : public ciObject {
|
|||
|
||||
// Optional liveness analyzer.
|
||||
MethodLiveness* _liveness;
|
||||
#ifdef COMPILER2
|
||||
#if defined(COMPILER2) || defined(SHARK)
|
||||
ciTypeFlow* _flow;
|
||||
BCEscapeAnalyzer* _bcea;
|
||||
#endif
|
||||
|
@ -141,6 +141,9 @@ class ciMethod : public ciObject {
|
|||
|
||||
// Runtime information.
|
||||
int vtable_index();
|
||||
#ifdef SHARK
|
||||
int itable_index();
|
||||
#endif // SHARK
|
||||
address native_entry();
|
||||
address interpreter_entry();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue