From alan.bateman at oracle.com Mon Dec 3 09:31:22 2018 From: alan.bateman at oracle.com (alan.bateman at oracle.com) Date: Mon, 03 Dec 2018 09:31:22 +0000 Subject: hg: loom/loom: Move JVMTI mount event to after yield so that stack can be walked Message-ID: <201812030931.wB39VN6E017857@aojmv0008.oracle.com> Changeset: bbef43f7dfd8 Author: alanb Date: 2018-12-03 09:30 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/bbef43f7dfd8 Move JVMTI mount event to after yield so that stack can be walked ! src/java.base/share/classes/java/lang/Fiber.java From aph at redhat.com Mon Dec 3 16:49:35 2018 From: aph at redhat.com (Andrew Haley) Date: Mon, 3 Dec 2018 16:49:35 +0000 Subject: Scoped variables Message-ID: We discussed "scoped variables" as a possible fiber-oriented replacement for thread locals. I have some interest in this area, so I was wondering if anyone had started to work on this. If not, I'll volunteer to propose a design. These could also be useful even when fibers aren't being used: we'd want something more efficient than ThreadLocals, but that's a very low bar. So, please let me know. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From ron.pressler at oracle.com Mon Dec 3 18:24:30 2018 From: ron.pressler at oracle.com (Ron Pressler) Date: Mon, 3 Dec 2018 18:24:30 +0000 Subject: Scoped variables In-Reply-To: References: Message-ID: Hi Andrew. Yes, scope variables are indeed orthogonal to fibers (although we would like to? combine them with structured concurrency).? Dean Long has started working on an early prototype, which he?ll present hopefully soon. While scope locals are certainly superior to TLs from a programming perspective, I?m not sure beating them on sheer performance would be so easy. But If you? have some ideas on how to do that, they would be most welcome. Ron On December 3, 2018 at 4:49:47 PM, Andrew Haley (aph at redhat.com) wrote: We discussed "scoped variables" as a possible fiber-oriented replacement for thread locals. I have some interest in this area, so I was wondering if anyone had started to work on this. If not, I'll volunteer to propose a design. These could also be useful even when fibers aren't being used: we'd want something more efficient than ThreadLocals, but that's a very low bar. So, please let me know. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From john.r.rose at oracle.com Mon Dec 3 19:55:37 2018 From: john.r.rose at oracle.com (John Rose) Date: Mon, 3 Dec 2018 11:55:37 -0800 Subject: Scoped variables In-Reply-To: References: Message-ID: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> In part we are drawing on the very old idea of a Lisp "SPECIAL" variable. Such a variable is bound by a "LET" construct, which after compilation will be assigned to a stack frame, and managed within the lifetime of that frame. The thing that is special about such a variable is that, given the name of the variable, it can be accessed like a global, from blocks of source code not directly nested inside the "LET" that binds it. A non-special variable, aka a lexically scoped variable, is accessible only within the "LET" that binds it. Lexical scoping is the rule we are all accustomed to in C, Java, etc. The scoping of "SPECIAL" variables is sometimes called dynamic scoping. The variables in the Unix shells behave as if dynamically scoped, in that you can say "$x" inside a block of code that didn't bind "x", and still see it. In Lisp, modularity or privacy of a binding can be obtained by using a namespaced symbol, or an uninterned symbol. Java would manage such concerns using object APIs. Since the JVM (if not the Java language) has a clear idea of stack frame, it makes sense to adapt the Lisp concepts to be directly linked to frames. Thus, a Lisp SPECIAL is the older brother of a Java frame local. Anyway, that's the background, as I see it. (Caveat: None of these observations are intended to suggest that the Java source language should introduce dynamically scoped variables, any more than today's ThreadLocal should introduce a special kind of Java variable. Java's scoping rules are complicated enough as they stand, and Java's object model is sufficient for expressing dynamically bound constructs. Lisp "SPECIALs" were originally the only kind of variable available, back in the days when scoping was a research topic. Java can learn from history and choose the better alternative where Lisp was saddled with both.) (And why not "just do" fiber local variables like today's thread locals? That's an understandable starting point, but it would cause fibers with locals to acquire a permanent footprint cost, since there's no way for the JVM to prove that a fiber local goes out of scope and can be deleted. Java threads swim around with an accumulation of thread local footprint, like a whale shark dragging a colony of lampreys. Those same lampreys would overwhelm a goldfish. It's a problem of scaling. So old-fashioned Lisp "SPECIALs", or some other kind of frame-based local variable, are where you get when you finish properly adapting the idea of thread local to Java fibers.) At the implementation level, such as compiled code, the three basic operations for dynamically scoped variables are creating a binding, destroying a binding, and looking up the current binding. Lookups are inherently harder to optimize because the stack frame that does the lookup is not always the stack frame that holds the binding. So there's a search involved. (Lookups are done for both reads and writes of a SPECIAL variable. For Java it's an open question whether frame locals should be writable at all, since existing Java uplevel variables are final, and that works just fine for us. You can always add an indirection to a mutable box.) Two more basic operations usually pop up when you add threads: When you park a thread your implementation might choose to somehow move the bindings aside out of the way, and when you unpark a thread you would then want to move the bindings of that thread back into the foreground, where they can be more easily accessed. There's an old literature of how to implement the search for a dynamically scoped variable binding. Much of it precedes our modern notions of threading. But the basic trade-offs are still relevant, between what has been called "deep binding" and "shallow binding". These are not semantic features but implementation tactics. Shallow binding places the binding in a well known location (such as a global or static variable), which compiled code can easily access. Deep binding places the binding near the stack frame that created the binding, requiring a search among the candidate frames starting with the most recently created frames. Shallow binding is not thread safe unless the well known location is somehow localized or specialized to the thread. Although shallow binding seems like an easy win over deep binding, shallow binding can slow down thread parking and unparking, since all the global variables used by the relevant thread need to be edited. So the tradeoff is the cost of ownership of a binding, versus the cost of lookup. Clever implementations will try to balance both costs, and pay them only when they are necessary. A search for deep bindings can sometimes be made faster by indexing or hinting, or clever tabular organizations which approximate the characteristics of shallow bindings, as hash tables approximate arrays. Deep binding is a win when binding lookup is relatively infrequent compared to binding creation and thread switching. Deep binding can be viewed as a lazy evaluation tactic, where the costs of finding a binding are deferred until the value is actually looked up; conversely shallow binding is an eager technique for lookup. It's easy to create hybrid techniques, such as memoization of lookups (making the second one look more "shallow"), or storing hints in thread local and/or global tables. For fibers, since park and unpark are high frequency operations, pure shallow binding might well be a lose, at least for workloads with large numbers of dynamically scoped variables. But fibers naturally have an analog of thread park/unpark operations, and these events in the life cycle of the fiber can be tasked with moving around table pointers and/or hints for optimizing lookup of bindings. Also, fibers have a small amount of control state to which might be added additional tables or hints which would survive threading events, and allow a fiber to quickly locate frame-local bindings regardless of its recent history of threading. Using fiber-local control state has two challenges: First, it should be kept compact in footprint, like the fiber itself. Second, the cost of editing the state for bindings (which happens when bindings are created and destroyed) must not be excessive, since that would make method calls expensive, when methods bind frame locals. That said, initial implementations can be simple and a little wasteful, as long as there is headroom for later optimization, as workloads may require. If we do this right, a robust and performant mechanism for frame locals could let us refactor existing JVM features which today require stack walking. I'm thinking of doPrivileged, of course, and agreeing with Andrew's observation about "better thread locals". The techniques could co-exist: A frame local could define a cache point which would be initially empty but later filled (on demand) by a stack walk. A final observation: The JVM probably needs to be in the loop with frame locals; dynamic scoping is probably not something that can be implemented on top of the JVM in pure standard Java. When the JVM is asked to perform a lookup of a frame local, it should immediately know which method (out of all the methods which might possibly be on stack) is the method which can define that same frame local. This implies a registration or numbering of each frame local in the metadata for a method. It also suggests (to me) that each frame local should be defined in tandem with a statically defined annotation on each method that binds it. HTH ? John On Dec 3, 2018, at 10:24 AM, Ron Pressler wrote: > > Hi Andrew. > > Yes, scope variables are indeed orthogonal to fibers (although we would like to > combine them with structured concurrency). > > Dean Long has started working on an early prototype, which he?ll present hopefully soon. > While scope locals are certainly superior to TLs from a programming perspective, > I?m not sure beating them on sheer performance would be so easy. But If you > have some ideas on how to do that, they would be most welcome. > > Ron > > > On December 3, 2018 at 4:49:47 PM, Andrew Haley (aph at redhat.com) wrote: > > We discussed "scoped variables" as a possible fiber-oriented > replacement for thread locals. I have some interest in this area, so I > was wondering if anyone had started to work on this. If not, I'll > volunteer to propose a design. > > These could also be useful even when fibers aren't being used: we'd > want something more efficient than ThreadLocals, but that's a very low > bar. So, please let me know. > > -- > Andrew Haley > Java Platform Lead Engineer > Red Hat UK Ltd. > EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From dean.long at oracle.com Mon Dec 3 21:25:36 2018 From: dean.long at oracle.com (dean.long at oracle.com) Date: Mon, 3 Dec 2018 13:25:36 -0800 Subject: Scoped variables In-Reply-To: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> References: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> Message-ID: My prototype does not allow arbitrary methods to bind a frame/scope local. Instead, only one method is allowed to do that: public class FrameLocal { ??? public void doEnclosed(Runnable r) { ... } then inside the Runnable you can call set() to assign a value.? If we only wanted to allow an intial value, we could do somethine like: ??? public void doEnclosed(T newValue, Runnable r) { ... } For simplicity each variable needs to do its own doEnclosed call, but I can imagine also having a static method that takes a list of variables. My prototype has both deep and shallow "binding".? The deep binding stack walk looks for special StackWalkCookieHolder.doEnclosed frames that FrameLocal.doEnclosed uses.? The shallow binding uses both a stack and a cache. The per-variable stack keeps track of the most recent binding in the current Continuation or Thread (so it is associated with a call stack). Currently the stack is kept when the continuation is unmounted.? The cache keeps track of the stack that has the most recent binding.? This is because the most recent binding could be in a parent continuation or parent thread.? My prototype does not support a global binding as the parent to a thread binding.? Without fibers, continuations, or global bindings, then the most recent binding reduces to the thread binding, and there shouldn't be any need for a cache. The cache is a map and is reset every time the continuation is mounted/unmounted. The stack is looked up in a WeakHashMap, making it basically equivalent to a ThreadLocal.? If we had long-lived frame locals, then perhaps we could simply look them up in an array, but then why not use a long-lived thread local instead that could also be looked up in an array? To reduce Continuation storage requirements, we could choose not to retain the stacks after an unmount, but instead lazily rebuild using stack walks.? Right now I'm only using the deep stack walk to verify the results of the cache + stack lookup. dl On 12/3/18 11:55 AM, John Rose wrote: > In part we are drawing on the very old idea of a Lisp "SPECIAL" variable. > Such a variable is bound by a "LET" construct, which after compilation will > be assigned to a stack frame, and managed within the lifetime of that frame. > The thing that is special about such a variable is that, given the name of the > variable, it can be accessed like a global, from blocks of source code not > directly nested inside the "LET" that binds it. A non-special variable, aka > a lexically scoped variable, is accessible only within the "LET" that binds it. > Lexical scoping is the rule we are all accustomed to in C, Java, etc. > The scoping of "SPECIAL" variables is sometimes called dynamic scoping. > The variables in the Unix shells behave as if dynamically scoped, in that > you can say "$x" inside a block of code that didn't bind "x", and still see it. > > In Lisp, modularity or privacy of a binding can be obtained by using a > namespaced symbol, or an uninterned symbol. Java would manage > such concerns using object APIs. > > Since the JVM (if not the Java language) has a clear idea of stack frame, > it makes sense to adapt the Lisp concepts to be directly linked to frames. > Thus, a Lisp SPECIAL is the older brother of a Java frame local. > > Anyway, that's the background, as I see it. > > (Caveat: None of these observations are intended to suggest that the Java > source language should introduce dynamically scoped variables, any more > than today's ThreadLocal should introduce a special kind of Java variable. > Java's scoping rules are complicated enough as they stand, and Java's object > model is sufficient for expressing dynamically bound constructs. Lisp > "SPECIALs" were originally the only kind of variable available, back in the > days when scoping was a research topic. Java can learn from history > and choose the better alternative where Lisp was saddled with both.) > > (And why not "just do" fiber local variables like today's thread locals? > That's an understandable starting point, but it would cause fibers with > locals to acquire a permanent footprint cost, since there's no way for > the JVM to prove that a fiber local goes out of scope and can be > deleted. Java threads swim around with an accumulation of thread > local footprint, like a whale shark dragging a colony of lampreys. > Those same lampreys would overwhelm a goldfish. It's a problem > of scaling. So old-fashioned Lisp "SPECIALs", or some other kind > of frame-based local variable, are where you get when you finish > properly adapting the idea of thread local to Java fibers.) > > At the implementation level, such as compiled code, the three basic operations > for dynamically scoped variables are creating a binding, destroying a binding, > and looking up the current binding. Lookups are inherently harder to optimize > because the stack frame that does the lookup is not always the stack > frame that holds the binding. So there's a search involved. > > (Lookups are done for both reads and writes of a SPECIAL variable. > For Java it's an open question whether frame locals should be writable > at all, since existing Java uplevel variables are final, and that works just > fine for us. You can always add an indirection to a mutable box.) > > Two more basic operations usually pop up when you add threads: When you > park a thread your implementation might choose to somehow move the bindings > aside out of the way, and when you unpark a thread you would then want > to move the bindings of that thread back into the foreground, where they > can be more easily accessed. > > There's an old literature of how to implement the search for a dynamically > scoped variable binding. Much of it precedes our modern notions of threading. > But the basic trade-offs are still relevant, between what has been called > "deep binding" and "shallow binding". These are not semantic features > but implementation tactics. Shallow binding places the binding in a well > known location (such as a global or static variable), which compiled code can > easily access. Deep binding places the binding near the stack frame that created > the binding, requiring a search among the candidate frames starting with > the most recently created frames. Shallow binding is not thread safe unless the > well known location is somehow localized or specialized to the thread. > > Although shallow binding seems like an easy win over deep binding, > shallow binding can slow down thread parking and unparking, since > all the global variables used by the relevant thread need to be edited. > So the tradeoff is the cost of ownership of a binding, versus the cost > of lookup. Clever implementations will try to balance both costs, and > pay them only when they are necessary. A search for deep bindings > can sometimes be made faster by indexing or hinting, or clever > tabular organizations which approximate the characteristics of > shallow bindings, as hash tables approximate arrays. > > Deep binding is a win when binding lookup is relatively infrequent > compared to binding creation and thread switching. Deep binding > can be viewed as a lazy evaluation tactic, where the costs of finding > a binding are deferred until the value is actually looked up; conversely > shallow binding is an eager technique for lookup. It's easy to create > hybrid techniques, such as memoization of lookups (making the > second one look more "shallow"), or storing hints in thread local > and/or global tables. > > For fibers, since park and unpark are high frequency operations, pure > shallow binding might well be a lose, at least for workloads with large > numbers of dynamically scoped variables. But fibers naturally have > an analog of thread park/unpark operations, and these events in > the life cycle of the fiber can be tasked with moving around table > pointers and/or hints for optimizing lookup of bindings. > > Also, fibers have a small amount of control state to which might be > added additional tables or hints which would survive threading events, > and allow a fiber to quickly locate frame-local bindings regardless > of its recent history of threading. Using fiber-local control state has > two challenges: First, it should be kept compact in footprint, like the > fiber itself. Second, the cost of editing the state for bindings (which > happens when bindings are created and destroyed) must not be > excessive, since that would make method calls expensive, when > methods bind frame locals. That said, initial implementations can > be simple and a little wasteful, as long as there is headroom for > later optimization, as workloads may require. > > If we do this right, a robust and performant mechanism for frame > locals could let us refactor existing JVM features which today require > stack walking. I'm thinking of doPrivileged, of course, and agreeing > with Andrew's observation about "better thread locals". The techniques > could co-exist: A frame local could define a cache point which would > be initially empty but later filled (on demand) by a stack walk. > > A final observation: The JVM probably needs to be in the loop with > frame locals; dynamic scoping is probably not something that can be > implemented on top of the JVM in pure standard Java. When the > JVM is asked to perform a lookup of a frame local, it should immediately > know which method (out of all the methods which might possibly be > on stack) is the method which can define that same frame local. > This implies a registration or numbering of each frame local in the > metadata for a method. It also suggests (to me) that each frame > local should be defined in tandem with a statically defined annotation > on each method that binds it. > > HTH > ? John > > On Dec 3, 2018, at 10:24 AM, Ron Pressler wrote: >> Hi Andrew. >> >> Yes, scope variables are indeed orthogonal to fibers (although we would like to >> combine them with structured concurrency). >> >> Dean Long has started working on an early prototype, which he?ll present hopefully soon. >> While scope locals are certainly superior to TLs from a programming perspective, >> I?m not sure beating them on sheer performance would be so easy. But If you >> have some ideas on how to do that, they would be most welcome. >> >> Ron >> >> >> On December 3, 2018 at 4:49:47 PM, Andrew Haley (aph at redhat.com) wrote: >> >> We discussed "scoped variables" as a possible fiber-oriented >> replacement for thread locals. I have some interest in this area, so I >> was wondering if anyone had started to work on this. If not, I'll >> volunteer to propose a design. >> >> These could also be useful even when fibers aren't being used: we'd >> want something more efficient than ThreadLocals, but that's a very low >> bar. So, please let me know. >> >> -- >> Andrew Haley >> Java Platform Lead Engineer >> Red Hat UK Ltd. >> EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From dl at cs.oswego.edu Tue Dec 4 00:57:54 2018 From: dl at cs.oswego.edu (Doug Lea) Date: Mon, 3 Dec 2018 19:57:54 -0500 Subject: Scoped variables In-Reply-To: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> References: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> Message-ID: <374ace21-37bb-a7b2-f8ee-c542bb9b5b75@cs.oswego.edu> On 12/3/18 2:55 PM, John Rose wrote: > In part we are drawing on the very old idea of a Lisp "SPECIAL" variable. While people are contemplating alternatives, it would be great to see post-mortem evaluations of RTSJ Scoped Memory (which had similar ambitions), by people who implemented and used it. In the mean time, try googling "RTSJ scoped memory". -Doug From david.holmes at oracle.com Tue Dec 4 05:46:16 2018 From: david.holmes at oracle.com (David Holmes) Date: Tue, 4 Dec 2018 15:46:16 +1000 Subject: Scoped variables In-Reply-To: <374ace21-37bb-a7b2-f8ee-c542bb9b5b75@cs.oswego.edu> References: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> <374ace21-37bb-a7b2-f8ee-c542bb9b5b75@cs.oswego.edu> Message-ID: Hi Doug, On 4/12/2018 10:57 am, Doug Lea wrote: > On 12/3/18 2:55 PM, John Rose wrote: >> In part we are drawing on the very old idea of a Lisp "SPECIAL" variable. > > While people are contemplating alternatives, it would be great to see > post-mortem evaluations of RTSJ Scoped Memory (which had similar > ambitions), by people who implemented and used it. That's a very small set of people - as well you know :) RTSJ Scoped Memory is somewhat of a different beast to general "context"-local variables - where a context may be a thread, a fiber, a session, etc. RTSJ Scoped Memory actually allocated the objects into a memory region that had a lifetime that was connected to the active execution of the current thread. They were intended to act more like stack allocated Java objects, and came with significant restrictions on assignment and use as shorter-lived instances could not be assigned to fields of longer lived instances, nor returned up the call stack beyond the start of the allocation scope. (And a complex tree-based memory region management scheme, that allowed controlled sharing across threads, made things even more complex!) "context"-locals on the other hand don't deal with allocation at all, they are simply "maps" from the current-"context" to a named variable. I'm not sure what Loom "Scoped variables" are intended to be exactly. > In the mean time, try googling "RTSJ scoped memory". Made me feel quite nostalgic :) Cheers, David > > -Doug > From aph at redhat.com Tue Dec 4 10:39:28 2018 From: aph at redhat.com (Andrew Haley) Date: Tue, 4 Dec 2018 10:39:28 +0000 Subject: Scoped variables In-Reply-To: References: Message-ID: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> Hi, On 12/3/18 6:24 PM, Ron Pressler wrote: > Yes, scope variables are indeed orthogonal to fibers (although we would like to > combine them with structured concurrency). Sure. > Dean Long has started working on an early prototype, which he?ll > present hopef ully soon. Aw, I was too late. Never mind :-) I was looking for something interesting and reasonably self-contained to do. > While scope locals are certainly superior to TLs from a programming > perspective, I?m not sure beating them on sheer performance would be > so easy. But If you have some ideas on how to do that, they would be > most welcome. I'm really shocked by that. ThreadLocals are *horrible*: twelve memory loads and two conditional branches in the best case. I see John Rose's comments about the cost of maintaining the footprint cost of today's ThreadLocals, but the idea of searching down the stack for a binding isn't going to delight anyone. I don't want to poison the well before we've seen Dean Long's prototype, though. That would be unfair, so I'll wait. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From aph at redhat.com Tue Dec 4 10:51:36 2018 From: aph at redhat.com (Andrew Haley) Date: Tue, 4 Dec 2018 10:51:36 +0000 Subject: Scoped variables In-Reply-To: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> Message-ID: On 12/4/18 10:39 AM, Andrew Haley wrote: > I see John Rose's > comments about the cost of maintaining the footprint cost of today's > ThreadLocals, but the idea of searc I'm sorry, that sentence is completely incoherent. I meant to say that I understand John Rose's point about not wanting to increase the footprint of fibers, but the cost of searching the stack is not going to be pleasant. I don't believe that the cost of maintaining a little fiber-local state to facilitate fast lookups is necessarily worth avoiding. Oh no, I'm kibitzing again, so I'll stop there! -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From douglas.surber at oracle.com Tue Dec 4 15:02:22 2018 From: douglas.surber at oracle.com (Douglas Surber) Date: Tue, 4 Dec 2018 07:02:22 -0800 Subject: Scoped variables In-Reply-To: References: Message-ID: For what it is worth all the uses I have made of ThreadLocals are simpler than what I understand of this discussion. Yes, I have seen others use them in more sophisticated ways, but I haven't. I have only used ThreadLocals to avoid lock contention on Objects that could otherwise be static. In my uses I don't need or even want an Object per Java Thread. What would be better is an Object per core. Context switch while in a critical section of the Object would be problematic so Object per core might not be practical, but if it could be made to work it would be the ideal for my use cases. Douglas > On 12/3/18 2:55 PM, John Rose wrote: >> In part we are drawing on the very old idea of a Lisp "SPECIAL" variable. > From Alan.Bateman at oracle.com Tue Dec 4 15:10:33 2018 From: Alan.Bateman at oracle.com (Alan Bateman) Date: Tue, 4 Dec 2018 15:10:33 +0000 Subject: Scoped variables In-Reply-To: References: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> <374ace21-37bb-a7b2-f8ee-c542bb9b5b75@cs.oswego.edu> Message-ID: <8cd98fdb-b61e-40c9-a804-29a95d5d1d10@oracle.com> On 04/12/2018 05:46, David Holmes wrote: > > > RTSJ Scoped Memory is somewhat of a different beast to general > "context"-local variables - where a context may be a thread, a fiber, > a session, etc. > > RTSJ Scoped Memory actually allocated the objects into a memory region > that had a lifetime that was connected to the active execution of the > current thread. They were intended to act more like stack allocated > Java objects, and came with significant restrictions on assignment and > use as shorter-lived instances could not be assigned to fields of > longer lived instances, nor returned up the call stack beyond the > start of the allocation scope. (And a complex tree-based memory region > management scheme, that allowed controlled sharing across threads, > made things even more complex!) > > "context"-locals on the other hand don't deal with allocation at all, > they are simply "maps" from the current-"context" to a named variable. > > I'm not sure what Loom "Scoped variables" are intended to be exactly. If I understand RTSJ scoped memory correctly then it may have some similarities to the structured concurrency concepts that we are also exploring, esp. with nested scopes. We also want to explore using scoped locals within these fiber scopes. As regards the intentions then we have been surveying usages of thread locals. We talked briefly about this at the reason kick off meeting [1]. Part of the motivation is to see how far we can get without introducing "fiber locals". Another part is recognizing that a many existing usages of thread locals are because there isn't anything better. It's not hard to find cases where a thread local is used as an approximation of a processor local. It's also not hard to find cases where thread locals are used to make context available to callees further down in the stack - the typical pattern is create/set a thread local, do some task that will access the local further down in the stack, and then remove/clear the local in a finally block. It's these cases where we want to explore with frame/scoped locals. -Alan [1] http://cr.openjdk.java.net/~alanb/loom/LoomMeeting20181018.pdf From ron.pressler at oracle.com Tue Dec 4 15:26:16 2018 From: ron.pressler at oracle.com (Ron Pressler) Date: Tue, 4 Dec 2018 15:26:16 +0000 Subject: Scoped variables In-Reply-To: References: Message-ID: While thread-locals could be used as an approximation of processor locals, obviously any fiber-local variable (using any kind of API) would not be a good fit because there are orders-of-magnitude more fibers than cores. So some form of ?processor local? variables ?is yet another thing we?re working on :) Ron On December 4, 2018 at 3:04:35 PM, Douglas Surber (douglas.surber at oracle.com) wrote: For what it is worth all the uses I have made of ThreadLocals are simpler than what I understand of this discussion. Yes, I have seen others use them in more sophisticated ways, but I haven't. I have only used ThreadLocals to avoid lock contention on Objects that could otherwise be static. In my uses I don't need or even want an Object per Java Thread. What would be better is an Object per core. Context switch while in a critical section of the Object would be problematic so Object per core might not be practical, but if it could be made to work it would be the ideal for my use cases. Douglas > On 12/3/18 2:55 PM, John Rose wrote: >> In part we are drawing on the very old idea of a Lisp "SPECIAL" variable. > From ron.pressler at oracle.com Tue Dec 4 16:02:15 2018 From: ron.pressler at oracle.com (Ron Pressler) Date: Tue, 4 Dec 2018 16:02:15 +0000 Subject: Scoped variables In-Reply-To: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> Message-ID: Well, dynamic binding has the problem of both being associated with some? stack (among many concurrent ones) as well as the number and identity of variables? in scope varies depending on the particular call path (because it?s, well, dynamic). I am, therefore, not aware of an implementation of the concept that does not involve some kind of hash-map lookup (or worse). The question is how fast that map lookup? can be made to be. Ron On December 4, 2018 at 10:39:46 AM, Andrew Haley (aph at redhat.com) wrote: Hi, On 12/3/18 6:24 PM, Ron Pressler wrote: > Yes, scope variables are indeed orthogonal to fibers (although we would like to > combine them with structured concurrency). Sure. > Dean Long has started working on an early prototype, which he?ll > present hopef ully soon. Aw, I was too late. Never mind :-) I was looking for something interesting and reasonably self-contained to do. > While scope locals are certainly superior to TLs from a programming > perspective, I?m not sure beating them on sheer performance would be > so easy. But If you have some ideas on how to do that, they would be > most welcome. I'm really shocked by that. ThreadLocals are *horrible*: twelve memory loads and two conditional branches in the best case. I see John Rose's comments about the cost of maintaining the footprint cost of today's ThreadLocals, but the idea of searching down the stack for a binding isn't going to delight anyone. I don't want to poison the well before we've seen Dean Long's prototype, though. That would be unfair, so I'll wait. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From ron.pressler at oracle.com Tue Dec 4 16:07:12 2018 From: ron.pressler at oracle.com (Ron Pressler) Date: Tue, 4 Dec 2018 16:07:12 +0000 Subject: Scoped variables In-Reply-To: References: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> <374ace21-37bb-a7b2-f8ee-c542bb9b5b75@cs.oswego.edu> Message-ID: (I was actually a user of Sun?s Java Real Time System, an implementation of RTSJ, around 2004. There?s no reason to be nostalgic about RTSJ, though. RTSJ 2.0 has been quite actively specified over the past four years:?https://www.aicas.com/cms/en/rtsj) On December 4, 2018 at 5:46:34 AM, David Holmes (david.holmes at oracle.com) wrote: Hi Doug, On 4/12/2018 10:57 am, Doug Lea wrote: > On 12/3/18 2:55 PM, John Rose wrote: >> In part we are drawing on the very old idea of a Lisp "SPECIAL" variable. > > While people are contemplating alternatives, it would be great to see > post-mortem evaluations of RTSJ Scoped Memory (which had similar > ambitions), by people who implemented and used it. That's a very small set of people - as well you know :) RTSJ Scoped Memory is somewhat of a different beast to general "context"-local variables - where a context may be a thread, a fiber, a session, etc. RTSJ Scoped Memory actually allocated the objects into a memory region that had a lifetime that was connected to the active execution of the current thread. They were intended to act more like stack allocated Java objects, and came with significant restrictions on assignment and use as shorter-lived instances could not be assigned to fields of longer lived instances, nor returned up the call stack beyond the start of the allocation scope. (And a complex tree-based memory region management scheme, that allowed controlled sharing across threads, made things even more complex!) "context"-locals on the other hand don't deal with allocation at all, they are simply "maps" from the current-"context" to a named variable. I'm not sure what Loom "Scoped variables" are intended to be exactly. > In the mean time, try googling "RTSJ scoped memory". Made me feel quite nostalgic :) Cheers, David > > -Doug > From aph at redhat.com Tue Dec 4 17:12:30 2018 From: aph at redhat.com (Andrew Haley) Date: Tue, 4 Dec 2018 17:12:30 +0000 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> Message-ID: On 12/4/18 4:02 PM, Ron Pressler wrote: > I am, therefore, not aware of an implementation of the concept that > does not involve some kind of hash-map lookup (or worse). The > question is how fast that map lookup can be made to be. Exactly, yes. The problem is that the current TheadLocal code is very complex, and if we restrict ourselves to a simple get() we can do better. I don't know if you saw my analysis of ThreadLocal performance? It's at http://cs.oswego.edu/pipermail/concurrency-interest/2018-October/016628.html The fast path is 12 field loads, 5 conditional branches, and these are dependent loads, so have a lot of latency. We also suffer a fair bit from mispredicted branches, from the look of the profile. Josh Bloch said in that discussion that he didn't intend people to use ThreadLocal.get() with high frequency, but it's clear that Java programmers find them so attractive they'll use them all over the place. For example, in Chapter 7 of The Art Of Multiprocessor Programming a ThreadLocal is used to create a queue node for a CLH lock. It's not sensible to use a ThreadLocal for this, but it makes the example code shorter. Of course, every call to acquire() then takes 12 field loads just to get to the local queue node. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From dl at cs.oswego.edu Tue Dec 4 20:32:53 2018 From: dl at cs.oswego.edu (Doug Lea) Date: Tue, 4 Dec 2018 15:32:53 -0500 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> Message-ID: <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> On 12/4/18 12:12 PM, Andrew Haley wrote: > Exactly, yes. The problem is that the current TheadLocal code is very > complex, and if we restrict ourselves to a simple get() we can do > better. Could you explain? Of the possibilities I'm aware of that might be cheaper: * The cheapest version is to access a field of current Thread/Fiber, as is possible with Threads by defining Thread subclasses. * Close behind is to have an index associated with each Thread/Fiber that users could then use to access data in a separate array (or whatever) that they otherwise manage themselves. * Of variants hinted at by John Rose, the only potentially fast kind I know would be to stack-allocate at initial frames of a Thread/Fiber, and use a new form of VarHandle that can be passed in calls or even somehow implicitly accessed via some form of "display" so they can be accessed by children (in the same or a nested Thread/Fiber) (see https://en.wikipedia.org/wiki/Call_stack#Lexically_nested_routines) * Some updated form of RTSJ ScopedMemory regions. And ... > The fast path is 12 field loads, 5 conditional branches, and these are > dependent loads, so have a lot of latency. We also suffer a fair bit > from mispredicted branches, from the look of the profile. * It would be possible to create a variant of ThreadLocal that does not use WeakReferences, requiring explicit removal. This would reduce several loads. * Some usages might be able to tolerate a version providing only "static" ThreadLocals, that can use compile-time constants vs hashed keys. Short of these restrictions, despite the overhead, current ThreadLocals seem to be faster than any other general mechanism anyone has tried. But any further ideas for making them cheaper would be welcome. (Note also that we are sitting on some updates that will reduce garbage retention of ThreadLocals under some GCs at the expense of adding a "long" field per ThreadLocal. See http://cr.openjdk.java.net/~plevart/misc/JustMarkingReferenceQueue/webrev.04/) -Doug From dean.long at oracle.com Tue Dec 4 21:38:59 2018 From: dean.long at oracle.com (dean.long at oracle.com) Date: Tue, 4 Dec 2018 13:38:59 -0800 Subject: Scoped variables In-Reply-To: <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> Message-ID: On 12/4/18 12:32 PM, Doug Lea wrote: > On 12/4/18 12:12 PM, Andrew Haley wrote: >> Exactly, yes. The problem is that the current TheadLocal code is very >> complex, and if we restrict ourselves to a simple get() we can do >> better. > Could you explain? Of the possibilities I'm aware of that might be cheaper: > > * The cheapest version is to access a field of current Thread/Fiber, as > is possible with Threads by defining Thread subclasses. > > * Close behind is to have an index associated with each Thread/Fiber > that users could then use to access data in a separate array (or > whatever) that they otherwise manage themselves. I suppose we could also invert the above and having an index associated with each thread local to access an array in each fiber.? We could allocate the index for the life of the VM if we had a flavor of "permanent" thread local. However, recycling indexes and resizing arrays when a non-permanent thread local becomes collectable by the GC doesn't sound trivial to me. > * Of variants hinted at by John Rose, the only potentially fast kind I > know would be to stack-allocate at initial frames of a Thread/Fiber, and > use a new form of VarHandle that can be passed in calls or even somehow > implicitly accessed via some form of "display" so they can be accessed > by children (in the same or a nested Thread/Fiber) > (see https://en.wikipedia.org/wiki/Call_stack#Lexically_nested_routines) If I understand this correctly, we wouldn't have to map from a shared key object to something stack-local, because we would only allow access through something that is already stack-local.? However, I don't see how the inner callee lookup could be directly associated with the outer binding. If each frame was passed a hidden list of bound VarHandles, then it seems like lookup would still need to search that list, though the list is probably short. dl > * Some updated form of RTSJ ScopedMemory regions. > > And ... > >> The fast path is 12 field loads, 5 conditional branches, and these are >> dependent loads, so have a lot of latency. We also suffer a fair bit >> from mispredicted branches, from the look of the profile. > * It would be possible to create a variant of ThreadLocal that does not > use WeakReferences, requiring explicit removal. This would reduce > several loads. > > * Some usages might be able to tolerate a version providing only > "static" ThreadLocals, that can use compile-time constants vs hashed keys. > > Short of these restrictions, despite the overhead, current ThreadLocals > seem to be faster than any other general mechanism anyone has tried. But > any further ideas for making them cheaper would be welcome. > > (Note also that we are sitting on some updates that will reduce garbage > retention of ThreadLocals under some GCs at the expense of adding a > "long" field per ThreadLocal. See > http://cr.openjdk.java.net/~plevart/misc/JustMarkingReferenceQueue/webrev.04/) > > -Doug From david.lloyd at redhat.com Tue Dec 4 21:46:19 2018 From: david.lloyd at redhat.com (David Lloyd) Date: Tue, 4 Dec 2018 15:46:19 -0600 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> Message-ID: On Tue, Dec 4, 2018 at 3:41 PM wrote: > On 12/4/18 12:32 PM, Doug Lea wrote: > > On 12/4/18 12:12 PM, Andrew Haley wrote: > >> Exactly, yes. The problem is that the current TheadLocal code is very > >> complex, and if we restrict ourselves to a simple get() we can do > >> better. > > Could you explain? Of the possibilities I'm aware of that might be cheaper: > > > > * The cheapest version is to access a field of current Thread/Fiber, as > > is possible with Threads by defining Thread subclasses. > > > > * Close behind is to have an index associated with each Thread/Fiber > > that users could then use to access data in a separate array (or > > whatever) that they otherwise manage themselves. > > I suppose we could also invert the above and having an index associated with > each thread local to access an array in each fiber. We could allocate > the index > for the life of the VM if we had a flavor of "permanent" thread local. > However, recycling indexes and resizing arrays when a non-permanent > thread local becomes collectable by the GC doesn't sound trivial to me. It's a tradeoff, however an array indexed by thread ID would almost certainly be subject to false sharing, so that's no panacea either. > > * Of variants hinted at by John Rose, the only potentially fast kind I > > know would be to stack-allocate at initial frames of a Thread/Fiber, and > > use a new form of VarHandle that can be passed in calls or even somehow > > implicitly accessed via some form of "display" so they can be accessed > > by children (in the same or a nested Thread/Fiber) > > (see https://en.wikipedia.org/wiki/Call_stack#Lexically_nested_routines) > > If I understand this correctly, we wouldn't have to map from a shared > key object > to something stack-local, because we would only allow access through > something that is already stack-local. However, I don't see how the inner > callee lookup could be directly associated with the outer binding. If > each frame > was passed a hidden list of bound VarHandles, then it seems like lookup > would > still need to search that list, though the list is probably short. Passing hidden values is a good use case for static thread locals (assuming they would utilize just a couple of lookups). In fact static thread locals can be used to implement probably most of the suggested mechanisms... -- - DML From dean.long at oracle.com Tue Dec 4 22:06:34 2018 From: dean.long at oracle.com (dean.long at oracle.com) Date: Tue, 4 Dec 2018 14:06:34 -0800 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> Message-ID: I'd like to hear more about static thread locals and how they could be implemented.? It's not clear to me how we would implement something dynamic on top of the something static. dl On 12/4/18 1:46 PM, David Lloyd wrote: > Passing hidden values is a good use case for static thread locals > (assuming they would utilize just a couple of lookups). In fact > static thread locals can be used to implement probably most of the > suggested mechanisms... From david.lloyd at redhat.com Tue Dec 4 22:56:05 2018 From: david.lloyd at redhat.com (David Lloyd) Date: Tue, 4 Dec 2018 16:56:05 -0600 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> Message-ID: They would, I presume, be largely similar in form and function to what you get if you create a _Thread_local static variable in C11. This is complicated somewhat by the fact of multiple classes/class loaders (this is akin to the DSO problem on UNIX-like systems) and the fact of lazy class loading (meaning it's generally not practical to simply allocate all your thread locals up front). As for implementation specifics - I would say that the simplest approach (with existing technology) would be an array of objects on Thread, where the indexes are (as you suggested) allocated and freed based on the introduction and eventual GC of the corresponding class loaders and the object is some blob of memory holding the actual values at predictable offsets. So a lookup would be something like: currentThread().threadLocals[idx].actualThreadLocal, which looks like maybe three or four memory loads to my untrained eye, compared the (presumably) single memory load for fields-on-thread. The "blob" object could be a regular Java object corresponding to the set of static thread locals for each class. But it's probably possible to do a little better than that with the help of the JVM; for example if you could derive the address of the array from the thread ID, or better yet if you could derive the address of the actual thread local storage area based on both thread ID *and* class[loader] (skipping an array altogether), you could probably cut out one or two loads and get close to field-on-thread-like performance, give or take the cost of probably worse memory locality in this case (TLB as well as cache misses, probably) compared to having all those fields nestled together on Thread. Putting the array on the thread (instead of having an array containing values for each thread) means (in addition to avoiding false sharing problems) that if the array must grow, it can do so without any contention or interference from other threads (barring GC events that might arise from growing the array itself). Regardless of the details of implementation, this kind of static thread local, by virtue of its relative efficiency, can be used to pass invisible parameters in the obvious manner, but also can be used to support various lexically scoped constructs simply by setting and replacing values on a lexical basis: // lifted syntax for C11 for illustration static _Thread_local Thing threadLocal; // [...] public void doWithNewThing(Runnable action) { Thing oldVal = threadLocal; threadLocal = new Thing(); try { action.run(); } finally { threadLocal = oldVal; } } Also if you pass oldVal to Thing's constructor, you can have a cheap singly linked list which can be a performant alternative to stack walking in many cases. This technique was part of the basis of my pure-Java access controller prototype. Beyond that, anything that can be done with a field on Thread can be done with static thread locals (albeit at a slight increase in cost, though still substantially less than that of ThreadLocal). Per-instance thread locals in the vein of today's ThreadLocal (in the non-static case) could be implemented via map or weak-map of instance to value within a static, at a similar cost to what ThreadLocal has today. A task-local object with fields representing the task-local-scoped items could be stashed in a single static thread local, allowing rapid switching between task contexts. A static thread local could be used to store a pointer to a previous stack frame or to an object allocated therein which could be dereferenced to access stack-scoped variables. It's hard to imagine a better (whether simpler or with better performance potential) fundamental building block for any of the constructs suggested in this (email) thread, other than fields on Thread itself. On Tue, Dec 4, 2018 at 4:06 PM wrote: > > I'd like to hear more about static thread locals and how they could be > implemented. It's not clear to me how we would implement something > dynamic on top of the something static. > > dl > > On 12/4/18 1:46 PM, David Lloyd wrote: > > Passing hidden values is a good use case for static thread locals > > (assuming they would utilize just a couple of lookups). In fact > > static thread locals can be used to implement probably most of the > > suggested mechanisms... > -- - DML From john.r.rose at oracle.com Wed Dec 5 00:03:29 2018 From: john.r.rose at oracle.com (John Rose) Date: Tue, 4 Dec 2018 16:03:29 -0800 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> Message-ID: On Dec 4, 2018, at 1:38 PM, dean.long at oracle.com wrote: > > On 12/4/18 12:32 PM, Doug Lea wrote: >> On 12/4/18 12:12 PM, Andrew Haley wrote: >>> Exactly, yes. The problem is that the current TheadLocal code is very >>> complex, and if we restrict ourselves to a simple get() we can do >>> better. >> Could you explain? Of the possibilities I'm aware of that might be cheaper: >> >> * The cheapest version is to access a field of current Thread/Fiber, as >> is possible with Threads by defining Thread subclasses. (This one doesn't scale to several modules defining several FLs. It's probably an oversimplification to have just one, or just some small N. Making it open-ended large N requires a search and/or a sparse table.) >> >> * Close behind is to have an index associated with each Thread/Fiber >> that users could then use to access data in a separate array (or >> whatever) that they otherwise manage themselves. > > I suppose we could also invert the above and having an index associated with > each thread local to access an array in each fiber. We could allocate the index > for the life of the VM if we had a flavor of "permanent" thread local. > However, recycling indexes and resizing arrays when a non-permanent > thread local becomes collectable by the GC doesn't sound trivial to me. This is a stop on the way to the "sweet spot" I mentioned. You can certainly allocate the index for the life of the VM, but if you also forbid collisions (by using a plain array) you must allocate slices of those arrays for the life of the VM, even if the FL has disappeared, perhaps due to class unloading. (You can also try to storage-manage slices of those arrays, recycling them when FLs are GCed, but that's not IMO a sweet spot.) Keeping the binding index arrays (sometimes called "displays") limited in size requires either a static model which assigns and packs indexes into small arrays, or else allowing collisions. Collisions require search, which is where I think the sweet spot it: Just make sure the search is O(1) on average, and maybe O(log(N)) at worst, like HashMap. So, I'd guess you are on the right track, but you haven't taken footprint into account yet. > >> * Of variants hinted at by John Rose, the only potentially fast kind I >> know would be to stack-allocate at initial frames of a Thread/Fiber, and >> use a new form of VarHandle that can be passed in calls or even somehow >> implicitly accessed via some form of "display" so they can be accessed >> by children (in the same or a nested Thread/Fiber) >> (see https://en.wikipedia.org/wiki/Call_stack#Lexically_nested_routines) Implicit access is really at the root of the problem space we are discussing. The thing being accessed is somehow coupled to the current JVM stack frame, but without being a local, stack element, or monitor. We will end up adding yet another kind of stack frame state here, I predict; I think it will wedge in nicely next to the existing JVM monitor array, both in spec. and implementation. Getting a caller's implicit state into a callee is what requires all the clever searching and/or display management. For the record again, I think we are right to jump directly to frame locals after being forced to abandon ThreadLocal for a number of use cases. Frame locals should align very directly to the JVM's frame-based semantics, and so are likely to optimize better than hanging them off of other, less primary entities. And if we succeed in making them fast, library writers will be encouraged to move most of their use cases off of ThreadLocal and onto frame locals. Using a VH is a good way to package up the lookup "smarts". So is an general Java object, but general APIs are not signature-polymorphic, so VHs are likely to play a role here. Doug's observation is that if you can obtain a constant VH you can parley that (with an extra indirection or so) into non-constant proper variable. I would like to reply, though, that lookup of an implicit *constant* value, possibly inherited from a caller frame, is the proper primitive to start with. In many cases, you just need a constant value (think "final Java variable"). In other cases, you can have the defining frame bind the constant value to a mutable "box", either as a crude 1-element Java array, or using a VH. Also, regarding frame-scoped heaps, those are IMO not the proper primitive here. A frame-scoped heap must be paired with some sort of implicit access to a root set and/or factory for the heap, so something like inherited frame local constants is needed to go along with frame-scoped heaps. But if you have inherited frame-local constants, you can represent heap roots using VHs or Maps or the like, and represent factories using MHs or Suppliers or the like. As for the storage lifetime of the frame-scoped heaps, it is an interesting and useful performance model that when you leave the scope the heap is (or might be) bulk-deallocated. But that model can be readily approximated by other means than frame-scoped heaps. Just using inherited frame-local displays, plus ordinary GC-able data structures, will perform adequately for non-RT applications; there's not always a need to do resettable storage. Properly resettable storage, OTOH, requires special concurrency guarantees, such as linear chain of ownership, or it is not safe. Without touching inheritable frame-local variables, the Panama project is experimenting with resettable resource scopes (which can malloc and free safely on behalf of a Java thread). To me, all this indicates that frame-scoped heaps and frane-local variables are independent capabilities, neither subsuming the other. > If I understand this correctly, we wouldn't have to map from a shared key object > to something stack-local, because we would only allow access through > something that is already stack-local. However, I don't see how the inner > callee lookup could be directly associated with the outer binding. If each frame > was passed a hidden list of bound VarHandles, then it seems like lookup would > still need to search that list, though the list is probably short. Yep. IMO the challenge is to allow the search but keep it short. BTW, some outlier events, like deoptimization, or even JIT compilation, are likely to overturn the carefully managed displays and require an episode of searching. What I'm saying is that we should not reject a technique if it *sometimes* requires searching, only if it *often* requires it, or maybe if there is no way of making a QOS guarantee (such as O(log something)). BTW, Dean, what you've done is a really cool first step. I'm not throwing any shade here, just encouraging us to follow the logic of the tradeoffs. One thing I like about your prototype is that you avoid registering user-defined methods (which requires something like annotations to call them out statically) in favor of a single method that creates *all* the bindings. I do think a more human-friendly design might involve pairs of statically marked (annotated) methods and private-static-final VH-like entities to get their values, rather than unnamed FrameLocal objects, not statically associated with metadata. There's got to be a metadata link, which in the prototype is to FL::doEnclosed, but something more open-ended may be desirable in the end, and that leads to a less object-oriented and more metadata-oriented design. ? John From john.r.rose at oracle.com Wed Dec 5 00:05:55 2018 From: john.r.rose at oracle.com (John Rose) Date: Tue, 4 Dec 2018 16:05:55 -0800 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> Message-ID: On Dec 4, 2018, at 1:46 PM, David Lloyd wrote: > > In fact > static thread locals can be used to implement probably most of the > suggested mechanisms... That seems unlikely, since in Loom stack frames are carried by fibers, and fibers freely circulate across threads. The implication of this is that fiber mount/unmount would have to push display information into static thread locals; if there are N of them (statically defined), then there is Nx as much churn for mount/dismount. Seems like a dead end to me. From john.r.rose at oracle.com Wed Dec 5 00:07:28 2018 From: john.r.rose at oracle.com (John Rose) Date: Tue, 4 Dec 2018 16:07:28 -0800 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> Message-ID: <3EED73F4-93C6-445B-B232-F41C821F52F1@oracle.com> On Dec 4, 2018, at 9:12 AM, Andrew Haley wrote: > > Josh Bloch said in that discussion that he didn't intend people to use > ThreadLocal.get() with high frequency, but it's clear that Java > programmers find them so attractive they'll use them all over the > place. > > For example, in Chapter 7 of The Art Of Multiprocessor Programming a > ThreadLocal is used to create a queue node for a CLH lock. It's not > sensible to use a ThreadLocal for this, but it makes the example code > shorter. Of course, every call to acquire() then takes 12 field loads > just to get to the local queue node. That's all to the good if we can make FL's (F=fiber or frame) faster than TLs. It will prompt people to migrate away from a poor abstraction (for the use cases we are discussing) to a good one, with performance as the reward. As it should be. From david.lloyd at redhat.com Wed Dec 5 00:07:59 2018 From: david.lloyd at redhat.com (David Lloyd) Date: Tue, 4 Dec 2018 18:07:59 -0600 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> Message-ID: On Tue, Dec 4, 2018 at 6:06 PM John Rose wrote: > On Dec 4, 2018, at 1:46 PM, David Lloyd wrote: > > > In fact > static thread locals can be used to implement probably most of the > suggested mechanisms... > > > That seems unlikely, since in Loom stack frames are carried by > fibers, and fibers freely circulate across threads. The implication > of this is that fiber mount/unmount would have to push display > information into static thread locals; if there are N of them (statically > defined), then there is Nx as much churn for mount/dismount. > Seems like a dead end to me. Only if you have a 1:1 relationship between task and thread locals, which I agree is a losing strategy, but if you could group all your task-locals into one object then you could activate them with a single swap, which is really where you want to be. -- - DML From john.r.rose at oracle.com Wed Dec 5 00:10:44 2018 From: john.r.rose at oracle.com (John Rose) Date: Tue, 4 Dec 2018 16:10:44 -0800 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> Message-ID: On Dec 4, 2018, at 2:06 PM, dean.long at oracle.com wrote: > > I'd like to hear more about static thread locals and how they could be > implemented. It's not clear to me how we would implement something > dynamic on top of the something static. In my (perhaps hasty) response to David, I assumed what he meant was something like this: Pick a small N, allocate N fields somewhere inside each Thread, either lazily or eagerly, and hand out tickets to requesters for "static TLs", turning them away at the door when N tickets have been handed out. Or maybe handing latecomers a consolation prize of an ordinary dynamic TL. This sort of thing is not a bad idea, but I don't think Thread is the place to look for context, for the reason I gave. > dl > > On 12/4/18 1:46 PM, David Lloyd wrote: >> Passing hidden values is a good use case for static thread locals >> (assuming they would utilize just a couple of lookups). In fact >> static thread locals can be used to implement probably most of the >> suggested mechanisms... > From john.r.rose at oracle.com Wed Dec 5 00:33:20 2018 From: john.r.rose at oracle.com (John Rose) Date: Tue, 4 Dec 2018 16:33:20 -0800 Subject: Scoped variables In-Reply-To: References: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> Message-ID: <3BF3EDE3-177E-4A5F-822D-4EE442C682F2@oracle.com> On Dec 3, 2018, at 1:25 PM, dean.long at oracle.com wrote: > > My prototype does not allow arbitrary methods to bind a frame/scope local. > Instead, only one method is allowed to do that: > > public class FrameLocal { > > public void doEnclosed(Runnable r) { ... } > > then inside the Runnable you can call set() to assign a value. If we only wanted > to allow an intial value, we could do somethine like: > > public void doEnclosed(T newValue, Runnable r) { ... } > > For simplicity each variable needs to do its own doEnclosed call, but I can > imagine also having a static method that takes a list of variables. > > My prototype has both deep and shallow "binding". The deep binding stack walk > looks for special StackWalkCookieHolder.doEnclosed frames that > FrameLocal.doEnclosed uses. I like the thought here: There are several kinds of "cookies" you might need to look for in a stack walk. The JVM should unify them; the reward will be simpler code and better return on investment in JIT optimizations. Stack based access control is today's such cookie. > The shallow binding uses both a stack and a cache. > The per-variable stack keeps track of the most recent binding in the current > Continuation or Thread (so it is associated with a call stack). That makes sense. One thing to consider is using the defining stack frame as a place to allocate storage for this stack (for extending it). As a precedent for this, note that the result of a monitorenter instruction is also allocated in the stack frame which issues the instruction, in both the interpreter and compiler. It's more straightforward at first to put such things in a thread-linked side array, but eventually we probably want to consolidate all the state into one block of stack, where the JIT can manage it intensively. This may lead (as I'm sure you see) to display blocks floating inside of stack frames that define them, with younger displays pointing (perhaps) to older displays in ancestor frames. > Currently the stack > is kept when the continuation is unmounted. The cache keeps track of the stack > that has the most recent binding. This is because the most recent binding could > be in a parent continuation or parent thread. Good that you are covering that case. These things need to span all the way up the callee-to-caller relation, not stop at continuation boundaries. It also adds complexity: If a parent frame returns, perhaps during concurrent execution in a different fiber, but a child frame still needs access to a frame local, the frame local binding must be preserved somehow for the child's use. Suggestion: This is one reason *constant* bindings are preferable to *variable* bindings. It's easier to "fork" a constant to distinct clients than share a link to a variable, and there's no loss of generality. > My prototype does not support a > global binding as the parent to a thread binding. That was Lisp's problem, because they started with global variables, then made them "SPECIAL" by default, and only then discovered that lexical scoping was preferable. This means that every dynamically scoped variable must (potentially) alias to a mutable global variable, if not bound by an intervening frame. Sure glad that's not us. > Without fibers, continuations, or > global bindings, then the most recent binding reduces to the thread binding, and > there shouldn't be any need for a cache. (The model can be thread-agnostic, right? You just have to find the frame that defined the local; doesn't matter who owns it or how.) > The cache is a map and is reset every time the continuation is mounted/unmounted. Yep. We could also try to salvage the cache at unmount and reuse it at remount. This would be pretty easy if the structure of the cache is (a) rooted in the fiber and (b) allocated in the frames of the fiber. Major events like JIT or deopt could reset the cache by zeroing out the root variables in the fiber. > The stack is looked up in a WeakHashMap, making it basically equivalent to a > ThreadLocal. If we had long-lived frame locals, then perhaps we could simply look > them up in an array, but then why not use a long-lived thread local instead that > could also be looked up in an array? That smells like footprint to me. There's a WHM per active fiber? I suppose it's OK if the WHM is discarded when the fiber unmounts. (Or keep it in a weak reference field on the fiber?) > To reduce Continuation storage requirements, we could choose not to retain the > stacks after an unmount, but instead lazily rebuild using stack walks. Right now > I'm only using the deep stack walk to verify the results of the cache + stack > lookup. Yep. That's the sort of trade-off that faces us. Another point about allocating stacks inside of actual stack frames: Reconstructing them simply requires walking the stack and noticing where they were. ? John From dean.long at oracle.com Wed Dec 5 08:29:04 2018 From: dean.long at oracle.com (dean.long at oracle.com) Date: Wed, 5 Dec 2018 00:29:04 -0800 Subject: Scoped variables In-Reply-To: <3BF3EDE3-177E-4A5F-822D-4EE442C682F2@oracle.com> References: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> <3BF3EDE3-177E-4A5F-822D-4EE442C682F2@oracle.com> Message-ID: On 12/4/18 4:33 PM, John Rose wrote: >> Currently the stack >> is kept when the continuation is unmounted. The cache keeps track of the stack >> that has the most recent binding. This is because the most recent binding could >> be in a parent continuation or parent thread. > Good that you are covering that case. These things need to span all the > way up the callee-to-caller relation, not stop at continuation boundaries. > > It also adds complexity: If a parent frame returns, perhaps during concurrent > execution in a different fiber, but a child frame still needs access to a frame > local, the frame local binding must be preserved somehow for the child's use. > Suggestion: This is one reason*constant* bindings are preferable to*variable* > bindings. It's easier to "fork" a constant to distinct clients than share a link to > a variable, and there's no loss of generality. > In order for the parent frame to return without the child frame returning first, I believe they must be in separate continuations.? When the child frame tries to access the frame local, the logic should match what a stack walk would find. If there is no binding in the child frame's continuation, we go to the parent continuation.? If the top binding in the parent went away because a frame returned, we keep walking frames.? In my prototype, we would miss in the cache, and then look in the stack associated with each parent continuation.? If I understand correctly, in my prototype, the opportunity for binding "forking" and added complexity on mount/unmount would show up in trying to cleverly preserve existing cache entries rather rebuilding from a clean cache each time, which is something I considered but haven't attempted. >> Without fibers, continuations, or >> global bindings, then the most recent binding reduces to the thread binding, and >> there shouldn't be any need for a cache. > (The model can be thread-agnostic, right? You just have to find the frame that > defined the local; doesn't matter who owns it or how.) Yes, it can be thread-agnostic.? In the loom world, if there was always a default continuation, even for threads, then I could use that.? But for now, I put the binding stacks and cache in what I call a FrameLocalsProvider object, which is stored as close to where the frames live as possible: in Threads and Continuations in loom.? The getParent() operation returns a FrameLocalsProvider as well. > >> The cache is a map and is reset every time the continuation is mounted/unmounted. > Yep. We could also try to salvage the cache at unmount and reuse it at remount. > This would be pretty easy if the structure of the cache is (a) rooted in the fiber and > (b) allocated in the frames of the fiber. Major events like JIT or deopt could reset the > cache by zeroing out the root variables in the fiber. I think it would be safe to clone the parent cache when a fresh continuation is mounted. On a resume, perhaps we could salvage the old cache if 1) we have the same parent, and 2) that parent is not "dirty" (hasn't been umounted and remounted). >> The stack is looked up in a WeakHashMap, making it basically equivalent to a >> ThreadLocal. If we had long-lived frame locals, then perhaps we could simply look >> them up in an array, but then why not use a long-lived thread local instead that >> could also be looked up in an array? > That smells like footprint to me. There's a WHM per active fiber? Yes, it's per FrameLocalsProvider. > I suppose it's > OK if the WHM is discarded when the fiber unmounts. (Or keep it in a weak > reference field on the fiber?) > >> To reduce Continuation storage requirements, we could choose not to retain the >> stacks after an unmount, but instead lazily rebuild using stack walks. Right now >> I'm only using the deep stack walk to verify the results of the cache + stack >> lookup. > Yep. That's the sort of trade-off that faces us. Another point about allocating > stacks inside of actual stack frames: Reconstructing them simply requires > walking the stack and noticing where they were. I did try to approximate having slots in native stack frames, using local variables. Our current stackwalk code allows us to read locals in frames but not write to them (at least not without deoptimizing), so I do use the mutable "box" you described to store stack nodes, and those are linked to earlier nodes. Thanks for all the feedback! dl > ? John > > From aph at redhat.com Wed Dec 5 10:15:23 2018 From: aph at redhat.com (Andrew Haley) Date: Wed, 5 Dec 2018 10:15:23 +0000 Subject: Scoped variables In-Reply-To: <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> Message-ID: <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> On 12/4/18 8:32 PM, Doug Lea wrote: > On 12/4/18 12:12 PM, Andrew Haley wrote: >> The problem is that the current TheadLocal code is very complex, >> and if we restrict ourselves to a simple get() we can do better. > > Could you explain? Of the possibilities I'm aware of that might be cheaper: > > * The cheapest version is to access a field of current Thread/Fiber, as > is possible with Threads by defining Thread subclasses. We don't have to restrict ourselves to Java code. Digging into the JVM, there is (usually) a register pointing to the current VM thread metadata. Thread.currentThread() is a field in that structure. About half of the code in ThreadLocal.get() is because of bounds checks, indirections, type checks, and null pointer checks. The null pointer checks facilitate lazy initialization, which we don't need in scoped variables. There also some indirections because structures such as HashMap have to go from the Map itself to its table: current Java requires it. There are some because of the use of WeakReferences, which scoped variables won't need because they disappear when the scope exits. Finally, scoped variables don't need type checks any more than ordinary field loads do: the VM can enforce that. Of course, not all of these optimizations need to be done in a first cut, but any design should IMO allow them. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From dl at cs.oswego.edu Wed Dec 5 12:56:10 2018 From: dl at cs.oswego.edu (Doug Lea) Date: Wed, 5 Dec 2018 07:56:10 -0500 Subject: Scoped variables In-Reply-To: <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> Message-ID: <0b3ed480-7daf-28a9-f9cd-2dc0c2bed685@cs.oswego.edu> On 12/5/18 5:15 AM, Andrew Haley wrote: > there is (usually) a register pointing to the current VM thread metadata. > Thread.currentThread() is a field in that structure. Separately from other issues ... The possible need for different kinds of variables stems from in part the issue that if Fibers are Threads, then Thread.currentThread() might return something that does not want to support some Thread methods or fields. (Basically, this is a is-a vs has-a issue.) Other lightweight execution frameworks (in JDK, most notably ForkJoin{Pool,Task}) include methods to access task-, thread-, and group/pool-level context, allowing multiple levels of context. People using these frameworks seem to cope OK with this. They either avoid using ThreadLocals for tasks that may run under unknown worker threads, or use ThreadFactories to specially configure workers. This was also one motivation for considering introducing CPU-locals, as another form of context. Which would be handy in a few nichy cases but would not be very helpful in replacing the "builtin" Thread-locals for ThreadLocalRandom and secondary seed/probe (used only by java.util.concurrent). Because Fiber scheduling is not (and probably cannot be) preemptive, unsynchronized thread-local updates of random seeds etc would work fine even if fibers could move across threads. Without further support like restartable regions, the same would not hold for CPU-locals. -Doug From dl at cs.oswego.edu Wed Dec 5 13:24:38 2018 From: dl at cs.oswego.edu (Doug Lea) Date: Wed, 5 Dec 2018 08:24:38 -0500 Subject: Scoped variables In-Reply-To: <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> Message-ID: <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> On 12/5/18 5:15 AM, Andrew Haley wrote: > About half of the code in ThreadLocal.get() is because of bounds > checks, indirections, type checks, and null pointer checks. Yeah, welcome to my world. It takes code that people think is weird/ugly to express these in ways that are still pretty fast. I haven't tried recently with ThreadLocal, but I once checked that similar constructions in j.u.HashMap were about as fast as Unsafe cheats. So I don't think you'd see significant speedup recoding natively. But please prove me wrong. > The null pointer checks facilitate lazy initialization, which we > don't need in scoped variables. Well, something somewhere would surely null check result, so it's hard to imagine this helping much. > There are some because of the use of WeakReferences, which scoped > variables won't need because they disappear when the scope exits. Not using Weak Refs would be the biggest win. Lots of simplifications would be possible. But would require a new API. -Doug From ron.pressler at oracle.com Wed Dec 5 17:11:40 2018 From: ron.pressler at oracle.com (ron.pressler at oracle.com) Date: Wed, 05 Dec 2018 17:11:40 +0000 Subject: hg: loom/loom: 2 new changesets Message-ID: <201812051711.wB5HBfXU009021@aojmv0008.oracle.com> Changeset: b4af06702fe3 Author: rpressler Date: 2018-12-05 16:44 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/b4af06702fe3 Initial (and partial) implementation of forced preemption ! src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/share/aot/aotLoader.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/javaClasses.inline.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/runtime/continuation.cpp ! src/hotspot/share/runtime/continuation.hpp ! src/hotspot/share/runtime/stubRoutines.cpp ! src/hotspot/share/runtime/stubRoutines.hpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/thread.hpp ! src/java.base/share/classes/java/lang/Continuation.java Changeset: 38663fca7d7c Author: rpressler Date: 2018-12-05 16:44 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/38663fca7d7c merge ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/runtime/continuation.hpp ! src/java.base/share/classes/java/lang/Continuation.java From ron.pressler at oracle.com Wed Dec 5 17:42:27 2018 From: ron.pressler at oracle.com (ron.pressler at oracle.com) Date: Wed, 05 Dec 2018 17:42:27 +0000 Subject: hg: loom/loom: 2 new changesets Message-ID: <201812051742.wB5HgSSU024017@aojmv0008.oracle.com> Changeset: 549019922c78 Author: rpressler Date: 2018-12-05 17:41 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/549019922c78 fix preempt bug ! src/hotspot/share/runtime/continuation.cpp Changeset: 679d52209695 Author: rpressler Date: 2018-12-05 17:42 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/679d52209695 merge From aph at redhat.com Thu Dec 6 10:27:38 2018 From: aph at redhat.com (Andrew Haley) Date: Thu, 6 Dec 2018 10:27:38 +0000 Subject: Scoped variables In-Reply-To: <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> Message-ID: On 12/5/18 1:24 PM, Doug Lea wrote:> On 12/5/18 5:15 AM, Andrew Haley wrote: >> About half of the code in ThreadLocal.get() is because of bounds >> checks, indirections, type checks, and null pointer checks. > > Yeah, welcome to my world. It takes code that people think is weird/ugly > to express these in ways that are still pretty fast. I haven't tried > recently with ThreadLocal, but I once checked that similar constructions > in j.u.HashMap were about as fast as Unsafe cheats. So I don't think > you'd see significant speedup recoding natively. But please prove me wrong. That's the plan. :-) At some risk of teaching my grandmother how to suck eggs, here goes: There is a fallacy I see a lot in discussions about Java performance, and it goes like this. Someone will add a little extra code to something, measure it in jmh, and point out that performance hasn't worsened. Apparently they added this code, measured, and discovered that it makes no difference to execution time! So it must be OK. But, in fact, it's not OK. What has happened is that the CPU has considerable parallelism, and when measuring execution time in a jmh benchmark most of that parallelism is unused. This is deliberate: jmh goes to great lengths to isolate benchmark code so that it and nothing else runs during the timing interval. So, adding code sometimes adds no time at all: the new code just runs in parallel with the rest if the benchmark. Of course, this doesn't hold when running Java applications because this extra code elbows out of the way application code that would otherwise run in parallel. Efficient systems are composed of thousands or millions of tiny optimizations, each one of which is too small to contribute any benefit which can be seen above the noise. >> The null pointer checks facilitate lazy initialization, which we >> don't need in scoped variables. > > Well, something somewhere would surely null check result, so it's hard > to imagine this helping much. There's no need to do it. See above. :-) >> There are some because of the use of WeakReferences, which scoped >> variables won't need because they disappear when the scope exits. > > Not using Weak Refs would be the biggest win. Lots of simplifications > would be possible. But would require a new API. Yep. And right now scoped variables are a new API. It's a chance really to get it right, for once and (hopefully) for ever. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From forax at univ-mlv.fr Thu Dec 6 10:54:57 2018 From: forax at univ-mlv.fr (Remi Forax) Date: Thu, 6 Dec 2018 11:54:57 +0100 (CET) Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> Message-ID: <316453219.928652.1544093697947.JavaMail.zimbra@u-pem.fr> Just to add another possible use case for valhalla, scoped variables can allow to pass the reified type arguments of a generic method call out of the band (not directly as argument on stack) thus may allow to come with a backward compatible way to call generic methods, at least in the interpreter. R?mi ----- Mail original ----- > De: "Andrew Haley" > ?: "Doug Lea"
, "loom-dev" > Envoy?: Jeudi 6 D?cembre 2018 11:27:38 > Objet: Re: Scoped variables > On 12/5/18 1:24 PM, Doug Lea wrote:> On 12/5/18 5:15 AM, Andrew Haley wrote: >>> About half of the code in ThreadLocal.get() is because of bounds >>> checks, indirections, type checks, and null pointer checks. >> >> Yeah, welcome to my world. It takes code that people think is weird/ugly >> to express these in ways that are still pretty fast. I haven't tried >> recently with ThreadLocal, but I once checked that similar constructions >> in j.u.HashMap were about as fast as Unsafe cheats. So I don't think >> you'd see significant speedup recoding natively. But please prove me wrong. > > That's the plan. :-) > > At some risk of teaching my grandmother how to suck eggs, here goes: > > There is a fallacy I see a lot in discussions about Java performance, > and it goes like this. Someone will add a little extra code to > something, measure it in jmh, and point out that performance hasn't > worsened. Apparently they added this code, measured, and discovered > that it makes no difference to execution time! So it must be OK. > > But, in fact, it's not OK. What has happened is that the CPU has > considerable parallelism, and when measuring execution time in a jmh > benchmark most of that parallelism is unused. This is deliberate: jmh > goes to great lengths to isolate benchmark code so that it and nothing > else runs during the timing interval. So, adding code sometimes adds > no time at all: the new code just runs in parallel with the rest if the > benchmark. Of course, this doesn't hold when running Java applications > because this extra code elbows out of the way application code that > would otherwise run in parallel. > > Efficient systems are composed of thousands or millions of tiny > optimizations, each one of which is too small to contribute any > benefit which can be seen above the noise. > >>> The null pointer checks facilitate lazy initialization, which we >>> don't need in scoped variables. >> >> Well, something somewhere would surely null check result, so it's hard >> to imagine this helping much. > > There's no need to do it. See above. :-) > >>> There are some because of the use of WeakReferences, which scoped >>> variables won't need because they disappear when the scope exits. >> >> Not using Weak Refs would be the biggest win. Lots of simplifications >> would be possible. But would require a new API. > > Yep. And right now scoped variables are a new API. It's a chance > really to get it right, for once and (hopefully) for ever. > > -- > Andrew Haley > Java Platform Lead Engineer > Red Hat UK Ltd. > EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From aph at redhat.com Thu Dec 6 11:16:35 2018 From: aph at redhat.com (Andrew Haley) Date: Thu, 6 Dec 2018 11:16:35 +0000 Subject: Scoped variables In-Reply-To: <316453219.928652.1544093697947.JavaMail.zimbra@u-pem.fr> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <316453219.928652.1544093697947.JavaMail.zimbra@u-pem.fr> Message-ID: <41ff7d68-dcb2-9e4e-6795-f18d1ea94439@redhat.com> On 12/6/18 10:54 AM, Remi Forax wrote: > Just to add another possible use case for valhalla, > scoped variables can allow to pass the reified type arguments of a generic method call out of the band (not directly as argument on stack) thus may allow to come with a backward compatible way to call generic methods, at least in the interpreter. OK, that's interesting. For that to be reasonably efficient it'd be necessary not only for access times to be fat but for bind operations to be fast too. I'm sure that people will find all sort of use cases that we could never dream of! -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From rickard.backman at oracle.com Thu Dec 6 11:19:26 2018 From: rickard.backman at oracle.com (rickard.backman at oracle.com) Date: Thu, 06 Dec 2018 11:19:26 +0000 Subject: hg: loom/loom: Processor ID Message-ID: <201812061119.wB6BJQU6024412@aojmv0008.oracle.com> Changeset: 3d499d469f62 Author: rbackman Date: 2018-12-06 12:18 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/3d499d469f62 Processor ID + microbenchmarks/loom/Pid.java ! src/hotspot/cpu/x86/assembler_x86.cpp ! src/hotspot/cpu/x86/assembler_x86.hpp ! src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp ! src/hotspot/cpu/x86/c1_LIRAssembler_x86.hpp ! src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp ! src/hotspot/cpu/x86/vm_version_x86.hpp ! src/hotspot/cpu/x86/x86_64.ad ! src/hotspot/os_cpu/linux_x86/os_linux_x86.cpp ! src/hotspot/os_cpu/linux_x86/os_linux_x86.hpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_LIR.cpp ! src/hotspot/share/c1/c1_LIR.hpp ! src/hotspot/share/c1/c1_LIRAssembler.cpp ! src/hotspot/share/c1/c1_LIRAssembler.hpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/classes.hpp ! src/hotspot/share/opto/intrinsicnode.hpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/node.hpp ! src/hotspot/share/prims/unsafe.cpp ! src/java.base/share/classes/jdk/internal/misc/Unsafe.java From dl at cs.oswego.edu Thu Dec 6 11:55:23 2018 From: dl at cs.oswego.edu (Doug Lea) Date: Thu, 6 Dec 2018 06:55:23 -0500 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> Message-ID: On 12/6/18 5:27 AM, Andrew Haley wrote: >> Not using Weak Refs would be the biggest win. Lots of simplifications >> would be possible. But would require a new API. > > Yep. And right now scoped variables are a new API. Can you show the API you have in mind here? -Doug From aph at redhat.com Thu Dec 6 12:18:08 2018 From: aph at redhat.com (Andrew Haley) Date: Thu, 6 Dec 2018 12:18:08 +0000 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> Message-ID: <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> On 12/6/18 11:55 AM, Doug Lea wrote: > On 12/6/18 5:27 AM, Andrew Haley wrote: >>> Not using Weak Refs would be the biggest win. Lots of simplifications >>> would be possible. But would require a new API. >> >> Yep. And right now scoped variables are a new API. > > Can you show the API you have in mind here? Heavens, no. Dean Long is designing the prototype; the last thing I want to do is present an alternative before he's done. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From brian.goetz at oracle.com Thu Dec 6 18:57:44 2018 From: brian.goetz at oracle.com (Brian Goetz) Date: Thu, 6 Dec 2018 13:57:44 -0500 Subject: Scoped variables In-Reply-To: <3BF3EDE3-177E-4A5F-822D-4EE442C682F2@oracle.com> References: <8DA8A22E-63CF-4061-A424-40C4C1F87868@oracle.com> <3BF3EDE3-177E-4A5F-822D-4EE442C682F2@oracle.com> Message-ID: <947aaa44-bc65-9f5d-0f8f-50a7f181bad6@oracle.com> Let me toss in a few more kinds of stack-based cookies that we stumbled over in Lambda, to be kept in the back of our heads as we design such a mechanism.? There were three (subtly) related features that were requested in Lambda, which we did not implement: ?- capturing mutable locals ?- nonlocal return from lambdas ?- exception transparency While we could argue (but shouldn't here) whether these features are good ideas or bad ideas on their own, what they had in common was: the lambdas that were captured were somehow "stack bound". That is, they had references into the stack of the capturer, and therefore, they had some implicit constraints: they could only be invoked on the capturing thread, while the capturing frame was still on the stack.? After that frame is unwound, they need to turn into pumpkins; if called from another thread, they need to fail fast (throw some sort of WrongTrousersException.) The ability to capture a frame local that describes the capture frame, and validate at invocation time that the calling stack still contains that frame, is a building block on which all these features could be built. On 12/4/2018 7:33 PM, John Rose wrote: > I like the thought here: There are several kinds of "cookies" you might need > to look for in a stack walk. The JVM should unify them; the reward will be > simpler code and better return on investment in JIT optimizations. Stack > based access control is today's such cookie. > From dean.long at oracle.com Fri Dec 7 18:15:45 2018 From: dean.long at oracle.com (dean.long at oracle.com) Date: Fri, 7 Dec 2018 10:15:45 -0800 Subject: Scoped variables In-Reply-To: <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> Message-ID: <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> Now might be a good time to start a discussion on how we want scoped variables to be created and named.? With ThreadLocals, there is a constructor and I can create as many unique instances as I want in the heap and store those instances in the instance fields of other objects.? However with scoped variables, do we really need something so general?? What if a scoped variable looked more like a static final field, a method variable, or a constant pool constant?? Some of the uses of ThreadLocal that seem like good candidates for scoped variables are only using a single "local" per class (or even package or module). There are some good reasons for making these variables look like constants.? So here's a possibly crazy idea:? What if the names of scoped variables looked more like the enum constants in a Java enum type: constant singleton instances associated with a class by name. dl On 12/6/18 4:18 AM, Andrew Haley wrote: > On 12/6/18 11:55 AM, Doug Lea wrote: >> On 12/6/18 5:27 AM, Andrew Haley wrote: >>>> Not using Weak Refs would be the biggest win. Lots of simplifications >>>> would be possible. But would require a new API. >>> Yep. And right now scoped variables are a new API. >> Can you show the API you have in mind here? > Heavens, no. Dean Long is designing the prototype; the last thing I > want to do is present an alternative before he's done. > From aph at redhat.com Sat Dec 8 09:26:45 2018 From: aph at redhat.com (Andrew Haley) Date: Sat, 8 Dec 2018 09:26:45 +0000 Subject: Scoped variables In-Reply-To: <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> Message-ID: <06d493bc-e3a2-64a5-02c2-fb9e3280e05d@redhat.com> On 12/7/18 6:15 PM, dean.long at oracle.com wrote:> Now might be a good time to start a discussion on how we want scoped > variables to be created and named. With ThreadLocals, there is a > constructor and I can create as many unique instances as I want in the > heap and store those instances in the instance fields of other objects. > However with scoped variables, do we really need something so general? I think not. We want something as simple and lightweight as possible, surely? Let's say we had something like a final ScopedValue class with bind() and get() methods. So, to declare a ScopedValue you'd have something like static final ScopedValue val = ScopedValue.newInstance(); and to bind it try (val.bind(42)) { // Try with reources-like syntax, for example ... stuff ... } and to access it val.get() ScopedValues should be immutable for the resons described in this thread. In particular, a fiber should inherit ScopedValue bindings at the point it calves from its mother thread. If the block in which a value is bound exits while another fiber is still excuting, that's fine because the fiber inherits the values of those bindings, not a reference to something mutable. Is there any thing else? I don't think so. And we have a pretty good idea how to do that efficiently. I know that there will be some concern about the cost of copying ScopedValue bindings into a new fiber or continuation, but as far as I know it's the only semantics that makes sense and allows us to reason about binding lifetimes. > What if a scoped variable looked more like a static final field, a > method variable, or a constant pool constant? Some of the uses of > ThreadLocal that seem like good candidates for scoped variables are only > using a single "local" per class (or even package or module). Indeed so. > There are some good reasons for making these variables look like > constants. So here's a possibly crazy idea: What if the names of > scoped variables looked more like the enum constants in a Java enum > type: constant singleton instances associated with a class by name. Sure, why not? That would make things even simpler. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From aph at redhat.com Sun Dec 9 10:39:21 2018 From: aph at redhat.com (Andrew Haley) Date: Sun, 9 Dec 2018 10:39:21 +0000 Subject: Scoped variables In-Reply-To: <06d493bc-e3a2-64a5-02c2-fb9e3280e05d@redhat.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> <06d493bc-e3a2-64a5-02c2-fb9e3280e05d@redhat.com> Message-ID: <279fee52-3f3f-7668-f1cd-9cd1fe8b86db@redhat.com> On 12/8/18 9:26 AM, Andrew Haley wrote: >> There are some good reasons for making these variables look like >> constants. So here's a possibly crazy idea: What if the names of >> scoped variables looked more like the enum constants in a Java enum >> type: constant singleton instances associated with a class by name. > Sure, why not? That would make things even simpler. Thinking about this some more, it does sound attractive. After all, all we need at runtime is a key to look up a local binding. And making it something like a constant emphasizes (enforces?) the intended usage pattern. -- Andrew Haley Java Platform Lead Engineer Red Hat UK Ltd. EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From jonathan.brachthaeuser at uni-tuebingen.de Sun Dec 9 10:47:04 2018 From: jonathan.brachthaeuser at uni-tuebingen.de (=?utf-8?Q?Jonathan_Brachth=C3=A4user?=) Date: Sun, 9 Dec 2018 11:47:04 +0100 Subject: Scoped variables In-Reply-To: <279fee52-3f3f-7668-f1cd-9cd1fe8b86db@redhat.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> <06d493bc-e3a2-64a5-02c2-fb9e3280e05d@redhat.com> <279fee52-3f3f-7668-f1cd-9cd1fe8b86db@redhat.com> Message-ID: <6F2A2006-F22C-458C-9AC5-CF4CAD1F8336@uni-tuebingen.de> Regarding the semantics of scoped variables: There is a paper by Oleg Kiselyov et al. describing the combination of delimited control (delimited continuations) and dynamic binding: http://okmij.org/ftp/papers/DDBinding.pdf Since fibers are close to delimited continuations and (from what I understand) scoped variables are similar to dynamic binding, this might be relevant. Maybe you are already aware of the paper, but I thought I mention it nevertheless. Cheers Jonathan > On 9. Dec 2018, at 11:39, Andrew Haley wrote: > > On 12/8/18 9:26 AM, Andrew Haley wrote: >>> There are some good reasons for making these variables look like >>> constants. So here's a possibly crazy idea: What if the names of >>> scoped variables looked more like the enum constants in a Java enum >>> type: constant singleton instances associated with a class by name. > >> Sure, why not? That would make things even simpler. > > Thinking about this some more, it does sound attractive. After all, all > we need at runtime is a key to look up a local binding. And making it > something like a constant emphasizes (enforces?) the intended usage > pattern. > > -- > Andrew Haley > Java Platform Lead Engineer > Red Hat UK Ltd. > EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671 From dl at cs.oswego.edu Sun Dec 9 14:32:07 2018 From: dl at cs.oswego.edu (Doug Lea) Date: Sun, 9 Dec 2018 09:32:07 -0500 Subject: Scoped variables In-Reply-To: <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> Message-ID: On 12/7/18 1:15 PM, dean.long at oracle.com wrote: > Now might be a good time to start a discussion on how we want scoped > variables to be created and named. Or backing up further, how about a discussion of use cases that should be covered? The simplest are cases maintaining a set of bindings that should be captured by value and implicitly added as arguments for actions running in (fiber) tasks. This could be seen as an extension to lambda capture/binding (and in some cases could even be expressed by using lambdas as arguments in task/fiber/thread constructors, without any further support). They are also more similar to InheritableThreadLocal than the plain kind. At the other extreme are usages in which variables are split for the sake of avoiding parallel update contention (but sometimes subject to some form of parallel reduction). These seem out of scope(!) here. Everything in between seems potentially controversial, so it would be useful to focus on some canonical usages that should vs shouldn't be targeted. Browsing through StackOverflow about issues with ThreadLocals that might go away with other kinds of scoped constructs, it's hard to make a conclusion. Most seem to tied to the use of frameworks (e.g., Spring) with forms of component contexts that initially assumed single-threadedness and then adopted particular usage idioms with ThreadLocals to allow restricted forms of multithreading. I don't know if there are any exploitable commonalities across these, but others might? -Doug From brian.goetz at oracle.com Sun Dec 9 15:49:41 2018 From: brian.goetz at oracle.com (Brian Goetz) Date: Sun, 9 Dec 2018 10:49:41 -0500 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> Message-ID: > Or backing up further, how about a discussion of use cases that should > be covered? The conversation on scoped variables came out of another conversation, so maybe we should back up and start there. Right now, we?ve got ThreadLocal. It is usually used as an approximation for what we really wan but we don?t have. TL is what we?ve got, so we use it for a lot of things. Ron and Alan spent some time categorizing the various use cases, and we looked at them and asked which of them are good uses and which are abuses, and for those that are abuses, what a better mechanism might be. I?ll defer to Ron and Alan to provide a more complete list, but I?ll sketch out some canonical examples from each category (probably forgetting one): - Proxy for processor-local - Contention-avoidance schemes - Proxy for frame-local - Transaction IDs, caller context, etc (EE uses this ubiquitously) - Other framework-specific implicit arguments or context - Caches - Objects that are expensive to create, such as SimpleDateFormat - True thread-local - Mostly only apply to mechanisms that own and manage the threads, like FJ pools What this list tells us is that most uses of TL are really abuses of some form or another, so we started looking into what the right mechanisms are (scoped vars, processor locals) so that people would be less tempted to use the wrong mechanism when a better one is available. (Stepping back further, the bigger goal here is that, if we have the right mechanisms, we don?t have to make such heroic efforts to make fibers support thread locals, meaning that we will get to the fiber mechanism we really want, rather than the one tied to the legacy of what we have.) From Alan.Bateman at oracle.com Sun Dec 9 20:12:58 2018 From: Alan.Bateman at oracle.com (Alan Bateman) Date: Sun, 9 Dec 2018 20:12:58 +0000 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> Message-ID: <0f09dc0d-f88c-790b-351b-7544afeaa3c5@oracle.com> On 09/12/2018 15:49, Brian Goetz wrote: > : > Right now, we?ve got ThreadLocal. It is usually used as an approximation for what we really wan but we don?t have. TL is what we?ve got, so we use it for a lot of things. Ron and Alan spent some time categorizing the various use cases, and we looked at them and asked which of them are good uses and which are abuses, and for those that are abuses, what a better mechanism might be. I?ll defer to Ron and Alan to provide a more complete list, but I?ll sketch out some canonical examples from each category (probably forgetting one): Your list is a good summary. The forgotten one is "task local", essentially just extending the task with fields. That one is bit limited, at least for library code where there won't be knowledge about the task that is running it. > > - Proxy for processor-local > - Contention-avoidance schemes This one is somewhat specialized and too early to say if it make sense to expose as an API or not.? For now, it's the "processorid" branch in the loom repo where there is an Unsafe method to get the processor id. Rickard has done good work on an intrinsic so it compiles to the fastest instruction for the processor (linux-x64 only for now). There isn't a ProcessorLocal or anything else making use of it at this time as there is a lot more investigation and experimentation needed. We're hoping Doug will find time to see if j.u.c. could use it, maybe Striped64. I assume TLR won't use it and will need to continue to make use of TLR fields on the (carrier) Thread. > - Proxy for frame-local > - Transaction IDs, caller context, etc (EE uses this ubiquitously) > - Other framework-specific implicit arguments or context This is the focus of the discussion in this thread. It's not hard to find examples where a framework or library sets a TL with some context that is accessed by some callee that is many stack frames from where the local was set. A common pattern is set a TL with some context object, perform some action that may need the context, and restore/remove the local in a finally block. We found several places where there is nesting so the setup involves saving the old context before "pushing" the new context. The finally block just restores the previous context. There are several examples in Jetty and Jersey that do exactly this. > - Caches > - Objects that are expensive to create, such as SimpleDateFormat The common pattern seems to be objects that are not thread safe and are expensive to create. We've seen many cases where SimpleDateFormat objects are cached in a TL. In the JDK, CharsetEncoder/CharsetDecoder objects are examples that they cached in several TLs. > : > > (Stepping back further, the bigger goal here is that, if we have the right mechanisms, we don?t have to make such heroic efforts to make fibers support thread locals, meaning that we will get to the fiber mechanism we really want, rather than the one tied to the legacy of what we have.) I'm sure there will be demands for fiber locals but we'd like push back for as long as possible to give time to explore and try out and hopefully prove better alternatives. -Alan From forax at univ-mlv.fr Sun Dec 9 22:23:27 2018 From: forax at univ-mlv.fr (Remi Forax) Date: Sun, 9 Dec 2018 23:23:27 +0100 (CET) Subject: Latest API revision of Fiber Message-ID: <132148685.4392.1544394207176.JavaMail.zimbra@u-pem.fr> Hi all, i've just taken a look to the changes of the Fiber API since my last test :) In toFuture(), why do want to guarantee that there is only one CompletableFuture for a Fiber, i'm not sure i want to pay for a volatile read/volatile write (the CAS) if i call toFuture(). in my opinion, it should be just a best effort thing, i.e. the future field doesn't need to be volatile and the CAS is not necessary. The signature of schedule(Runnable) and schedule(Executor, Runnable) should be Fiber schedule(Runnable task) and Fiber schedule(Executor scheduler, Runnable task) given that the 'return value' is null for a Runnable, it can be seen as any type, not just Void. This allows code like this to work: Fiber fiber = ( some condition )? Fiber.schedule(runnable): Fiber.schedule(callable); And a minor nit, the javadoc was not updated when await was renamed to awaitTermination. @apiNote TBD if we need both await and join methods. should be @apiNote TBD if we need both awaitTermination and join methods. regards, R?mi From forax at univ-mlv.fr Sun Dec 9 22:36:59 2018 From: forax at univ-mlv.fr (Remi Forax) Date: Sun, 9 Dec 2018 23:36:59 +0100 (CET) Subject: Latest API revision of Fiber In-Reply-To: <132148685.4392.1544394207176.JavaMail.zimbra@u-pem.fr> References: <132148685.4392.1544394207176.JavaMail.zimbra@u-pem.fr> Message-ID: <1107570259.6795.1544395019334.JavaMail.zimbra@u-pem.fr> ----- Mail original ----- > De: "Remi Forax" > ?: "loom-dev" > Envoy?: Dimanche 9 D?cembre 2018 23:23:27 > Objet: Latest API revision of Fiber > Hi all, > i've just taken a look to the changes of the Fiber API since my last test :) > > In toFuture(), why do want to guarantee that there is only one CompletableFuture > for a Fiber, > i'm not sure i want to pay for a volatile read/volatile write (the CAS) if i > call toFuture(). > in my opinion, it should be just a best effort thing, i.e. the future field > doesn't need to be volatile and the CAS is not necessary. > Ok, i can answer to myself :) it's because when you have finished to execute the fiber, you need to notify the future, so it has to be unique. It's the price to pay to avoid to have the Fiber be a CompletableFuture itself. [...] > regards, > R?mi From forax at univ-mlv.fr Sun Dec 9 22:39:33 2018 From: forax at univ-mlv.fr (Remi Forax) Date: Sun, 9 Dec 2018 23:39:33 +0100 (CET) Subject: Cold vs Hot co-routine Message-ID: <318350236.6936.1544395173460.JavaMail.zimbra@u-pem.fr> The latest API doesn't allow to create a Fiber without starting it, so the model is now closer to what C# does than to what F# does. What is the rationale to not offer the choice to schedule or not the fiber when you create it ? R?mi From Alan.Bateman at oracle.com Mon Dec 10 08:26:26 2018 From: Alan.Bateman at oracle.com (Alan Bateman) Date: Mon, 10 Dec 2018 08:26:26 +0000 Subject: Cold vs Hot co-routine In-Reply-To: <318350236.6936.1544395173460.JavaMail.zimbra@u-pem.fr> References: <318350236.6936.1544395173460.JavaMail.zimbra@u-pem.fr> Message-ID: On 09/12/2018 22:39, Remi Forax wrote: > The latest API doesn't allow to create a Fiber without starting it, > so the model is now closer to what C# does than to what F# does. > > What is the rationale to not offer the choice to schedule or not the fiber when you create it ? > Nothing discussed or decided on this yet. For now the API is minimal, the implementation leaves it open until we get there. -Alan From alan.bateman at oracle.com Mon Dec 10 10:35:40 2018 From: alan.bateman at oracle.com (alan.bateman at oracle.com) Date: Mon, 10 Dec 2018 10:35:40 +0000 Subject: hg: loom/loom: 131 new changesets Message-ID: <201812101035.wBAAZoFC015276@aojmv0008.oracle.com> Changeset: 19de50eb561d Author: jcbeyler Date: 2018-11-28 11:09 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/19de50eb561d 8214408: Migrate EventsOnOff to using the same allocateAndCheck method Summary: Move code to the more stable version used by other tests Reviewed-by: sspitsyn, amenkov ! test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitor.java ! test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorEventOnOffTest.java Changeset: f24ae8376e71 Author: lancea Date: 2018-11-28 14:49 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/f24ae8376e71 8210454: jar tool does not allow setting the module version without also setting the main class Reviewed-by: alanb, mchung, chegar ! src/jdk.jartool/share/classes/sun/tools/jar/Main.java ! test/jdk/tools/jar/modularJar/Basic.java Changeset: 0bdbf854472f Author: rriggs Date: 2018-11-28 15:53 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization Reviewed-by: erikj, mchung, bchristi, ihse, coleenp, stuefe ! make/autoconf/jdk-version.m4 ! make/autoconf/spec.gmk.in ! make/autoconf/version-numbers ! make/gensrc/GensrcMisc.gmk ! make/hotspot/symbols/symbols-unix ! make/lib/CoreLibraries.gmk ! src/hotspot/share/include/jvm.h ! src/hotspot/share/prims/jvm.cpp ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/java/lang/VersionProps.java.template + src/java.base/share/classes/jdk/internal/util/SystemProps.java ! src/java.base/share/native/libjava/System.c + test/jdk/java/lang/System/VerifyRawIndexesTest.java Changeset: c470f977ade8 Author: rriggs Date: 2018-11-28 16:04 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/c470f977ade8 8214014: Remove vestiges of gopher: protocol proxy support Reviewed-by: lancea, alanb ! src/java.base/macosx/native/libjava/java_props_macosx.c ! src/java.base/share/classes/jdk/internal/util/SystemProps.java ! src/java.base/share/classes/sun/net/spi/DefaultProxySelector.java ! src/java.base/share/conf/net.properties ! src/java.base/share/native/libjava/System.c ! src/java.base/share/native/libjava/java_props.h ! src/java.base/unix/native/libnet/DefaultProxySelector.c ! src/java.base/windows/native/libnet/DefaultProxySelector.c ! test/jaxp/javax/xml/jaxp/libs/jaxp/library/JAXPTestUtilities.java ! test/jdk/java/net/ProxySelector/SystemProxies.java ! test/jdk/java/net/URI/Test.java ! test/jdk/java/net/httpclient/RequestBuilderTest.java Changeset: 9cfa2e273b77 Author: kbarrett Date: 2018-11-28 16:05 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/9cfa2e273b77 8214278: Cleanup process_completed_threshold and related state Summary: Change types, normalize names, remove special values. Reviewed-by: tschatzl, sjohanss ! src/hotspot/share/gc/g1/dirtyCardQueue.cpp ! src/hotspot/share/gc/g1/dirtyCardQueue.hpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentRefine.cpp ! src/hotspot/share/gc/g1/g1SATBMarkQueueSet.cpp ! src/hotspot/share/gc/g1/g1SATBMarkQueueSet.hpp ! src/hotspot/share/gc/shared/ptrQueue.cpp ! src/hotspot/share/gc/shared/ptrQueue.hpp ! src/hotspot/share/gc/shared/satbMarkQueue.cpp ! src/hotspot/share/gc/shared/satbMarkQueue.hpp Changeset: 396dfb0e8ba5 Author: martin Date: 2018-11-28 14:28 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/396dfb0e8ba5 8213406: (fs) More than one instance of built-in FileSystem observed in heap Reviewed-by: alanb, cushon, weijun ! src/java.base/aix/classes/sun/nio/fs/AixFileSystemProvider.java ! src/java.base/aix/classes/sun/nio/fs/DefaultFileSystemProvider.java ! src/java.base/linux/classes/sun/nio/fs/DefaultFileSystemProvider.java ! src/java.base/linux/classes/sun/nio/fs/LinuxFileSystemProvider.java ! src/java.base/macosx/classes/sun/nio/fs/BsdFileSystemProvider.java ! src/java.base/macosx/classes/sun/nio/fs/DefaultFileSystemProvider.java ! src/java.base/macosx/classes/sun/nio/fs/MacOSXFileSystemProvider.java ! src/java.base/share/classes/java/io/FilePermission.java ! src/java.base/share/classes/java/nio/file/FileSystems.java ! src/java.base/solaris/classes/sun/nio/fs/DefaultFileSystemProvider.java ! src/java.base/solaris/classes/sun/nio/fs/SolarisFileSystemProvider.java ! src/java.base/unix/classes/sun/nio/fs/UnixFileSystemProvider.java ! src/java.base/windows/classes/sun/nio/fs/DefaultFileSystemProvider.java ! src/java.base/windows/classes/sun/nio/fs/WindowsFileSystemProvider.java Changeset: 5e2625783d58 Author: dl Date: 2018-11-28 15:25 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/5e2625783d58 8212899: java/util/concurrent/tck/JSR166TestCase.java - testMissedSignal_8187947(SubmissionPublisherTest): timed out waiting for CountDownLatch for 40 sec Reviewed-by: martin, dholmes ! test/jdk/java/util/concurrent/tck/SubmissionPublisherTest.java Changeset: 0775f246731b Author: dl Date: 2018-11-28 15:25 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/0775f246731b 8211877: Broken links in java.util.concurrent.atomic Reviewed-by: martin, jjg ! src/java.base/share/classes/java/util/concurrent/atomic/AtomicIntegerFieldUpdater.java ! src/java.base/share/classes/java/util/concurrent/atomic/AtomicLongFieldUpdater.java ! src/java.base/share/classes/java/util/concurrent/atomic/AtomicMarkableReference.java ! src/java.base/share/classes/java/util/concurrent/atomic/AtomicReferenceFieldUpdater.java ! src/java.base/share/classes/java/util/concurrent/atomic/AtomicStampedReference.java ! src/java.base/share/classes/java/util/concurrent/atomic/DoubleAccumulator.java ! src/java.base/share/classes/java/util/concurrent/atomic/DoubleAdder.java ! src/java.base/share/classes/java/util/concurrent/atomic/LongAccumulator.java ! src/java.base/share/classes/java/util/concurrent/atomic/LongAdder.java Changeset: 345266000aba Author: dl Date: 2018-11-28 15:25 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/345266000aba 8211283: Miscellaneous changes imported from jsr166 CVS 2018-11 Reviewed-by: martin, chegar ! src/java.base/share/classes/java/util/ArrayDeque.java ! src/java.base/share/classes/java/util/concurrent/ConcurrentHashMap.java ! src/java.base/share/classes/java/util/concurrent/Exchanger.java ! src/java.base/share/classes/java/util/concurrent/ForkJoinTask.java ! src/java.base/share/classes/java/util/concurrent/locks/LockSupport.java ! src/java.base/share/classes/java/util/concurrent/locks/StampedLock.java ! test/jdk/java/util/concurrent/atomic/LongAdderDemo.java ! test/jdk/java/util/concurrent/tck/CompletableFutureTest.java ! test/jdk/java/util/concurrent/tck/ConcurrentHashMapTest.java ! test/jdk/java/util/concurrent/tck/ForkJoinPoolTest.java ! test/jdk/java/util/concurrent/tck/JSR166TestCase.java ! test/jdk/java/util/concurrent/tck/RecursiveTaskTest.java ! test/jdk/java/util/concurrent/tck/ScheduledExecutorSubclassTest.java ! test/jdk/java/util/concurrent/tck/ScheduledExecutorTest.java Changeset: 157c1130b46e Author: mli Date: 2018-11-29 07:40 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/157c1130b46e 8214431: tests failed because can't find jdk.testlibrary.* in test directory or libraries Reviewed-by: chegar, ctornqvi, dholmes ! test/jdk/com/sun/jdi/ProcessAttachTest.java ! test/jdk/com/sun/tools/attach/BasicTests.java ! test/jdk/com/sun/tools/attach/PermissionTest.java ! test/jdk/com/sun/tools/attach/ProviderTest.java ! test/jdk/com/sun/tools/attach/TempDirTest.java ! test/jdk/java/lang/Thread/ThreadStateTest.java ! test/jdk/java/lang/management/MemoryMXBean/CollectionUsageThreshold.java ! test/jdk/java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java ! test/jdk/java/lang/management/ThreadMXBean/ThreadMXBeanStateTest.java ! test/jdk/sun/management/jmxremote/bootstrap/PasswordFilePermissionTest.java ! test/jdk/sun/management/jmxremote/bootstrap/SSLConfigFilePermissionTest.java ! test/jdk/sun/management/jmxremote/startstop/JMXStatusPerfCountersTest.java ! test/jdk/sun/management/jmxremote/startstop/JMXStatusTest.java Changeset: 41edb8be98b3 Author: jwilhelm Date: 2018-11-29 02:11 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/41edb8be98b3 Added tag jdk-12+22 for changeset 732bec44c89e ! .hgtags Changeset: 1d520c376105 Author: smarks Date: 2018-11-28 18:16 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/1d520c376105 8214460: MacosX build is broken because of JDK-8214014 Reviewed-by: dholmes, tbell ! src/java.base/macosx/native/libjava/java_props_macosx.c Changeset: d537553ed639 Author: dholmes Date: 2018-11-28 22:29 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/d537553ed639 8214332: Add a flag for overriding default JNI library search path Reviewed-by: erikj, dholmes Contributed-by: Jakub Vanek ! doc/building.html ! doc/building.md ! make/autoconf/jdk-options.m4 ! make/autoconf/spec.gmk.in ! make/hotspot/lib/JvmFlags.gmk ! src/hotspot/os/aix/os_aix.cpp ! src/hotspot/os/bsd/os_bsd.cpp ! src/hotspot/os/linux/os_linux.cpp Changeset: 7b9f61b7fd94 Author: dholmes Date: 2018-11-29 00:49 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/7b9f61b7fd94 8214466: Append assembler flags on ARM targets Reviewed-by: erikj, dholmes Contributed-by: Jakub Vanek ! make/autoconf/flags-other.m4 ! make/autoconf/flags.m4 Changeset: 99c48295ec8e Author: dholmes Date: 2018-11-29 00:51 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/99c48295ec8e 8214465: Upgrade arm-sflt minimum architecture to ARMv5TE for assembler Reviewed-by: erikj, dholmes Contributed-by: Jakub Vanek ! make/autoconf/flags.m4 Changeset: e6753ace7f6d Author: alitvinov Date: 2018-11-12 22:28 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/e6753ace7f6d 8187364: Unable to enter zero width non-joiner (ZWNJ) symbol in Swing text component Reviewed-by: serb, dmarkov ! src/java.desktop/share/classes/javax/swing/text/DefaultEditorKit.java Changeset: 4c436aab570a Author: jdv Date: 2018-11-13 09:39 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/4c436aab570a 8176556: java/awt/dnd/ImageTransferTest/ImageTransferTest.java fails for JFIF Reviewed-by: serb ! test/jdk/ProblemList.txt ! test/jdk/java/awt/dnd/ImageTransferTest/ImageTransferTest.java Changeset: 7199c4da1a6f Author: shurailine Date: 2018-11-13 07:11 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/7199c4da1a6f 8186549: move ExtendedRobot closer to tests Reviewed-by: serb ! test/jdk/java/awt/Component/PaintAll/PaintAll.java ! test/jdk/java/awt/Frame/DecoratedExceptions/DecoratedExceptions.java ! test/jdk/java/awt/Frame/DisposeParentGC/DisposeParentGC.java ! test/jdk/java/awt/Frame/FramesGC/FramesGC.java ! test/jdk/java/awt/Frame/MaximizedUndecorated/MaximizedUndecorated.java ! test/jdk/java/awt/Frame/MiscUndecorated/ActiveAWTWindowTest.java ! test/jdk/java/awt/Frame/MiscUndecorated/ActiveSwingWindowTest.java ! test/jdk/java/awt/Frame/MiscUndecorated/FrameCloseTest.java ! test/jdk/java/awt/Frame/MiscUndecorated/RepaintTest.java ! test/jdk/java/awt/GraphicsDevice/IncorrectDisplayModeExitFullscreen.java ! test/jdk/java/awt/List/SetBackgroundTest/SetBackgroundTest.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogAppModal1Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogAppModal2Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogAppModal3Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogAppModal4Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogAppModal5Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogAppModal6Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogDocModal1Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogDocModal2Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogDocModal3Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogDocModal4Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogDocModal5Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogDocModal6Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogDocModal7Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogModal1Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogModal2Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogModal3Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogModal4Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogModal5Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogModal6Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogNonModal1Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogNonModal2Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogNonModal3Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogNonModal4Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogNonModal5Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogNonModal6Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogNonModal7Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogTKModal1Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogTKModal2Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogTKModal3Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogTKModal4Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogTKModal5Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogTKModal6Test.java ! test/jdk/java/awt/Modal/FileDialog/FileDialogTKModal7Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDDAppModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDDDocModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDDModelessTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDDNonModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDDSetModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDDToolkitModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDFAppModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDFSetModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDFToolkitModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDFWModeless1Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDFWModeless2Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDFWNonModal1Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDFWNonModal2Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingDocModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDAppModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDDocModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDModelessTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDNonModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDSetModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDToolkitModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWDocModal1Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWDocModal2Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWDocModal3Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWDocModal4Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWModeless1Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWModeless2Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWModeless3Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWModeless4Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWNonModal1Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWNonModal2Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWNonModal3Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWNonModal4Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsAppModal1Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsAppModal2Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsAppModal3Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsAppModal4Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsAppModal5Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsAppModal6Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsDocModal1Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsDocModal2Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsSetModal1Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsSetModal2Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsSetModal3Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsSetModal4Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsSetModal5Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsSetModal6Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsToolkitModal1Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsToolkitModal2Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsToolkitModal3Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsToolkitModal4Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsToolkitModal5Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/BlockingWindowsToolkitModal6Test.java ! test/jdk/java/awt/Modal/ModalBlockingTests/UnblockedDialogAppModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/UnblockedDialogDocModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/UnblockedDialogModelessTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/UnblockedDialogNonModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/UnblockedDialogSetModalTest.java ! test/jdk/java/awt/Modal/ModalBlockingTests/UnblockedDialogToolkitModalTest.java ! test/jdk/java/awt/Modal/ModalDialogOrderingTest/ModalDialogOrderingTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ApplicationExcludeDialogFileTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ApplicationExcludeDialogPageSetupTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ApplicationExcludeDialogPrintSetupTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ApplicationExcludeFrameFileTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ApplicationExcludeFramePageSetupTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ApplicationExcludeFramePrintSetupTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ToolkitExcludeDialogFileTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ToolkitExcludeDialogPageSetupTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ToolkitExcludeDialogPrintSetupTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ToolkitExcludeFrameFileTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ToolkitExcludeFramePageSetupTest.java ! test/jdk/java/awt/Modal/ModalExclusionTests/ToolkitExcludeFramePrintSetupTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferDWFAppModalTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferDWFDocModalTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferDWFModelessTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferDWFNonModalTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferDialogsAppModalTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferDialogsDocModalTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferDialogsModelessTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferDialogsNonModalTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFDWAppModalTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFDWDocModalTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFDWModelessTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFDWNonModalTest.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDAppModal1Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDAppModal2Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDAppModal3Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDAppModal4Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDDocModal1Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDDocModal2Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDDocModal3Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDDocModal4Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDModeless1Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDModeless2Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDModeless3Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDModeless4Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDNonModal1Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDNonModal2Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDNonModal3Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferFWDNonModal4Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFAppModal1Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFAppModal2Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFAppModal3Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFDocModal1Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFDocModal2Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFDocModal3Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFModeless1Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFModeless2Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFModeless3Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFNonModal1Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFNonModal2Test.java ! test/jdk/java/awt/Modal/ModalFocusTransferTests/FocusTransferWDFNonModal3Test.java ! test/jdk/java/awt/Modal/MultipleDialogs/MultipleDialogs1Test.java ! test/jdk/java/awt/Modal/MultipleDialogs/MultipleDialogs2Test.java ! test/jdk/java/awt/Modal/MultipleDialogs/MultipleDialogs3Test.java ! test/jdk/java/awt/Modal/MultipleDialogs/MultipleDialogs4Test.java ! test/jdk/java/awt/Modal/MultipleDialogs/MultipleDialogs5Test.java ! test/jdk/java/awt/Modal/NullModalityDialogTest/NullModalityDialogTest.java ! test/jdk/java/awt/Modal/OnTop/OnTopAppModal1Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopAppModal2Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopAppModal3Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopAppModal4Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopAppModal5Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopAppModal6Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopDocModal1Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopDocModal2Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopDocModal3Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopDocModal4Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopDocModal5Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopDocModal6Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModal1Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModal2Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModal3Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModal4Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModal5Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModal6Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModeless1Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModeless2Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModeless3Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModeless4Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModeless5Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopModeless6Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopTKModal1Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopTKModal2Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopTKModal3Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopTKModal4Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopTKModal5Test.java ! test/jdk/java/awt/Modal/OnTop/OnTopTKModal6Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackAppModal1Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackAppModal2Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackAppModal3Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackAppModal4Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackAppModal5Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackAppModal6Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackDocModal1Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackDocModal2Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackDocModal3Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackDocModal4Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackDocModal5Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackDocModal6Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModal1Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModal2Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModal3Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModal4Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModal5Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModal6Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModeless1Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModeless2Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModeless3Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModeless4Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModeless5Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackModeless6Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackNonModal1Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackNonModal2Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackNonModal3Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackNonModal4Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackNonModal5Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackNonModal6Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackTKModal1Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackTKModal2Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackTKModal3Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackTKModal4Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackTKModal5Test.java ! test/jdk/java/awt/Modal/ToBack/ToBackTKModal6Test.java ! test/jdk/java/awt/Modal/ToFront/DialogToFrontAppModalTest.java ! test/jdk/java/awt/Modal/ToFront/DialogToFrontDocModalTest.java ! test/jdk/java/awt/Modal/ToFront/DialogToFrontModalTest.java ! test/jdk/java/awt/Modal/ToFront/DialogToFrontModeless1Test.java ! test/jdk/java/awt/Modal/ToFront/DialogToFrontNonModalTest.java ! test/jdk/java/awt/Modal/ToFront/DialogToFrontTKModalTest.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontAppModal1Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontAppModal2Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontAppModal3Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontAppModal4Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontAppModal5Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontDocModal1Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontDocModal2Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontModal1Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontModal2Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontModal3Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontModal4Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontModal5Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontModeless1Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontNonModalTest.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontTKModal1Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontTKModal2Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontTKModal3Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontTKModal4Test.java ! test/jdk/java/awt/Modal/ToFront/FrameToFrontTKModal5Test.java ! test/jdk/java/awt/Paint/ExposeOnEDT.java ! test/jdk/java/awt/Paint/PaintNativeOnUpdate.java ! test/jdk/java/awt/Robot/ModifierRobotKey/ModifierRobotEnhancedKeyTest.java ! test/jdk/java/awt/Robot/ModifierRobotKey/ModifierRobotKeyTest.java ! test/jdk/java/awt/ScrollPane/ScrollPanePreferredSize/ScrollPanePreferredSize.java ! test/jdk/java/awt/Toolkit/LockingKeyStateTest/LockingKeyStateTest.java ! test/jdk/java/awt/TrayIcon/ActionCommand/ActionCommand.java ! test/jdk/java/awt/TrayIcon/ActionEventMask/ActionEventMask.java ! test/jdk/java/awt/TrayIcon/ActionEventTest/ActionEventTest.java ! test/jdk/java/awt/TrayIcon/ModalityTest/ModalityTest.java ! test/jdk/java/awt/TrayIcon/MouseEventMask/MouseEventMaskTest.java ! test/jdk/java/awt/TrayIcon/MouseMovedTest/MouseMovedTest.java ! test/jdk/java/awt/TrayIcon/PopupMenuLeakTest/PopupMenuLeakTest.java ! test/jdk/java/awt/TrayIcon/RightClickWhenBalloonDisplayed/RightClickWhenBalloonDisplayed.java ! test/jdk/java/awt/TrayIcon/SecurityCheck/FunctionalityCheck/FunctionalityCheck.java ! test/jdk/java/awt/TrayIcon/SystemTrayIconHelper.java ! test/jdk/java/awt/TrayIcon/TrayIconEventModifiers/TrayIconEventModifiersTest.java ! test/jdk/java/awt/TrayIcon/TrayIconEvents/TrayIconEventsTest.java ! test/jdk/java/awt/TrayIcon/TrayIconMouseTest/TrayIconMouseTest.java ! test/jdk/java/awt/TrayIcon/TrayIconPopup/TrayIconPopupClickTest.java ! test/jdk/java/awt/TrayIcon/TrayIconPopup/TrayIconPopupTest.java ! test/jdk/java/awt/Window/BackgroundIsNotUpdated/BackgroundIsNotUpdated.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/FocusAWTTest.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/SetShape.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/SetShapeAndClick.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/SetShapeDynamicallyAndClick.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/Shaped.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/ShapedByAPI.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/ShapedTranslucent.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/ShapedTranslucentWindowClick.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/StaticallyShaped.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/Translucent.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/TranslucentChoice.java ! test/jdk/java/awt/Window/ShapedAndTranslucentWindows/TranslucentWindowClick.java ! test/jdk/java/awt/Window/setLocRelativeTo/SetLocationRelativeToTest.java ! test/jdk/java/awt/datatransfer/ImageTransfer/ImageTransferTest.java ! test/jdk/java/awt/datatransfer/Independence/IndependenceAWTTest.java ! test/jdk/java/awt/datatransfer/Independence/IndependenceSwingTest.java ! test/jdk/java/awt/datatransfer/SystemSelection/SystemSelectionAWTTest.java ! test/jdk/java/awt/datatransfer/SystemSelection/SystemSelectionSwingTest.java ! test/jdk/java/awt/event/KeyEvent/ExtendedKeyCode/ExtendedKeyCodeTest.java ! test/jdk/java/awt/event/KeyEvent/ExtendedModifiersTest/ExtendedModifiersTest.java ! test/jdk/java/awt/event/KeyEvent/KeyMaskTest/KeyMaskTest.java ! test/jdk/java/awt/event/MouseEvent/MouseButtonsAndKeyMasksTest/MouseButtonsAndKeyMasksTest.java ! test/jdk/java/awt/event/MouseEvent/MouseButtonsTest/MouseButtonsTest.java ! test/jdk/java/awt/event/MouseEvent/MultipleMouseButtonsTest/MultipleMouseButtonsTest.java ! test/jdk/java/awt/image/multiresolution/Corrupted2XImageTest.java ! test/jdk/java/awt/image/multiresolution/MenuMultiresolutionIconTest.java ! test/jdk/java/awt/image/multiresolution/MultiResolutionJOptionPaneIconTest.java ! test/jdk/java/awt/image/multiresolution/MultiresolutionIconTest.java ! test/jdk/java/awt/keyboard/AltPlusNumberKeyCombinationsTest/AltPlusNumberKeyCombinationsTest.java ! test/jdk/javax/swing/JButton/JButtonPaintNPE/JButtonPaintNPE.java ! test/jdk/javax/swing/JComboBox/4523758/bug4523758.java ! test/jdk/javax/swing/JComboBox/6559152/bug6559152.java ! test/jdk/javax/swing/JComboBox/8015300/Test8015300.java ! test/jdk/javax/swing/JComboBox/ConsumedKeyTest/ConsumedKeyTest.java ! test/jdk/javax/swing/JComponent/7154030/bug7154030.java ! test/jdk/javax/swing/JInternalFrame/6647340/bug6647340.java ! test/jdk/javax/swing/JInternalFrame/6725409/bug6725409.java ! test/jdk/javax/swing/JLayer/6824395/bug6824395.java ! test/jdk/javax/swing/JMenu/4417601/bug4417601.java ! test/jdk/javax/swing/JMenu/6359669/bug6359669.java ! test/jdk/javax/swing/JMenu/6538132/bug6538132.java ! test/jdk/javax/swing/JMenuItem/6249972/bug6249972.java ! test/jdk/javax/swing/JOptionPane/6428694/bug6428694.java ! test/jdk/javax/swing/JPopupMenu/4634626/bug4634626.java ! test/jdk/javax/swing/JPopupMenu/6217905/bug6217905.java ! test/jdk/javax/swing/JPopupMenu/6415145/bug6415145.java ! test/jdk/javax/swing/JPopupMenu/6515446/bug6515446.java ! test/jdk/javax/swing/JPopupMenu/6544309/bug6544309.java ! test/jdk/javax/swing/JPopupMenu/6580930/bug6580930.java ! test/jdk/javax/swing/JSlider/6401380/bug6401380.java ! test/jdk/javax/swing/JTabbedPane/7024235/Test7024235.java ! test/jdk/javax/swing/JTabbedPane/7170310/bug7170310.java ! test/jdk/javax/swing/JTree/8003400/Test8003400.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/PerPixelTranslucent.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/PerPixelTranslucentCanvas.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/PerPixelTranslucentGradient.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/PerPixelTranslucentSwing.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/SetShapeAndClickSwing.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/ShapedPerPixelTranslucentGradient.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/ShapedTranslucentPerPixelTranslucentGradient.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/TranslucentJComboBox.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/TranslucentPerPixelTranslucentGradient.java ! test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/TranslucentWindowClickSwing.java ! test/jdk/javax/swing/dnd/8139050/NativeErrorsInTableDnD.java ! test/jdk/javax/swing/reliability/TaskUndJFrameProperties.java ! test/jdk/javax/swing/reliability/TaskZoomJFrameChangeState.java ! test/jdk/javax/swing/reliability/TaskZoomJFrameRepaint.java ! test/jdk/javax/swing/text/AbstractDocument/6968363/Test6968363.java + test/jdk/lib/client/ExtendedRobot.java - test/jdk/lib/testlibrary/ExtendedRobot.java Changeset: 52ea97fb80b0 Author: serb Date: 2018-11-13 16:35 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/52ea97fb80b0 8211833: Javadoc cleanup of java.applet package Reviewed-by: prr ! src/java.desktop/share/classes/java/applet/Applet.java ! src/java.desktop/share/classes/java/applet/AppletContext.java ! src/java.desktop/share/classes/java/applet/AppletStub.java ! src/java.desktop/share/classes/java/applet/AudioClip.java Changeset: d569b5e29021 Author: psadhukhan Date: 2018-11-14 17:26 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/d569b5e29021 Merge - src/java.base/share/classes/jdk/internal/org/objectweb/asm/Item.java Changeset: b9f3606b2f83 Author: jdv Date: 2018-11-14 01:29 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/b9f3606b2f83 8212116: IIOException "tEXt chunk length is not proper" on opening png file Reviewed-by: serb ! src/java.desktop/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java + test/jdk/javax/imageio/plugins/png/ReadPNGWithNoTextInTEXTChunk.java Changeset: ff49d3fcb934 Author: pbansal Date: 2018-11-14 18:27 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/ff49d3fcb934 8213844: Typo in ProblemList updation under JDK-8213536 Reviewed-by: jdv ! test/jdk/ProblemList.txt Changeset: 8b066aaff367 Author: mbaesken Date: 2018-11-08 17:10 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/8b066aaff367 8213532: add missing LocalFree calls after using FormatMessage(A) [windows] Reviewed-by: dmarkov, serb ! src/java.desktop/windows/native/libawt/windows/ThemeReader.cpp ! src/java.desktop/windows/native/libawt/windows/awt_Debug.cpp ! src/jdk.accessibility/windows/native/common/AccessBridgeDebug.cpp Changeset: 83de6a8b6c33 Author: avu Date: 2018-11-14 13:52 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/83de6a8b6c33 8213292: Input freezes after MacOS key-selector (press&hold) usage on macOS Mojave Reviewed-by: serb ! src/java.desktop/macosx/native/libawt_lwawt/awt/AWTView.m Changeset: 5b91e69e1fd0 Author: itakiguchi Date: 2018-11-14 18:04 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/5b91e69e1fd0 8213614: DnD operation change feature does not work with 64bit big endian CPU Reviewed-by: serb ! src/java.desktop/unix/classes/sun/awt/X11/XDragSourceContextPeer.java Changeset: 85fb403c0141 Author: alans Date: 2018-11-14 20:47 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/85fb403c0141 8211301: [macos] support full window content options Reviewed-by: serb ! src/java.desktop/macosx/classes/sun/lwawt/macosx/CPlatformWindow.java ! src/java.desktop/macosx/native/libawt_lwawt/awt/AWTWindow.m + test/jdk/java/awt/Window/FullWindowContentTest/FullWindowContentTest.java Changeset: 9d2c9970c950 Author: sveerabhadra Date: 2018-11-15 11:25 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/9d2c9970c950 6849922: java/awt/Choice/ChoiceKeyEventReaction/ChoiceKeyEventReaction.html fails Reviewed-by: kaddepalli, serb ! test/jdk/ProblemList.txt - test/jdk/java/awt/Choice/ChoiceKeyEventReaction/ChoiceKeyEventReaction.html ! test/jdk/java/awt/Choice/ChoiceKeyEventReaction/ChoiceKeyEventReaction.java Changeset: a4db2f17e1be Author: serb Date: 2018-11-15 14:14 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/a4db2f17e1be 8213817: @return has already been specified (4 occurrences, in AWT and Swing) Reviewed-by: prr ! src/java.desktop/share/classes/java/awt/event/InputEvent.java ! src/java.desktop/share/classes/javax/swing/JCheckBoxMenuItem.java ! src/java.desktop/share/classes/javax/swing/JLabel.java ! src/java.desktop/share/classes/javax/swing/JPanel.java ! src/java.desktop/share/classes/javax/swing/JRadioButton.java ! src/java.desktop/share/classes/javax/swing/JScrollBar.java ! src/java.desktop/share/classes/javax/swing/JSlider.java ! src/java.desktop/share/classes/javax/swing/JTextArea.java ! src/java.desktop/share/classes/javax/swing/JToggleButton.java ! src/java.desktop/share/classes/javax/swing/table/JTableHeader.java ! src/java.desktop/share/classes/javax/swing/text/CompositeView.java ! src/java.desktop/share/classes/javax/swing/text/LabelView.java Changeset: 6bdbd601d31c Author: jdv Date: 2018-11-20 14:37 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/6bdbd601d31c 8211795: ArrayIndexOutOfBoundsException in PNGImageReader after JDK-6788458 Reviewed-by: serb, kaddepalli ! src/java.desktop/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java + test/jdk/javax/imageio/plugins/png/VerifyBitDepthScalingWithTRNSChunk.java Changeset: abed2967ec3a Author: jdv Date: 2018-11-20 15:53 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/abed2967ec3a 8211422: Reading PNG with corrupt CRC for IEND chunk throws IIOException Reviewed-by: serb, kaddepalli ! src/java.desktop/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java + test/jdk/javax/imageio/plugins/png/PNGCorruptCRCForIENDChunkTest.java Changeset: 5e7dba63836d Author: kaddepalli Date: 2018-11-20 16:40 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/5e7dba63836d 8212882: links to tutorial should be updated to use https: Reviewed-by: psadhukhan, pbansal ! src/demo/share/jfc/FileChooserDemo/FileChooserDemo.java ! src/java.desktop/share/classes/java/awt/Component.java ! src/java.desktop/share/classes/java/awt/Container.java ! src/java.desktop/share/classes/java/awt/DefaultFocusTraversalPolicy.java ! src/java.desktop/share/classes/java/awt/DefaultKeyboardFocusManager.java ! src/java.desktop/share/classes/java/awt/DisplayMode.java ! src/java.desktop/share/classes/java/awt/FocusTraversalPolicy.java ! src/java.desktop/share/classes/java/awt/GraphicsDevice.java ! src/java.desktop/share/classes/java/awt/KeyboardFocusManager.java ! src/java.desktop/share/classes/java/awt/Toolkit.java ! src/java.desktop/share/classes/java/awt/event/ActionEvent.java ! src/java.desktop/share/classes/java/awt/event/ActionListener.java ! src/java.desktop/share/classes/java/awt/event/ComponentAdapter.java ! src/java.desktop/share/classes/java/awt/event/ComponentEvent.java ! src/java.desktop/share/classes/java/awt/event/ComponentListener.java ! src/java.desktop/share/classes/java/awt/event/ContainerAdapter.java ! src/java.desktop/share/classes/java/awt/event/ContainerEvent.java ! src/java.desktop/share/classes/java/awt/event/ContainerListener.java ! src/java.desktop/share/classes/java/awt/event/FocusAdapter.java ! src/java.desktop/share/classes/java/awt/event/FocusEvent.java ! src/java.desktop/share/classes/java/awt/event/FocusListener.java ! src/java.desktop/share/classes/java/awt/event/ItemEvent.java ! src/java.desktop/share/classes/java/awt/event/ItemListener.java ! src/java.desktop/share/classes/java/awt/event/KeyAdapter.java ! src/java.desktop/share/classes/java/awt/event/KeyEvent.java ! src/java.desktop/share/classes/java/awt/event/MouseAdapter.java ! src/java.desktop/share/classes/java/awt/event/MouseEvent.java ! src/java.desktop/share/classes/java/awt/event/MouseListener.java ! src/java.desktop/share/classes/java/awt/event/MouseMotionAdapter.java ! src/java.desktop/share/classes/java/awt/event/MouseMotionListener.java ! src/java.desktop/share/classes/java/awt/event/WindowAdapter.java ! src/java.desktop/share/classes/java/awt/event/WindowEvent.java ! src/java.desktop/share/classes/java/awt/event/WindowFocusListener.java ! src/java.desktop/share/classes/java/awt/event/WindowListener.java ! src/java.desktop/share/classes/java/beans/package-info.java ! src/java.desktop/share/classes/javax/swing/AbstractButton.java ! src/java.desktop/share/classes/javax/swing/BorderFactory.java ! src/java.desktop/share/classes/javax/swing/Box.java ! src/java.desktop/share/classes/javax/swing/BoxLayout.java ! src/java.desktop/share/classes/javax/swing/ButtonGroup.java ! src/java.desktop/share/classes/javax/swing/DefaultFocusManager.java ! src/java.desktop/share/classes/javax/swing/FocusManager.java ! src/java.desktop/share/classes/javax/swing/ImageIcon.java ! src/java.desktop/share/classes/javax/swing/JApplet.java ! src/java.desktop/share/classes/javax/swing/JButton.java ! src/java.desktop/share/classes/javax/swing/JCheckBox.java ! src/java.desktop/share/classes/javax/swing/JCheckBoxMenuItem.java ! src/java.desktop/share/classes/javax/swing/JColorChooser.java ! src/java.desktop/share/classes/javax/swing/JComboBox.java ! src/java.desktop/share/classes/javax/swing/JComponent.java ! src/java.desktop/share/classes/javax/swing/JDesktopPane.java ! src/java.desktop/share/classes/javax/swing/JDialog.java ! src/java.desktop/share/classes/javax/swing/JEditorPane.java ! src/java.desktop/share/classes/javax/swing/JFileChooser.java ! src/java.desktop/share/classes/javax/swing/JFrame.java ! src/java.desktop/share/classes/javax/swing/JInternalFrame.java ! src/java.desktop/share/classes/javax/swing/JLabel.java ! src/java.desktop/share/classes/javax/swing/JLayeredPane.java ! src/java.desktop/share/classes/javax/swing/JList.java ! src/java.desktop/share/classes/javax/swing/JMenu.java ! src/java.desktop/share/classes/javax/swing/JMenuBar.java ! src/java.desktop/share/classes/javax/swing/JMenuItem.java ! src/java.desktop/share/classes/javax/swing/JOptionPane.java ! src/java.desktop/share/classes/javax/swing/JPanel.java ! src/java.desktop/share/classes/javax/swing/JPasswordField.java ! src/java.desktop/share/classes/javax/swing/JPopupMenu.java ! src/java.desktop/share/classes/javax/swing/JProgressBar.java ! src/java.desktop/share/classes/javax/swing/JRadioButton.java ! src/java.desktop/share/classes/javax/swing/JRadioButtonMenuItem.java ! src/java.desktop/share/classes/javax/swing/JRootPane.java ! src/java.desktop/share/classes/javax/swing/JScrollPane.java ! src/java.desktop/share/classes/javax/swing/JSeparator.java ! src/java.desktop/share/classes/javax/swing/JSlider.java ! src/java.desktop/share/classes/javax/swing/JSpinner.java ! src/java.desktop/share/classes/javax/swing/JSplitPane.java ! src/java.desktop/share/classes/javax/swing/JTabbedPane.java ! src/java.desktop/share/classes/javax/swing/JTable.java ! src/java.desktop/share/classes/javax/swing/JTextArea.java ! src/java.desktop/share/classes/javax/swing/JTextField.java ! src/java.desktop/share/classes/javax/swing/JTextPane.java ! src/java.desktop/share/classes/javax/swing/JToggleButton.java ! src/java.desktop/share/classes/javax/swing/JToolBar.java ! src/java.desktop/share/classes/javax/swing/JToolTip.java ! src/java.desktop/share/classes/javax/swing/JTree.java ! src/java.desktop/share/classes/javax/swing/JWindow.java ! src/java.desktop/share/classes/javax/swing/ProgressMonitor.java ! src/java.desktop/share/classes/javax/swing/ProgressMonitorInputStream.java ! src/java.desktop/share/classes/javax/swing/Spring.java ! src/java.desktop/share/classes/javax/swing/SpringLayout.java ! src/java.desktop/share/classes/javax/swing/SwingUtilities.java ! src/java.desktop/share/classes/javax/swing/SwingWorker.java ! src/java.desktop/share/classes/javax/swing/Timer.java ! src/java.desktop/share/classes/javax/swing/TransferHandler.java ! src/java.desktop/share/classes/javax/swing/WindowConstants.java ! src/java.desktop/share/classes/javax/swing/border/Border.java ! src/java.desktop/share/classes/javax/swing/border/package-info.java ! src/java.desktop/share/classes/javax/swing/colorchooser/package-info.java ! src/java.desktop/share/classes/javax/swing/event/InternalFrameAdapter.java ! src/java.desktop/share/classes/javax/swing/event/InternalFrameEvent.java ! src/java.desktop/share/classes/javax/swing/event/InternalFrameListener.java ! src/java.desktop/share/classes/javax/swing/event/TreeExpansionEvent.java ! src/java.desktop/share/classes/javax/swing/event/TreeExpansionListener.java ! src/java.desktop/share/classes/javax/swing/event/TreeModelEvent.java ! src/java.desktop/share/classes/javax/swing/event/TreeModelListener.java ! src/java.desktop/share/classes/javax/swing/event/TreeSelectionListener.java ! src/java.desktop/share/classes/javax/swing/event/TreeWillExpandListener.java ! src/java.desktop/share/classes/javax/swing/event/package-info.java ! src/java.desktop/share/classes/javax/swing/filechooser/FileFilter.java ! src/java.desktop/share/classes/javax/swing/filechooser/FileView.java ! src/java.desktop/share/classes/javax/swing/filechooser/package-info.java ! src/java.desktop/share/classes/javax/swing/package-info.java ! src/java.desktop/share/classes/javax/swing/plaf/basic/BasicComboBoxUI.java ! src/java.desktop/share/classes/javax/swing/plaf/basic/package-info.java ! src/java.desktop/share/classes/javax/swing/plaf/metal/package-info.java ! src/java.desktop/share/classes/javax/swing/plaf/multi/package-info.java ! src/java.desktop/share/classes/javax/swing/plaf/nimbus/package-info.java ! src/java.desktop/share/classes/javax/swing/plaf/package-info.java ! src/java.desktop/share/classes/javax/swing/table/TableModel.java ! src/java.desktop/share/classes/javax/swing/table/package-info.java ! src/java.desktop/share/classes/javax/swing/text/AbstractDocument.java ! src/java.desktop/share/classes/javax/swing/text/DefaultCaret.java ! src/java.desktop/share/classes/javax/swing/text/DefaultStyledDocument.java ! src/java.desktop/share/classes/javax/swing/text/JTextComponent.java ! src/java.desktop/share/classes/javax/swing/text/PlainDocument.java ! src/java.desktop/share/classes/javax/swing/text/StyleContext.java ! src/java.desktop/share/classes/javax/swing/text/html/HTMLDocument.java ! src/java.desktop/share/classes/javax/swing/text/html/package-info.java ! src/java.desktop/share/classes/javax/swing/text/html/parser/package-info.java ! src/java.desktop/share/classes/javax/swing/text/package-info.java ! src/java.desktop/share/classes/javax/swing/text/rtf/package-info.java ! src/java.desktop/share/classes/javax/swing/tree/DefaultMutableTreeNode.java ! src/java.desktop/share/classes/javax/swing/tree/DefaultTreeCellRenderer.java ! src/java.desktop/share/classes/javax/swing/tree/DefaultTreeModel.java ! src/java.desktop/share/classes/javax/swing/tree/ExpandVetoException.java ! src/java.desktop/share/classes/javax/swing/tree/TreeCellRenderer.java ! src/java.desktop/share/classes/javax/swing/tree/TreeModel.java ! src/java.desktop/share/classes/javax/swing/tree/TreeNode.java ! src/java.desktop/share/classes/javax/swing/tree/TreePath.java ! src/java.desktop/share/classes/javax/swing/tree/TreeSelectionModel.java ! src/java.desktop/share/classes/javax/swing/tree/package-info.java ! src/java.desktop/share/classes/javax/swing/undo/package-info.java ! src/java.desktop/share/classes/sun/swing/PrintingStatus.java Changeset: b5c564a1367c Author: akolarkunnu Date: 2018-11-05 18:53 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/b5c564a1367c 8213168: Enable different look and feel tests in SwingSet3 demo test FileChooserDemoTest Reviewed-by: serb Contributed-by: abdul.kolarkunnu at oracle.com ! test/jdk/sanity/client/SwingSet/src/FileChooserDemoTest.java ! test/jdk/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/JFileChooserOperator.java ! test/jdk/sanity/client/lib/jemmy/src/org/netbeans/jemmy/version_info Changeset: fe70e9638c42 Author: psadhukhan Date: 2018-11-26 10:49 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/fe70e9638c42 Merge - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/ArrayOffsetProvider.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc.test/src/org/graalvm/compiler/core/sparc/test/SPARCAllocatorTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64StringIndexOfOp.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/OpaqueNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/util/HashSetNodeEventListener.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/FixedNodeProbabilityCache.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64StringIndexOfNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.jdk9.test/src/org/graalvm/compiler/replacements/jdk9/UnsafeReplacementsTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.jdk9.test/src/org/graalvm/compiler/replacements/jdk9/VarHandleTest.java - test/hotspot/jtreg/compiler/graalunit/CoreSparcTest.java ! test/jdk/ProblemList.txt - test/jdk/java/awt/event/SequencedEvent/SequencedEventTest.java - test/jdk/java/util/ResourceBundle/Bug6299235Test.java - test/jdk/java/util/ResourceBundle/Bug6299235Test.sh - test/jdk/java/util/ResourceBundle/awtres.jar - test/jdk/java/util/ResourceBundle/modules/appbasic/appbasic.sh - test/jdk/java/util/ResourceBundle/modules/appbasic/src/asiabundles/jdk/test/resources/asia/MyResourcesAsia.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/asiabundles/jdk/test/resources/asia/MyResources_ja.properties - test/jdk/java/util/ResourceBundle/modules/appbasic/src/asiabundles/jdk/test/resources/asia/MyResources_zh.properties - test/jdk/java/util/ResourceBundle/modules/appbasic/src/asiabundles/jdk/test/resources/asia/MyResources_zh_TW.properties - test/jdk/java/util/ResourceBundle/modules/appbasic/src/asiabundles/module-info.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/eubundles/jdk/test/resources/eu/MyResourcesEU.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/eubundles/jdk/test/resources/eu/MyResources_de.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/eubundles/jdk/test/resources/eu/MyResources_fr.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/eubundles/module-info.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/test/jdk/test/Main.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/test/jdk/test/resources/MyResources.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/test/jdk/test/resources/MyResourcesProviderImpl.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/test/jdk/test/resources/MyResources_en.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/test/jdk/test/resources/spi/MyResourcesProvider.java - test/jdk/java/util/ResourceBundle/modules/appbasic/src/test/module-info.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/appbasic2.sh - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/asiabundles/jdk/test/resources/asia/MyResourcesAsia.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/asiabundles/jdk/test/resources/asia/MyResources_ja.properties - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/asiabundles/jdk/test/resources/asia/MyResources_zh.properties - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/asiabundles/jdk/test/resources/asia/MyResources_zh_TW.properties - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/asiabundles/module-info.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/eubundles/jdk/test/resources/eu/MyResourcesEU.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/eubundles/jdk/test/resources/eu/MyResources_de.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/eubundles/jdk/test/resources/eu/MyResources_fr.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/eubundles/module-info.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/test/jdk/test/Main.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/test/jdk/test/resources/MyResources.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/test/jdk/test/resources/MyResourcesProviderImpl.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/test/jdk/test/resources/MyResources_en.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/test/jdk/test/resources/spi/MyResourcesProvider.java - test/jdk/java/util/ResourceBundle/modules/appbasic2/src/test/module-info.java - test/jdk/java/util/ResourceBundle/modules/basic/basic.sh - test/jdk/java/util/ResourceBundle/modules/basic/src/asiabundles/jdk/test/resources/asia/MyResourcesAsia.java - test/jdk/java/util/ResourceBundle/modules/basic/src/asiabundles/jdk/test/resources/asia/MyResources_ja.properties - test/jdk/java/util/ResourceBundle/modules/basic/src/asiabundles/jdk/test/resources/asia/MyResources_ja_JP.properties - test/jdk/java/util/ResourceBundle/modules/basic/src/asiabundles/jdk/test/resources/asia/MyResources_zh.properties - test/jdk/java/util/ResourceBundle/modules/basic/src/asiabundles/jdk/test/resources/asia/MyResources_zh_TW.properties - test/jdk/java/util/ResourceBundle/modules/basic/src/asiabundles/module-info.java - test/jdk/java/util/ResourceBundle/modules/basic/src/eubundles/jdk/test/resources/eu/MyResourcesEU.java - test/jdk/java/util/ResourceBundle/modules/basic/src/eubundles/jdk/test/resources/eu/MyResources_de.java - test/jdk/java/util/ResourceBundle/modules/basic/src/eubundles/jdk/test/resources/eu/MyResources_fr.java - test/jdk/java/util/ResourceBundle/modules/basic/src/eubundles/module-info.java - test/jdk/java/util/ResourceBundle/modules/basic/src/extra/jdk/test/resources/asia/MyResources_vi.properties - test/jdk/java/util/ResourceBundle/modules/basic/src/extra/jdk/test/resources/eu/MyResources_es.java - test/jdk/java/util/ResourceBundle/modules/basic/src/mainbundles/jdk/test/resources/MyResources.java - test/jdk/java/util/ResourceBundle/modules/basic/src/mainbundles/jdk/test/resources/MyResourcesMain.java - test/jdk/java/util/ResourceBundle/modules/basic/src/mainbundles/jdk/test/resources/MyResources_en.java - test/jdk/java/util/ResourceBundle/modules/basic/src/mainbundles/jdk/test/resources/spi/MyResourcesProvider.java - test/jdk/java/util/ResourceBundle/modules/basic/src/mainbundles/module-info.java - test/jdk/java/util/ResourceBundle/modules/basic/src/test/jdk/test/Main.java - test/jdk/java/util/ResourceBundle/modules/basic/src/test/module-info.java - test/jdk/java/util/ResourceBundle/modules/layer/run.sh - test/jdk/java/util/ResourceBundle/modules/modlocal/modlocal.sh - test/jdk/java/util/ResourceBundle/modules/modlocal/src/extra/jdk/test/resources/MyResources_vi.properties - test/jdk/java/util/ResourceBundle/modules/modlocal/src/test/jdk/test/Main.java - test/jdk/java/util/ResourceBundle/modules/modlocal/src/test/jdk/test/resources/MyResources.java - test/jdk/java/util/ResourceBundle/modules/modlocal/src/test/jdk/test/resources/MyResources_de.java - test/jdk/java/util/ResourceBundle/modules/modlocal/src/test/jdk/test/resources/MyResources_en.java - test/jdk/java/util/ResourceBundle/modules/modlocal/src/test/jdk/test/resources/MyResources_fr.java - test/jdk/java/util/ResourceBundle/modules/modlocal/src/test/jdk/test/resources/MyResources_ja.properties - test/jdk/java/util/ResourceBundle/modules/modlocal/src/test/jdk/test/resources/MyResources_zh.properties - test/jdk/java/util/ResourceBundle/modules/modlocal/src/test/jdk/test/resources/MyResources_zh_TW.properties - test/jdk/java/util/ResourceBundle/modules/modlocal/src/test/module-info.java - test/jdk/java/util/ResourceBundle/modules/simple/simple.sh - test/jdk/java/util/ResourceBundle/modules/simple/src/bundles/jdk/test/resources/MyResources.java - test/jdk/java/util/ResourceBundle/modules/simple/src/bundles/jdk/test/resources/MyResources_de.java - test/jdk/java/util/ResourceBundle/modules/simple/src/bundles/jdk/test/resources/MyResources_en.java - test/jdk/java/util/ResourceBundle/modules/simple/src/bundles/jdk/test/resources/MyResources_fr.java - test/jdk/java/util/ResourceBundle/modules/simple/src/bundles/jdk/test/resources/MyResources_ja.properties - test/jdk/java/util/ResourceBundle/modules/simple/src/bundles/jdk/test/resources/MyResources_zh.properties - test/jdk/java/util/ResourceBundle/modules/simple/src/bundles/jdk/test/resources/MyResources_zh_TW.properties - test/jdk/java/util/ResourceBundle/modules/simple/src/bundles/jdk/test/resources/spi/MyResourcesProvider.java - test/jdk/java/util/ResourceBundle/modules/simple/src/bundles/module-info.java - test/jdk/java/util/ResourceBundle/modules/simple/src/test/jdk/test/Main.java - test/jdk/java/util/ResourceBundle/modules/simple/src/test/module-info.java - test/jdk/java/util/ResourceBundle/modules/unnamed/unnamed.sh - test/jdk/java/util/ResourceBundle/modules/visibility/visibility.sh - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/bundles/jdk/test/resources/MyResources.xml - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/bundles/jdk/test/resources/MyResources_de.xml - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/bundles/jdk/test/resources/MyResources_en.xml - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/bundles/jdk/test/resources/MyResources_fr.xml - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/bundles/jdk/test/resources/MyResources_ja.xml - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/bundles/jdk/test/resources/MyResources_zh.xml - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/bundles/jdk/test/resources/MyResources_zh_TW.xml - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/bundles/jdk/test/resources/spi/MyResourcesProvider.java - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/bundles/module-info.java - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/test/jdk/test/Main.java - test/jdk/java/util/ResourceBundle/modules/xmlformat/src/test/module-info.java - test/jdk/java/util/ResourceBundle/modules/xmlformat/xmlformat.sh - test/langtools/tools/jdeps/mrjar/test/Main.java Changeset: 40279c4862ec Author: psadhukhan Date: 2018-11-27 10:45 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/40279c4862ec 8213843: Changing L&F from Nimbus to Window L&F causes NPE in SwingSet2 8213121: javax/swing/GraphicsConfigNotifier/StalePreferredSize.java fails on mac10.13 Reviewed-by: serb ! src/java.desktop/share/classes/javax/swing/plaf/synth/SynthButtonUI.java ! test/jdk/ProblemList.txt ! test/jdk/javax/swing/GraphicsConfigNotifier/StalePreferredSize.java Changeset: 0d757a37896c Author: psadhukhan Date: 2018-11-27 10:59 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/0d757a37896c Merge Changeset: 3c4c1debe32c Author: mhalder Date: 2018-11-27 13:47 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/3c4c1debe32c 8209123: [Macosx] Maximized frame (frame state set to MAXIMIZED_BOTH using setExtendedState) is resizable on Mac but not on Windows and Ubuntu Reviewed-by: kaddepalli, psadhukhan ! src/java.desktop/macosx/classes/sun/lwawt/macosx/CPlatformWindow.java ! src/java.desktop/macosx/native/libawt_lwawt/awt/AWTWindow.m Changeset: b2e14d91a50c Author: psadhukhan Date: 2018-11-29 14:32 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/b2e14d91a50c Merge - src/bsd/doc/man/DO_NOT_EDIT--GENERATED_FILES - src/bsd/doc/man/apt.1 - src/bsd/doc/man/ja/apt.1 - src/bsd/doc/man/ja/jar.1 - src/bsd/doc/man/ja/jarsigner.1 - src/bsd/doc/man/ja/java.1 - src/bsd/doc/man/ja/javac.1 - src/bsd/doc/man/ja/javadoc.1 - src/bsd/doc/man/ja/javap.1 - src/bsd/doc/man/ja/javaws.1 - src/bsd/doc/man/ja/jcmd.1 - src/bsd/doc/man/ja/jconsole.1 - src/bsd/doc/man/ja/jdb.1 - src/bsd/doc/man/ja/jdeps.1 - src/bsd/doc/man/ja/jhat.1 - src/bsd/doc/man/ja/jinfo.1 - src/bsd/doc/man/ja/jjs.1 - src/bsd/doc/man/ja/jmap.1 - src/bsd/doc/man/ja/jps.1 - src/bsd/doc/man/ja/jrunscript.1 - src/bsd/doc/man/ja/jsadebugd.1 - src/bsd/doc/man/ja/jstack.1 - src/bsd/doc/man/ja/jstat.1 - src/bsd/doc/man/ja/jstatd.1 - src/bsd/doc/man/ja/keytool.1 - src/bsd/doc/man/ja/pack200.1 - src/bsd/doc/man/ja/rmic.1 - src/bsd/doc/man/ja/rmid.1 - src/bsd/doc/man/ja/rmiregistry.1 - src/bsd/doc/man/ja/serialver.1 - src/bsd/doc/man/ja/unpack200.1 - src/bsd/doc/man/jar.1 - src/bsd/doc/man/jarsigner.1 - src/bsd/doc/man/java.1 - src/bsd/doc/man/javac.1 - src/bsd/doc/man/javadoc.1 - src/bsd/doc/man/javap.1 - src/bsd/doc/man/javaws.1 - src/bsd/doc/man/jcmd.1 - src/bsd/doc/man/jconsole.1 - src/bsd/doc/man/jdb.1 - src/bsd/doc/man/jdeps.1 - src/bsd/doc/man/jhat.1 - src/bsd/doc/man/jinfo.1 - src/bsd/doc/man/jjs.1 - src/bsd/doc/man/jmap.1 - src/bsd/doc/man/jps.1 - src/bsd/doc/man/jrunscript.1 - src/bsd/doc/man/jsadebugd.1 - src/bsd/doc/man/jstack.1 - src/bsd/doc/man/jstat.1 - src/bsd/doc/man/jstatd.1 - src/bsd/doc/man/keytool.1 - src/bsd/doc/man/pack200.1 - src/bsd/doc/man/rmic.1 - src/bsd/doc/man/rmid.1 - src/bsd/doc/man/rmiregistry.1 - src/bsd/doc/man/serialver.1 - src/bsd/doc/man/unpack200.1 - src/linux/doc/man/DO_NOT_EDIT--GENERATED_FILES - src/linux/doc/man/ja/jar.1 - src/linux/doc/man/ja/jarsigner.1 - src/linux/doc/man/ja/java.1 - src/linux/doc/man/ja/javac.1 - src/linux/doc/man/ja/javadoc.1 - src/linux/doc/man/ja/javap.1 - src/linux/doc/man/ja/javaws.1 - src/linux/doc/man/ja/jcmd.1 - src/linux/doc/man/ja/jconsole.1 - src/linux/doc/man/ja/jdb.1 - src/linux/doc/man/ja/jdeps.1 - src/linux/doc/man/ja/jhat.1 - src/linux/doc/man/ja/jinfo.1 - src/linux/doc/man/ja/jjs.1 - src/linux/doc/man/ja/jmap.1 - src/linux/doc/man/ja/jps.1 - src/linux/doc/man/ja/jrunscript.1 - src/linux/doc/man/ja/jsadebugd.1 - src/linux/doc/man/ja/jstack.1 - src/linux/doc/man/ja/jstat.1 - src/linux/doc/man/ja/jstatd.1 - src/linux/doc/man/ja/keytool.1 - src/linux/doc/man/ja/pack200.1 - src/linux/doc/man/ja/rmic.1 - src/linux/doc/man/ja/rmid.1 - src/linux/doc/man/ja/rmiregistry.1 - src/linux/doc/man/ja/serialver.1 - src/linux/doc/man/ja/unpack200.1 - src/linux/doc/man/jar.1 - src/linux/doc/man/jarsigner.1 - src/linux/doc/man/java.1 - src/linux/doc/man/javac.1 - src/linux/doc/man/javadoc.1 - src/linux/doc/man/javap.1 - src/linux/doc/man/javaws.1 - src/linux/doc/man/jcmd.1 - src/linux/doc/man/jconsole.1 - src/linux/doc/man/jdb.1 - src/linux/doc/man/jdeps.1 - src/linux/doc/man/jhat.1 - src/linux/doc/man/jinfo.1 - src/linux/doc/man/jjs.1 - src/linux/doc/man/jmap.1 - src/linux/doc/man/jps.1 - src/linux/doc/man/jrunscript.1 - src/linux/doc/man/jsadebugd.1 - src/linux/doc/man/jstack.1 - src/linux/doc/man/jstat.1 - src/linux/doc/man/jstatd.1 - src/linux/doc/man/keytool.1 - src/linux/doc/man/pack200.1 - src/linux/doc/man/rmic.1 - src/linux/doc/man/rmid.1 - src/linux/doc/man/rmiregistry.1 - src/linux/doc/man/serialver.1 - src/linux/doc/man/unpack200.1 - src/solaris/doc/sun/man/man1/DO_NOT_EDIT--GENERATED_FILES - src/solaris/doc/sun/man/man1/ja/jar.1 - src/solaris/doc/sun/man/man1/ja/jarsigner.1 - src/solaris/doc/sun/man/man1/ja/java.1 - src/solaris/doc/sun/man/man1/ja/javac.1 - src/solaris/doc/sun/man/man1/ja/javadoc.1 - src/solaris/doc/sun/man/man1/ja/javap.1 - src/solaris/doc/sun/man/man1/ja/jcmd.1 - src/solaris/doc/sun/man/man1/ja/jconsole.1 - src/solaris/doc/sun/man/man1/ja/jdb.1 - src/solaris/doc/sun/man/man1/ja/jdeps.1 - src/solaris/doc/sun/man/man1/ja/jhat.1 - src/solaris/doc/sun/man/man1/ja/jinfo.1 - src/solaris/doc/sun/man/man1/ja/jjs.1 - src/solaris/doc/sun/man/man1/ja/jmap.1 - src/solaris/doc/sun/man/man1/ja/jps.1 - src/solaris/doc/sun/man/man1/ja/jrunscript.1 - src/solaris/doc/sun/man/man1/ja/jsadebugd.1 - src/solaris/doc/sun/man/man1/ja/jstack.1 - src/solaris/doc/sun/man/man1/ja/jstat.1 - src/solaris/doc/sun/man/man1/ja/jstatd.1 - src/solaris/doc/sun/man/man1/ja/keytool.1 - src/solaris/doc/sun/man/man1/ja/pack200.1 - src/solaris/doc/sun/man/man1/ja/rmic.1 - src/solaris/doc/sun/man/man1/ja/rmid.1 - src/solaris/doc/sun/man/man1/ja/rmiregistry.1 - src/solaris/doc/sun/man/man1/ja/serialver.1 - src/solaris/doc/sun/man/man1/ja/unpack200.1 - src/solaris/doc/sun/man/man1/jar.1 - src/solaris/doc/sun/man/man1/jarsigner.1 - src/solaris/doc/sun/man/man1/java.1 - src/solaris/doc/sun/man/man1/javac.1 - src/solaris/doc/sun/man/man1/javadoc.1 - src/solaris/doc/sun/man/man1/javap.1 - src/solaris/doc/sun/man/man1/jcmd.1 - src/solaris/doc/sun/man/man1/jconsole.1 - src/solaris/doc/sun/man/man1/jdb.1 - src/solaris/doc/sun/man/man1/jdeps.1 - src/solaris/doc/sun/man/man1/jhat.1 - src/solaris/doc/sun/man/man1/jinfo.1 - src/solaris/doc/sun/man/man1/jjs.1 - src/solaris/doc/sun/man/man1/jmap.1 - src/solaris/doc/sun/man/man1/jps.1 - src/solaris/doc/sun/man/man1/jrunscript.1 - src/solaris/doc/sun/man/man1/jsadebugd.1 - src/solaris/doc/sun/man/man1/jstack.1 - src/solaris/doc/sun/man/man1/jstat.1 - src/solaris/doc/sun/man/man1/jstatd.1 - src/solaris/doc/sun/man/man1/keytool.1 - src/solaris/doc/sun/man/man1/pack200.1 - src/solaris/doc/sun/man/man1/rmic.1 - src/solaris/doc/sun/man/man1/rmid.1 - src/solaris/doc/sun/man/man1/rmiregistry.1 - src/solaris/doc/sun/man/man1/serialver.1 - src/solaris/doc/sun/man/man1/unpack200.1 - test/jdk/lib/testlibrary/jdk/testlibrary/OptimalCapacity.java Changeset: 5feec55560f2 Author: neliasso Date: 2018-11-29 09:31 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/5feec55560f2 8214434: Disabling ZOptimizeLoadBarriers hits assert Reviewed-by: kvn, pliden, eosterlund ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp Changeset: 9bce3e729d5f Author: gromero Date: 2018-11-28 13:16 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/9bce3e729d5f 8214451: PPC64/s390: Clean up unused CRC32 prototype and function Reviewed-by: mdoerr, lucy ! src/hotspot/cpu/ppc/macroAssembler_ppc.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.hpp ! src/hotspot/cpu/ppc/stubRoutines_ppc.hpp ! src/hotspot/cpu/s390/macroAssembler_s390.cpp ! src/hotspot/cpu/s390/macroAssembler_s390.hpp Changeset: a96844b3a929 Author: stuefe Date: 2018-11-22 12:20 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/a96844b3a929 8214229: Enable ShowRegistersOnAssert by default Reviewed-by: mdoerr, coleenp ! src/hotspot/share/runtime/globals.hpp Changeset: b3866f3879e1 Author: mullan Date: 2018-11-29 08:50 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/b3866f3879e1 8214443: Remove TLS v1 and v1.1 from SSLContext required algorithms Reviewed-by: xuelei ! src/java.base/share/classes/javax/net/ssl/SSLContext.java Changeset: c392f7b60fd9 Author: rriggs Date: 2018-11-29 09:19 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/c392f7b60fd9 8214445: [test] java/net/URL/HandlerLoop has illegal reflective access Reviewed-by: lancea, chegar, bpb ! test/jdk/java/net/URL/HandlerLoop.java Changeset: 8a85d21d9616 Author: xuelei Date: 2018-11-29 08:43 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/8a85d21d9616 8210985: Update the default SSL session cache size to 20480 Reviewed-by: jnimeh, mullan ! src/java.base/share/classes/javax/net/ssl/SSLSessionContext.java ! src/java.base/share/classes/sun/security/ssl/SSLSessionContextImpl.java + test/jdk/sun/security/ssl/SSLSessionContextImpl/DefautlCacheSize.java Changeset: 265209adbe77 Author: cushon Date: 2018-11-19 15:01 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/265209adbe77 8214026: Canonicalized archive paths appearing in diagnostics Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/file/JavacFileManager.java + test/langtools/tools/javac/file/SymLinkArchiveTest.java Changeset: 26b7f3038e27 Author: naoto Date: 2018-11-29 10:13 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/26b7f3038e27 8214170: ResourceBundle.Control.newBundle should throw IllegalAccessException when constructor of the resource bundle is not public. Reviewed-by: rriggs, mchung ! src/java.base/share/classes/java/util/ResourceBundle.java ! test/jdk/java/util/ResourceBundle/Control/MissingResourceCauseTest.java ! test/jdk/java/util/ResourceBundle/Control/MissingResourceCauseTest.sh + test/jdk/java/util/ResourceBundle/Control/NoNoArgConstructorRB.java Changeset: db7a459e10eb Author: coleenp Date: 2018-11-29 13:04 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/db7a459e10eb 8214356: Verification of class metadata unloading takes a long time Summary: conditionalize verify_chunk_in_freelist call. Reviewed-by: shade, tschatzl ! src/hotspot/share/memory/binaryTreeDictionary.inline.hpp ! test/hotspot/jtreg/vmTestbase/metaspace/stressDictionary/StressDictionary.java Changeset: fa5ef7aa0393 Author: lmesnik Date: 2018-11-29 11:06 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/fa5ef7aa0393 8214462: Add serviceability/sa/ClhsdbInspect.java to ProblemList.txt Reviewed-by: dholmes, jgeorge ! test/hotspot/jtreg/ProblemList.txt Changeset: 7c8d9a89e298 Author: lmesnik Date: 2018-11-29 11:14 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/7c8d9a89e298 8214400: Update hotspot application/jcstress jtreg tests wrappers to use jcstress 0.5 Reviewed-by: dholmes, mseledtsov ! test/hotspot/jtreg/applications/jcstress/JcstressRunner.java + test/hotspot/jtreg/applications/jcstress/threadlocal.java Changeset: 5e9d836c5ad8 Author: iveresov Date: 2018-11-29 11:47 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/5e9d836c5ad8 8193577: nsk/jvmti/IterateThroughHeap/filter-tagged fails with Graal in Xcomp mode Summary: Make field values opaque to compiler Reviewed-by: dlong, sspitsyn ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-tagged/HeapFilter.cpp Changeset: fffe38c905a0 Author: sangheki Date: 2018-11-28 15:09 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/fffe38c905a0 8211735: Wrong heap mapper can be selected with UseLargePages on G1 Reviewed-by: tschatzl, kbarrett ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp Changeset: beb2b88a118e Author: naoto Date: 2018-11-29 13:16 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/beb2b88a118e 8212870: Broken links for www.usno.navy.mil Reviewed-by: bpb ! src/java.base/share/classes/java/util/Date.java Changeset: 61e442695048 Author: naoto Date: 2018-11-29 13:17 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/61e442695048 8212878: host in ftp: link not found Reviewed-by: bpb ! src/java.base/share/classes/java/util/spi/TimeZoneNameProvider.java Changeset: 56ca125c973b Author: shurailine Date: 2018-11-29 06:34 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build Reviewed-by: erikj ! make/Bundles.gmk + make/Coverage.gmk ! make/Main.gmk ! make/autoconf/jdk-options.m4 ! make/autoconf/spec.gmk.in ! make/conf/jib-profiles.js Changeset: d488477865c0 Author: rfield Date: 2018-11-29 17:45 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/d488477865c0 8213725: JShell NullPointerException due to class file with unexpected package Reviewed-by: jlahoda ! src/jdk.jshell/share/classes/jdk/jshell/Eval.java ! test/langtools/jdk/jshell/KullaTesting.java ! test/langtools/jdk/jshell/VariablesTest.java Changeset: c05ba185a1d3 Author: jcbeyler Date: 2018-11-29 18:57 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/c05ba185a1d3 8214417: Add space after/before {} in vmTestbase/nsk/jvmti/[A-I] tests Summary: Fix the spaces around {} Reviewed-by: amenkov, sspitsyn, dholmes ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002/attach002Agent00.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach002a/attach002aAgent00.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach008/attach008Agent00.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach020/attach020Agent00.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach021/attach021Agent00.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach022/attach022Agent00.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach037/attach037Agent00.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach038/attach038Agent00.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach039/attach039Agent00.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach045/attach045Agent02.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/AttachOnDemand/attach045/attach045Agent03.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/Breakpoint/breakpoint001/breakpoint001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassPrepare/classprep001/classprep001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldAccessWatch/clrfldw001/clrfldw001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClearFieldModificationWatch/clrfmodw001/clrfmodw001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop001/framepop001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetAllThreads/allthr001/allthr001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes001/bytecodes001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetBytecodes/bytecodes003/bytecodes003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassFields/getclfld007/getclfld007.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassMethods/getclmthd007/getclmthd007.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig006/getclsig006.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetImplementedInterfaces/getintrf007/getintrf007.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab001/linetab001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab001/localtab001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab004/localtab004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab005/localtab005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodLocation/methloc001/methloc001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr001/getstacktr001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr003/getstacktr003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr004/getstacktr004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr005/getstacktr005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr006/getstacktr006.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr007/getstacktr007.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetStackTrace/getstacktr008/getstacktr008.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperties/getsysprops002/getsysprops002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetSystemProperty/getsysprop002/getsysprop002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadInfo/thrinfo001/thrinfo001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/IsMethodSynthetic/issynth001/issynth001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/callbacks/Callbacks.cpp Changeset: 7d3391e9df19 Author: sadayapalam Date: 2018-11-30 10:37 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/7d3391e9df19 8206325: AssertionError in TypeSymbol.getAnnotationTypeMetadata Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/TypeAnnotations.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Annotate.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java + test/langtools/tools/javac/annotations/AtNonAnnotationTypeTest.java + test/langtools/tools/javac/annotations/AtNonAnnotationTypeTest.out Changeset: dbbf46b13d52 Author: michaelm Date: 2018-11-30 10:29 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/dbbf46b13d52 8211842: IPv6_supported wrongly returns false when unix domain socket is bound to fd 0 Reviewed-by: chegar, alanb ! make/test/JtregNativeJdk.gmk ! src/java.base/unix/native/libnet/net_util_md.c ! test/jdk/java/nio/channels/spi/SelectorProvider/inheritedChannel/InheritedChannelTest.java ! test/jdk/java/nio/channels/spi/SelectorProvider/inheritedChannel/Launcher.java + test/jdk/java/nio/channels/spi/SelectorProvider/inheritedChannel/UnixDomainSocket.java + test/jdk/java/nio/channels/spi/SelectorProvider/inheritedChannel/UnixSocketTest.java ! test/jdk/java/nio/channels/spi/SelectorProvider/inheritedChannel/libInheritedChannel.c Changeset: a432469d2ed5 Author: roland Date: 2018-11-27 08:44 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/a432469d2ed5 8214344: C2: assert(con.basic_type() != T_ILLEGAL) failed: elembt=byte; loadbt=void; unsigned=0 Reviewed-by: kvn, thartmann ! src/hotspot/share/opto/vectornode.hpp + test/hotspot/jtreg/compiler/loopopts/LoadVectorFromStableArray.java Changeset: be588be89f68 Author: ysuenaga Date: 2018-11-30 20:15 +0900 URL: http://hg.openjdk.java.net/loom/loom/rev/be588be89f68 8214499: SA should follow 8150689 Reviewed-by: dholmes, jgeorge ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/OopUtilities.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/JavaVFrame.java Changeset: 436097b038a1 Author: eosterlund Date: 2018-11-30 11:40 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/436097b038a1 8213565: Crash in DependencyContext::remove_dependent_nmethod Reviewed-by: rehn, kvn ! src/hotspot/share/classfile/classLoaderDataGraph.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/code/codeBlob.hpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeCache.hpp ! src/hotspot/share/code/compiledMethod.hpp ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/dependencyContext.hpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/nmethod.hpp ! src/hotspot/share/oops/instanceKlass.cpp ! src/hotspot/share/oops/instanceKlass.hpp ! src/hotspot/share/prims/methodHandles.cpp ! src/hotspot/share/prims/methodHandles.hpp ! src/java.base/share/classes/java/lang/invoke/MethodHandleNatives.java ! test/hotspot/gtest/code/test_dependencyContext.cpp Changeset: f468232c6147 Author: hannesw Date: 2018-11-30 15:39 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/f468232c6147 8210943: Hiding of inner classes not resolved properly Reviewed-by: attila, jlaskey ! src/jdk.dynalink/share/classes/jdk/dynalink/beans/AccessibleMembersLookup.java ! test/nashorn/src/jdk/dynalink/beans/test/BeansLinkerTest.java Changeset: 5827f12ecbf0 Author: hannesw Date: 2018-11-30 15:43 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/5827f12ecbf0 8214525: Bit rot in Nashorn Ant script Reviewed-by: attila, jlaskey ! make/nashorn/build.xml + make/nashorn/element-list - make/nashorn/package-list ! make/nashorn/project.properties Changeset: 621efe32eb0b Author: eosterlund Date: 2018-11-30 15:29 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/621efe32eb0b 8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes Reviewed-by: coleenp, dlong ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/ci/ciInstanceKlass.hpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/memory/universe.hpp ! src/hotspot/share/oops/instanceKlass.cpp ! src/hotspot/share/oops/instanceKlass.hpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/runtime/vmStructs.cpp + test/hotspot/jtreg/runtime/ClassUnload/UnloadInterfaceTest.java + test/hotspot/jtreg/runtime/ClassUnload/test/ImplementorClass.java + test/hotspot/jtreg/runtime/ClassUnload/test/Interface.java ! test/hotspot/jtreg/runtime/testlibrary/ClassUnloadCommon.java Changeset: 7003a0220fe4 Author: eosterlund Date: 2018-11-30 16:51 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/7003a0220fe4 8214231: Allow concurrent cleaning of TypeStackSlotEntries and ReturnTypeEntry Reviewed-by: rehn, coleenp ! src/hotspot/share/ci/ciMethodData.cpp Changeset: 447236ceaf28 Author: ccheung Date: 2018-11-30 12:24 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/447236ceaf28 8210102: CDS tests timed out Summary: increase the timeout to 160s for the DifferentHeapSizes test. Reviewed-by: iklam ! test/hotspot/jtreg/runtime/appcds/cacheObject/DifferentHeapSizes.java Changeset: cb009cf888c6 Author: joehw Date: 2018-11-30 12:41 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/cb009cf888c6 8213734: SAXParser.parse(File, ..) does not close resources when Exception occurs. Reviewed-by: lancea ! src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/XMLEntityManager.java + test/jaxp/javax/xml/jaxp/unittest/sax/SAXParserTest.java Changeset: 241b8151b6b6 Author: henryjen Date: 2018-11-30 13:42 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/241b8151b6b6 8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM Reviewed-by: alanb, ihse Contributed-by: priyanka.mangal at oracle.com ! make/test/JtregNativeJdk.gmk ! src/java.base/macosx/native/libjli/java_md_macosx.m + test/jdk/tools/launcher/JliLaunchTest.java + test/jdk/tools/launcher/exeJliLaunchTest.c + test/jdk/vm/JniInvocationTest.java + test/jdk/vm/exeJniInvocationTest.c Changeset: a051c5c8aa56 Author: bpb Date: 2018-11-30 14:48 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/a051c5c8aa56 8214195: Align stdout messages in test/jdk/java/math/BigInteger/PrimitiveConversionTests.java Reviewed-by: lancea ! test/jdk/java/math/BigInteger/PrimitiveConversionTests.java Changeset: 290b04fd1846 Author: epavlova Date: 2018-11-30 23:46 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/290b04fd1846 8214557: Filter out VM flags which don't affect AOT code generation Reviewed-by: kvn, erikj ! make/RunTests.gmk Changeset: a6ede2dabe20 Author: weijun Date: 2018-12-01 21:58 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/a6ede2dabe20 8214179: Add groupname info into keytool -list and -genkeypair output Reviewed-by: mullan ! src/java.base/share/classes/sun/security/tools/keytool/Main.java ! test/jdk/sun/security/tools/keytool/DeprecateKeyalg.java ! test/jdk/sun/security/tools/keytool/GroupName.java Changeset: bc1fadfd2396 Author: itakiguchi Date: 2018-12-02 11:09 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/bc1fadfd2396 8213618: IBM970 charset has missing entry and remove unexpected entries Reviewed-by: srl, martin ! make/data/charsetmapping/IBM970.c2b ! make/data/charsetmapping/IBM970.map ! test/jdk/sun/nio/cs/TestIBMBugs.java Changeset: df065f8356d7 Author: nishjain Date: 2018-12-03 12:35 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/df065f8356d7 8213294: Upgrade IANA LSR data Reviewed-by: naoto ! make/data/lsrdata/language-subtag-registry.txt Changeset: e4ba5414c8b4 Author: jlahoda Date: 2018-12-03 10:37 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/e4ba5414c8b4 8214031: Assertion error in value break statement with conditional operator in switch expression Summary: Correcting handling of boolean-valued switch expressions when true/false; generating them directly rather than desugaring in Lower. Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Flow.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Lower.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/CRTable.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Code.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Gen.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/tree/JCTree.java + test/langtools/tools/javac/switchexpr/CRT.java + test/langtools/tools/javac/switchexpr/DefiniteAssignment1.java + test/langtools/tools/javac/switchexpr/DefiniteAssignment2.java + test/langtools/tools/javac/switchexpr/DefiniteAssignment2.out ! test/langtools/tools/javac/switchexpr/ExpressionSwitch-old.out ! test/langtools/tools/javac/switchexpr/ExpressionSwitch.java + test/langtools/tools/javac/switchexpr/ExpressionSwitchBugsInGen.java + test/langtools/tools/javac/switchexpr/ExpressionSwitchEmbedding.java Changeset: 9501a7b59111 Author: dchuyko Date: 2018-12-03 14:28 +0300 URL: http://hg.openjdk.java.net/loom/loom/rev/9501a7b59111 8214444: Wrong strncat limits in dfa.cpp Reviewed-by: kvn ! src/hotspot/share/adlc/adlc.hpp ! src/hotspot/share/adlc/dfa.cpp Changeset: 2c8e6decb1c3 Author: jlahoda Date: 2018-12-03 14:25 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/2c8e6decb1c3 8214529: Exception while using Anonymous class in switch expression Summary: Clearing breakResult when creating methodEnv. Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/MemberEnter.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchBugs.java Changeset: 55a05ed55768 Author: pliden Date: 2018-12-03 14:52 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/55a05ed55768 8214484: ZGC: Exclude SA tests ClhsdbJhisto and TestHeapDumpFor* Reviewed-by: shade, tschatzl ! test/hotspot/jtreg/serviceability/sa/ClhsdbJhisto.java ! test/hotspot/jtreg/serviceability/sa/TestHeapDumpForInvokeDynamic.java ! test/hotspot/jtreg/serviceability/sa/TestHeapDumpForLargeArray.java Changeset: 5d292d59fe40 Author: pliden Date: 2018-12-03 14:52 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/5d292d59fe40 8214476: ZGC: Build ZGC by default Reviewed-by: shade, rkennke, ihse ! make/autoconf/hotspot.m4 ! make/conf/jib-profiles.js Changeset: cd19c580ba9c Author: pliden Date: 2018-12-03 14:52 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/cd19c580ba9c 8214377: ZGC: Don't use memset to initialize array of ZForwardingTableEntry Reviewed-by: rkennke, eosterlund ! src/hotspot/share/gc/z/zForwardingTable.cpp ! src/hotspot/share/gc/z/zForwardingTableEntry.hpp Changeset: 8613f3fdbdae Author: eosterlund Date: 2018-12-03 14:16 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/8613f3fdbdae 8214523: Fix nmethod asserts for concurrent nmethod unloading Reviewed-by: coleenp, kvn ! src/hotspot/share/code/nmethod.cpp Changeset: 0baf34792a27 Author: weijun Date: 2018-12-03 23:58 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/0baf34792a27 8210476: sun/security/mscapi/PrngSlow.java fails with Still too slow Reviewed-by: xuelei, igerasim, rriggs ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/PRNG.java ! src/jdk.crypto.mscapi/windows/native/libsunmscapi/security.cpp + test/jdk/sun/security/mscapi/PrngSerialize.java ! test/jdk/sun/security/mscapi/PrngSlow.java Changeset: 7b757120a053 Author: ihse Date: 2018-12-03 18:43 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/7b757120a053 8214311: dtrace gensrc has missing dependencies Reviewed-by: tbell, erikj ! make/Main.gmk ! make/hotspot/gensrc/GensrcDtrace.gmk Changeset: 0402d381135d Author: ihse Date: 2018-12-03 18:44 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/0402d381135d 8214710: Fix hg log in update_copyright_year.sh Reviewed-by: alanb, tbell, erikj ! make/scripts/update_copyright_year.sh Changeset: 28094715ae71 Author: ihse Date: 2018-12-03 18:46 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/28094715ae71 8214718: Update missing copyright year in build system Reviewed-by: erikj, tbell ! bin/idea.sh ! make/BuildStatic.gmk ! make/Bundles.gmk ! make/CompileDemos.gmk ! make/CompileToolsHotspot.gmk ! make/CopyInterimCLDRConverter.gmk ! make/CreateBuildJdkCopy.gmk ! make/CreateJmods.gmk ! make/GenerateModuleSummary.gmk ! make/GensrcModuleInfo.gmk ! make/InterimImage.gmk ! make/ZipSource.gmk ! make/autoconf/boot-jdk.m4 ! make/autoconf/build-aux/config.guess ! make/autoconf/jdk-version.m4 ! make/autoconf/lib-bundled.m4 ! make/autoconf/toolchain_windows.m4 ! make/common/JarArchive.gmk ! make/common/JavaCompilation.gmk ! make/common/TextFileProcessing.gmk ! make/common/ZipArchive.gmk ! make/copy/Copy-java.desktop.gmk ! make/copy/CopyCommon.gmk ! make/data/fontconfig/macosx.fontconfig.properties ! make/data/fontconfig/solaris.fontconfig.properties ! make/data/fontconfig/windows.fontconfig.properties ! make/devkit/createMacosxDevkit6.sh ! make/devkit/createSolarisDevkit12.4.sh ! make/devkit/createWindowsDevkit2013.sh ! make/gendata/GendataFontConfig.gmk ! make/gendata/GendataHtml32dtd.gmk ! make/gendata/GendataTZDB.gmk ! make/gensrc/Gensrc-jdk.localedata.gmk ! make/gensrc/GensrcCharsetCoder.gmk ! make/gensrc/GensrcCommonLangtools.gmk ! make/gensrc/GensrcLocaleData.gmk ! make/gensrc/GensrcMisc.gmk ! make/gensrc/GensrcModuleLoaderMap.gmk ! make/gensrc/GensrcSwing.gmk ! make/gensrc/GensrcVarHandles.gmk ! make/hotspot/gensrc/GenerateSources.gmk ! make/hotspot/src/classes/build/tools/projectcreator/BuildConfig.java ! make/jdk/src/classes/build/tools/classlist/HelloClasslist.java ! make/jdk/src/classes/build/tools/module/GenModuleInfoSource.java ! make/jdk/src/classes/build/tools/module/ModuleInfoExtraTest.java ! make/langtools/build.xml ! make/langtools/intellij/template/src/idea/LangtoolsIdeaAntLogger.java ! make/langtools/tools/propertiesparser/PropertiesParser.java ! make/langtools/tools/propertiesparser/gen/ClassGenerator.java ! make/launcher/Launcher-jdk.aot.gmk ! make/nashorn/build.xml ! make/rmic/Rmic-java.management.rmi.gmk ! make/scripts/compare_exceptions.sh.incl Changeset: 2eb8ae0f3454 Author: ihse Date: 2018-12-03 18:48 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/2eb8ae0f3454 8213187: Handle libwindowsaccessbridge need to access MSVCRT functions Reviewed-by: erikj ! make/lib/Lib-jdk.accessibility.gmk Changeset: 5ddfc90ab97d Author: iklam Date: 2018-12-03 15:53 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/5ddfc90ab97d 8214726: Typo in HeapShared::check_closed_archive_heap_region_object Reviewed-by: lfoltan ! src/hotspot/share/memory/heapShared.cpp Changeset: bbf85239e37c Author: jjg Date: 2018-12-03 16:14 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/bbf85239e37c 8214744: Unnecessary

tags in java.util.zip.Deflater Reviewed-by: mchung, lancea ! src/java.base/share/classes/java/util/zip/Deflater.java Changeset: 064e5795fa59 Author: jjg Date: 2018-12-03 16:44 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/064e5795fa59 8214745: Bad link in coll-reference.html Reviewed-by: martin, bpb, lancea ! src/java.base/share/classes/java/util/doc-files/coll-reference.html Changeset: 7edc56620d42 Author: jcbeyler Date: 2018-12-03 19:47 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/7edc56620d42 8214502: Add space after/before {} in remaining vmTestbase tests Summary: Added spaces around the {} Reviewed-by: dholmes, sspitsyn ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/Exception/exception001/exception001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/ExceptionCatch/excatch001/excatch001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm005/getfldnm005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFrameLocation/frameloc002/frameloc002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodDeclaringClass/declcls003/declcls003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname003/methname003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-tagged/HeapFilter.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/non-concrete-klass-filter/NonConcreteKlassFilter.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodEntry/mentry001/mentry001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit001/mexit001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/MethodExit/mexit002/mexit002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind001/nativemethbind001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe006/popframe006.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe008/popframe008.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass008/redefclass008.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass009/redefclass009.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass010/redefclass010.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass019/redefclass019.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass027/redefclass027.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw001/setfldw001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw003/setfldw003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw004/setfldw004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldAccessWatch/setfldw005/setfldw005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw001/setfmodw001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw003/setfmodw003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw004/setfmodw004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetFieldModificationWatch/setfmodw005/setfmodw005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop003/setsysprop003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep001/singlestep001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SingleStep/singlestep003/singlestep003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t001/em05t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM05/em05t002/em05t002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t002/ji03t002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t001/sp02t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t002/sp02t002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t003/sp02t003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t001/sp06t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t002/sp06t002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t003/sp06t003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/MethodBind/JvmtiTest/JvmtiTest.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/StackTrace/JvmtiTest/JvmtiTest.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/AddToBootstrapClassLoaderSearch/JvmtiTest/JvmtiTest.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/Dispose/JvmtiTest/JvmtiTest.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/ForceGarbageCollection/gc/gc.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/environment/JvmtiTest/JvmtiTest.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendMonitorInfo/JvmtiTest/JvmtiTest.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendStackTrace/JvmtiTest/JvmtiTest.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/rawmonitor/rawmonitor.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/setNullVMInit/JvmtiTest/JvmtiTest.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/AddToBootstrapClassLoaderSearch/bootclssearch_agent.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/AddToSystemClassLoaderSearch/systemclssearch_agent.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/Injector.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/agent_tools.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/native/nsk_tools.cpp ! test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress003.cpp Changeset: a2500cf11ee5 Author: jgeorge Date: 2018-12-04 11:10 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/a2500cf11ee5 8213323: sa/TestJmapCoreMetaspace.java and sa/TestJmapCore.java fail with ZGC Summary: Avoid creating the hprof file and throw an exception in HeapHprofBinWriter for ZGC and handle this in the TestJmap* testcases Reviewed-by: gadams, jcbeyler, cjplummer ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/JMap.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/HeapHprofBinWriter.java ! test/hotspot/jtreg/serviceability/sa/TestJmapCore.java Changeset: ff04b71bf6f1 Author: iklam Date: 2018-12-03 22:27 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation Summary: Force a full GC with a single thread before writing heap archive regions Reviewed-by: sjohanss, jiangli ! src/hotspot/share/classfile/compactHashtable.hpp ! src/hotspot/share/gc/g1/g1Arguments.cpp ! src/hotspot/share/gc/g1/g1HeapVerifier.cpp ! src/hotspot/share/gc/g1/g1HeapVerifier.hpp ! src/hotspot/share/gc/shared/gcCause.cpp ! src/hotspot/share/gc/shared/gcCause.hpp ! src/hotspot/share/memory/filemap.cpp ! src/hotspot/share/memory/heapShared.cpp ! src/hotspot/share/memory/metaspaceShared.cpp ! test/hotspot/jtreg/runtime/appcds/LotsOfClasses.java ! test/hotspot/jtreg/runtime/appcds/cacheObject/ArchivedIntegerCacheTest.java + test/hotspot/jtreg/runtime/appcds/javaldr/HumongousDuringDump.java + test/hotspot/jtreg/runtime/appcds/javaldr/HumongousDuringDumpTransformer.java + test/hotspot/jtreg/runtime/appcds/javaldr/HumongousDuringDumpTransformer.mf ! test/hotspot/jtreg/runtime/appcds/sharedStrings/InvalidFileFormat.java + test/hotspot/jtreg/runtime/appcds/sharedStrings/SharedStringsHumongous.java ! test/hotspot/jtreg/runtime/appcds/sharedStrings/SharedStringsStress.java + test/hotspot/jtreg/runtime/appcds/sharedStrings/invalidFormat/LengthOverflow.txt ! test/hotspot/jtreg/runtime/appcds/sharedStrings/invalidFormat/TruncatedString.txt Changeset: fc54d27e58d8 Author: afarley Date: 2018-12-04 09:08 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/fc54d27e58d8 8214063: OpenJDK will not build on AIX while using the xlc 13.1 compiler Reviewed-by: simonis, erikj, ihse, stuefe, mbaesken ! make/launcher/Launcher-jdk.pack.gmk ! make/launcher/LauncherCommon.gmk ! make/lib/LibCommon.gmk Changeset: 767678b5e61b Author: simonis Date: 2018-12-04 09:28 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/767678b5e61b 8214534: Setting of THIS_FILE in the build is broken Reviewed-by: erikj, ihse ! make/common/NativeCompilation.gmk Changeset: abccada595dd Author: ehelin Date: 2018-12-04 09:30 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/abccada595dd 8214230: Classes generated by SystemModulesPlugin.java are not reproducable Reviewed-by: alanb, redestad, mchung ! src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/SystemModulesPlugin.java + test/jdk/tools/jlink/JLinkReproducibleTest.java Changeset: 10bb941d7fd4 Author: lucy Date: 2018-12-04 11:57 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/10bb941d7fd4 8214526: Change CodeHeap State Analytics control from UL to Print* Reviewed-by: coleenp, kvn, stuefe, thartmann ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeHeapState.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/java.cpp Changeset: 03253c32d8e7 Author: gadams Date: 2018-12-04 07:09 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/03253c32d8e7 8176828: jtools do not list VM process launched with the debugger option suspend=y Reviewed-by: dholmes, cjplummer ! src/hotspot/share/runtime/thread.cpp Changeset: 981eb3c1b90d Author: gadams Date: 2018-12-04 07:06 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/981eb3c1b90d 8214300: .attach_pid files may remain in the process cwd Reviewed-by: sspitsyn, cjplummer, jcbeyler ! src/jdk.attach/aix/classes/sun/tools/attach/VirtualMachineImpl.java ! src/jdk.attach/linux/classes/sun/tools/attach/VirtualMachineImpl.java ! src/jdk.attach/solaris/classes/sun/tools/attach/VirtualMachineImpl.java Changeset: cfbe4d8ffd1d Author: shade Date: 2018-12-04 15:47 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/cfbe4d8ffd1d 8214787: Zero builds fail with "undefined JavaThread::thread_state()" Reviewed-by: stuefe, zgu ! src/hotspot/cpu/zero/stack_zero.cpp Changeset: 022420a4cc63 Author: eosterlund Date: 2018-12-04 17:14 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/022420a4cc63 8214556: Crash in DependencyContext::remove_dependent_nmethod still happens Reviewed-by: kvn, kbarrett ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/dependencyContext.hpp ! src/hotspot/share/prims/methodHandles.cpp Changeset: 8527b6100a59 Author: sgehwolf Date: 2018-12-04 17:54 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/8527b6100a59 8214061: Buffer written into itself Summary: Actually write the msg text into the buffer. Reviewed-by: dcubed, sgehwolf, sspitsyn Contributed-by: Simon Tooke ! src/jdk.jdwp.agent/share/native/libjdwp/debugInit.c Changeset: a7e587822a2d Author: rriggs Date: 2018-12-04 12:26 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/a7e587822a2d 8171426: java/lang/ProcessBuilder/Basic.java failed Stream closed Reviewed-by: bpb, jlaskey ! test/jdk/java/lang/ProcessBuilder/Basic.java Changeset: 106ad76acf31 Author: naoto Date: 2018-12-04 11:10 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/106ad76acf31 8214770: java/time/test/java/time/format/TestNonIsoFormatter.java failed in non-english locales. Reviewed-by: lancea, bpb ! test/jdk/java/time/test/java/time/format/TestNonIsoFormatter.java Changeset: f5d0926026ec Author: ccheung Date: 2018-12-04 11:54 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/f5d0926026ec 8214728: Unnecessary InstanceKlass::cast at few places Reviewed-by: lfoltan, jiangli, coleenp ! src/hotspot/share/classfile/verifier.cpp ! src/hotspot/share/interpreter/interpreterRuntime.cpp ! src/hotspot/share/interpreter/linkResolver.cpp Changeset: 52a692760109 Author: rriggs Date: 2018-12-04 15:22 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/52a692760109 8214794: java.specification.version should be only the major version number Reviewed-by: martin, mchung, bpb ! make/gensrc/GensrcMisc.gmk ! src/java.base/share/classes/java/lang/VersionProps.java.template Changeset: 2077a5437d43 Author: joehw Date: 2018-12-04 14:53 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/2077a5437d43 8213325: (props) Properties.loadFromXML does not fully comply with the spec Reviewed-by: alanb, rriggs, dfuchs, naoto ! src/java.base/share/classes/jdk/internal/org/xml/sax/DTDHandler.java ! src/java.base/share/classes/jdk/internal/util/xml/PropertiesDefaultHandler.java ! src/java.base/share/classes/jdk/internal/util/xml/impl/Parser.java ! src/java.base/share/classes/jdk/internal/util/xml/impl/ParserSAX.java - test/jdk/java/util/Properties/Compatibility.xml - test/jdk/java/util/Properties/CompatibilityTest.java + test/jdk/java/util/Properties/invalidxml/IllegalElement.xml + test/jdk/java/util/Properties/invalidxml/invalidDTD.xml ! test/jdk/java/util/ResourceBundle/Control/XmlRB.xml ! test/jdk/java/util/ResourceBundle/Control/XmlRB_ja.xml ! test/jdk/java/util/ResourceBundle/modules/basic/srcXml/bundles/jdk/test/resources/MyResources.xml ! test/jdk/java/util/ResourceBundle/modules/basic/srcXml/bundles/jdk/test/resources/MyResources_de.xml ! test/jdk/java/util/ResourceBundle/modules/basic/srcXml/bundles/jdk/test/resources/MyResources_en.xml ! test/jdk/java/util/ResourceBundle/modules/basic/srcXml/bundles/jdk/test/resources/MyResources_fr.xml ! test/jdk/java/util/ResourceBundle/modules/basic/srcXml/bundles/jdk/test/resources/MyResources_ja.xml ! test/jdk/java/util/ResourceBundle/modules/basic/srcXml/bundles/jdk/test/resources/MyResources_zh.xml ! test/jdk/java/util/ResourceBundle/modules/basic/srcXml/bundles/jdk/test/resources/MyResources_zh_TW.xml ! test/jdk/java/util/spi/ResourceBundleControlProvider/com/foo/XmlRB.xml ! test/jdk/java/util/spi/ResourceBundleControlProvider/com/foo/XmlRB_ja.xml Changeset: c0f40bca91a5 Author: weijun Date: 2018-12-05 08:48 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/c0f40bca91a5 8214513: A PKCS12 keystore from Java 8 using custom PBE parameters cannot be read in Java 11 Reviewed-by: mullan ! src/java.base/share/classes/com/sun/crypto/provider/PBES2Parameters.java + test/jdk/sun/security/pkcs12/WrongPBES2.java Changeset: 5261951acd41 Author: vlivanov Date: 2018-12-04 17:18 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/5261951acd41 8146090: java/lang/ref/ReachabilityFenceTest.java fails with -XX:+DeoptimizeALot Reviewed-by: dholmes, iignatyev ! test/jdk/java/lang/ref/ReachabilityFenceTest.java Changeset: f6005102c6ef Author: dtitov Date: 2018-12-04 21:13 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/f6005102c6ef 8214572: [Graal] nsk/jvmti/unit/ForceEarlyReturn/earlyretbase should not suspend the thread when the top frame executes JVMCI code Reviewed-by: sspitsyn, dholmes, jcbeyler ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretbase.java ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretbase/earlyretbase.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/jvmti_tools.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/jvmti_tools.h Changeset: af52abc1f61e Author: roland Date: 2018-11-30 15:22 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/af52abc1f61e 8214541: ZGC: Refactoring from JDK-8214172 may leave PhaseIterGVN::_delay_transform set Reviewed-by: eosterlund ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp Changeset: 726f6a23f004 Author: fyuan Date: 2018-12-05 16:41 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/726f6a23f004 8213300: jaxp/unittest/transform/CR6551600Test.java fails due to exception in jdk/jdk CI Reviewed-by: joehw ! test/jaxp/javax/xml/jaxp/unittest/transform/CR6551600Test.java Changeset: 4e9739110cf1 Author: kaddepalli Date: 2018-11-29 15:21 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/4e9739110cf1 8213048: Invalid use of HTML5 in java.awt files Reviewed-by: serb, pbansal, aivanov ! src/java.desktop/share/classes/java/awt/doc-files/DesktopProperties.html ! src/java.desktop/share/classes/java/awt/doc-files/Modality.html Changeset: c8071863df80 Author: dmarkov Date: 2018-11-29 15:17 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/c8071863df80 8213583: Error while opening the JFileChooser when desktop contains shortcuts pointing to deleted files Reviewed-by: kaddepalli, aivanov, serb ! src/java.desktop/windows/native/libawt/windows/ShellFolder2.cpp Changeset: 15237f57cbf8 Author: serb Date: 2018-11-29 16:22 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/15237f57cbf8 8198339: Test javax/swing/border/Test6981576.java is unstable Reviewed-by: kaddepalli, psadhukhan ! test/jdk/ProblemList.txt ! test/jdk/javax/swing/border/Test6981576.java Changeset: 1e87c0fe5de2 Author: psadhukhan Date: 2018-11-30 10:55 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/1e87c0fe5de2 8214470: PIT: javax/swing/JPopupMenu/7154841/bug7154841.java errors out on mac10.13 Reviewed-by: jdv, serb ! test/jdk/javax/swing/JPopupMenu/7154841/bug7154841.java Changeset: 40281bb2feb6 Author: jdv Date: 2018-11-30 17:14 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/40281bb2feb6 8212875: ftp: links for tiff/TTN2.draft.txt do not respond Reviewed-by: serb ! src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/TIFFImageWriteParam.java ! src/java.desktop/share/classes/javax/imageio/metadata/doc-files/tiff_metadata.html ! src/java.desktop/share/classes/javax/imageio/plugins/tiff/BaselineTIFFTagSet.java Changeset: 98792298b309 Author: prr Date: 2018-11-30 10:55 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/98792298b309 8130264: change the mechanism by which JDK loads the platform-specific PrinterJob implementation Reviewed-by: serb, rriggs ! src/java.base/share/native/libjava/System.c ! src/java.base/share/native/libjava/java_props.h ! src/java.base/unix/native/libjava/java_props_md.c ! src/java.base/windows/native/libjava/java_props_md.c + src/java.desktop/macosx/classes/sun/print/PlatformPrinterJobProxy.java ! src/java.desktop/share/classes/java/awt/print/PrinterJob.java + src/java.desktop/share/classes/sun/print/PlatformPrinterJobProxy.java + src/java.desktop/windows/classes/sun/print/PlatformPrinterJobProxy.java + test/jdk/java/awt/print/PrinterJob/CheckPrinterJobSystemProperty.java Changeset: 84cc04e403ab Author: prr Date: 2018-11-30 12:21 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/84cc04e403ab 8214552: Resolve clash between 4947890 and 8130264 Reviewed-by: rriggs, mchung ! src/java.base/share/classes/jdk/internal/util/SystemProps.java ! test/jdk/java/awt/print/PrinterJob/CheckPrinterJobSystemProperty.java Changeset: df92f1126c58 Author: bae Date: 2018-11-30 23:21 +0300 URL: http://hg.openjdk.java.net/loom/loom/rev/df92f1126c58 8139178: Wrong fontMetrics when printing in Landscape (OpenJDK) Reviewed-by: prr ! src/java.desktop/share/native/libfontmanager/freetypeScaler.c + test/jdk/java/awt/font/Rotate/RotatedFontMetricsTest.java Changeset: 846983628746 Author: prr Date: 2018-11-30 15:05 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/846983628746 8214558: bad @run tag in CheckPrinterJobSystemProperty.java Reviewed-by: serb ! test/jdk/java/awt/print/PrinterJob/CheckPrinterJobSystemProperty.java Changeset: 7644f534b60a Author: serb Date: 2018-11-30 15:54 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/7644f534b60a 8211147: Incorrect comparator com.sun.beans.introspect.MethodInfo.MethodOrder Reviewed-by: prr ! src/java.desktop/share/classes/com/sun/beans/introspect/MethodInfo.java + test/jdk/java/beans/Introspector/MethodOrderException.java Changeset: 326ffb4b630f Author: psadhukhan Date: 2018-12-01 09:37 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/326ffb4b630f 8213051: Invalid use of HTML5 in javax.print files Reviewed-by: aivanov, serb ! src/java.desktop/share/classes/javax/print/attribute/standard/package-info.java Changeset: d3f785c4969c Author: kaddepalli Date: 2018-12-03 06:59 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/d3f785c4969c 7124301: [macosx] When in a tab group if you arrow between tabs there are noVoiceOver announcements. 7124298: [macosx] Nothing heard from VoiceOver when tabbing between a nestedtab group and a parent tab group. Reviewed-by: serb, sveerabhadra ! src/java.desktop/macosx/classes/sun/lwawt/macosx/CAccessible.java ! src/java.desktop/macosx/native/libawt_lwawt/awt/JavaComponentAccessibility.h ! src/java.desktop/macosx/native/libawt_lwawt/awt/JavaComponentAccessibility.m Changeset: 2ff843783d95 Author: serb Date: 2018-12-03 16:12 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/2ff843783d95 8212680: (JDK12b14/Solaris-sparc) SplashScreen::getSplashScreen call fails with ULE: "libsplashscreen.so: ld.so.1: java: fatal: libz.so.1: open failed: No such file or directory" Reviewed-by: prr, ihse, erikj ! make/lib/Awt2dLibraries.gmk - src/java.desktop/macosx/native/libsplashscreen/libpng/zlibwrapper/zlib.h ! src/java.desktop/share/native/libsplashscreen/libpng/pnglibconf.h Changeset: de8be034dbd4 Author: psadhukhan Date: 2018-12-04 13:35 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/de8be034dbd4 Merge - make/nashorn/package-list Changeset: 6419f8d3cc3e Author: psadhukhan Date: 2018-12-05 15:39 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/6419f8d3cc3e Merge - test/jdk/java/util/Properties/Compatibility.xml - test/jdk/java/util/Properties/CompatibilityTest.java Changeset: 6ed72482de52 Author: eosterlund Date: 2018-12-05 08:55 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/6ed72482de52 8214522: Last runtime locking issues for concurrent class unloading Reviewed-by: coleenp, pliden ! src/hotspot/share/classfile/classLoaderDataGraph.cpp ! src/hotspot/share/classfile/dictionary.cpp ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/memory/metaspace/virtualSpaceList.cpp Changeset: 27ebaa5566ea Author: eosterlund Date: 2018-12-05 11:01 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/27ebaa5566ea 8214302: Allow safely calling is_unloading() on zombie nmethods Reviewed-by: kvn, pliden ! src/hotspot/share/code/nmethod.cpp Changeset: 9144c0b5c1e1 Author: sundar Date: 2018-12-05 19:22 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/9144c0b5c1e1 8206962: jlink --release-info=del throws NPE if no keys are specified Reviewed-by: alanb ! src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ReleaseInfoPlugin.java ! test/jdk/tools/jlink/JLinkTest.java Changeset: eef755718cb2 Author: vromero Date: 2018-12-05 09:34 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/eef755718cb2 8213703: LambdaConversionException: Invalid receiver type not a subtype of implementation type interface Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/LambdaToMethod.java + test/langtools/tools/javac/lambda/T8213703/InvalidReceiverTypeTest.java Changeset: e9feb8494936 Author: alanb Date: 2018-12-10 09:14 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/e9feb8494936 Merge ! make/hotspot/symbols/symbols-unix - make/nashorn/package-list ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/code/codeBlob.hpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeCache.hpp ! src/hotspot/share/code/compiledMethod.hpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/nmethod.hpp ! src/hotspot/share/include/jvm.h ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/vmStructs.cpp - src/java.desktop/macosx/native/libsplashscreen/libpng/zlibwrapper/zlib.h - test/jdk/java/awt/Choice/ChoiceKeyEventReaction/ChoiceKeyEventReaction.html - test/jdk/java/util/Properties/Compatibility.xml - test/jdk/java/util/Properties/CompatibilityTest.java - test/jdk/lib/testlibrary/ExtendedRobot.java Changeset: 6d918ea1f725 Author: alanb Date: 2018-12-10 09:41 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/6d918ea1f725 Merge ! make/hotspot/symbols/symbols-unix - make/nashorn/package-list ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/include/jvm.h ! src/hotspot/share/prims/jvm.cpp ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/java/util/concurrent/ConcurrentHashMap.java ! src/java.base/share/classes/java/util/concurrent/locks/LockSupport.java - src/java.desktop/macosx/native/libsplashscreen/libpng/zlibwrapper/zlib.h ! test/jdk/ProblemList.txt - test/jdk/java/awt/Choice/ChoiceKeyEventReaction/ChoiceKeyEventReaction.html - test/jdk/java/util/Properties/Compatibility.xml - test/jdk/java/util/Properties/CompatibilityTest.java - test/jdk/lib/testlibrary/ExtendedRobot.java Changeset: 218799944c24 Author: alanb Date: 2018-12-10 10:20 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/218799944c24 Merge - make/nashorn/package-list ! src/hotspot/share/classfile/vmSymbols.hpp - src/java.desktop/macosx/native/libsplashscreen/libpng/zlibwrapper/zlib.h - test/jdk/java/awt/Choice/ChoiceKeyEventReaction/ChoiceKeyEventReaction.html - test/jdk/java/util/Properties/Compatibility.xml - test/jdk/java/util/Properties/CompatibilityTest.java - test/jdk/lib/testlibrary/ExtendedRobot.java From chris.plummer at oracle.com Tue Dec 11 02:43:37 2018 From: chris.plummer at oracle.com (chris.plummer at oracle.com) Date: Tue, 11 Dec 2018 02:43:37 +0000 Subject: hg: loom/loom: Fixed issues. Needed updating for new Fiber APIs and fewer iterations to not time out with debug builds. Message-ID: <201812110243.wBB2hbod022834@aojmv0008.oracle.com> Changeset: a16690addf04 Author: cjplummer Date: 2018-12-10 18:40 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/a16690addf04 Fixed issues. Needed updating for new Fiber APIs and fewer iterations to not time out with debug builds. ! test/hotspot/jtreg/serviceability/jvmti/FiberTest/MyPackage/FiberTest.java From ron.pressler at oracle.com Wed Dec 12 18:21:26 2018 From: ron.pressler at oracle.com (ron.pressler at oracle.com) Date: Wed, 12 Dec 2018 18:21:26 +0000 Subject: hg: loom/loom: 2 new changesets Message-ID: <201812121821.wBCILRfl004265@aojmv0008.oracle.com> Changeset: 6e883b0b20ea Author: rpressler Date: 2018-12-12 18:19 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/6e883b0b20ea fix preempt bug ! src/hotspot/cpu/x86/frame_x86.inline.hpp ! src/hotspot/share/classfile/vmSymbols.cpp ! src/hotspot/share/runtime/continuation.cpp Changeset: 0f0ca1d62720 Author: rpressler Date: 2018-12-12 18:21 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/0f0ca1d62720 merge From chris.plummer at oracle.com Thu Dec 13 01:24:13 2018 From: chris.plummer at oracle.com (chris.plummer at oracle.com) Date: Thu, 13 Dec 2018 01:24:13 +0000 Subject: hg: loom/loom: Fixed problem with JVMTI not enabling fiber events if UseSharedSpaces is enabled, which is now the default. Message-ID: <201812130124.wBD1OEFN029432@aojmv0008.oracle.com> Changeset: eaa7c9dee387 Author: cjplummer Date: 2018-12-12 17:22 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/eaa7c9dee387 Fixed problem with JVMTI not enabling fiber events if UseSharedSpaces is enabled, which is now the default. ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp From chris.plummer at oracle.com Thu Dec 13 03:28:47 2018 From: chris.plummer at oracle.com (chris.plummer at oracle.com) Date: Thu, 13 Dec 2018 03:28:47 +0000 Subject: hg: loom/loom: Initial implementation of debugger support for fibers. Message-ID: <201812130328.wBD3Smou018641@aojmv0008.oracle.com> Changeset: 30562b08e2dc Author: cjplummer Date: 2018-12-12 19:28 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/30562b08e2dc Initial implementation of debugger support for fibers. ! src/jdk.jdwp.agent/share/native/libjdwp/StackFrameImpl.c ! src/jdk.jdwp.agent/share/native/libjdwp/ThreadGroupReferenceImpl.c ! src/jdk.jdwp.agent/share/native/libjdwp/ThreadReferenceImpl.c ! src/jdk.jdwp.agent/share/native/libjdwp/VirtualMachineImpl.c ! src/jdk.jdwp.agent/share/native/libjdwp/debugInit.c ! src/jdk.jdwp.agent/share/native/libjdwp/debugLoop.c ! src/jdk.jdwp.agent/share/native/libjdwp/error_messages.c ! src/jdk.jdwp.agent/share/native/libjdwp/eventFilter.c ! src/jdk.jdwp.agent/share/native/libjdwp/eventHandler.c ! src/jdk.jdwp.agent/share/native/libjdwp/eventHelper.c ! src/jdk.jdwp.agent/share/native/libjdwp/inStream.c ! src/jdk.jdwp.agent/share/native/libjdwp/standardHandlers.c ! src/jdk.jdwp.agent/share/native/libjdwp/stepControl.c ! src/jdk.jdwp.agent/share/native/libjdwp/stepControl.h ! src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c ! src/jdk.jdwp.agent/share/native/libjdwp/threadControl.h ! src/jdk.jdwp.agent/share/native/libjdwp/util.c ! src/jdk.jdwp.agent/share/native/libjdwp/util.h From chris.plummer at oracle.com Thu Dec 13 04:17:35 2018 From: chris.plummer at oracle.com (Chris Plummer) Date: Wed, 12 Dec 2018 20:17:35 -0800 Subject: Initial implementation of debugger support for fibers. In-Reply-To: <201812130328.wBD3Smou018641@aojmv0008.oracle.com> References: <201812130328.wBD3Smou018641@aojmv0008.oracle.com> Message-ID: <4c66c9d7-a959-ccc5-0258-98458fc68a2f@oracle.com> Debugging support for fibers has been added. You can find details at: https://wiki.openjdk.java.net/display/loom/Fiber+Debugging+Support thanks, Chris On 12/12/18 7:28 PM, chris.plummer at oracle.com wrote: > Changeset: 30562b08e2dc > Author: cjplummer > Date: 2018-12-12 19:28 -0800 > URL: http://hg.openjdk.java.net/loom/loom/rev/30562b08e2dc > > Initial implementation of debugger support for fibers. > > ! src/jdk.jdwp.agent/share/native/libjdwp/StackFrameImpl.c > ! src/jdk.jdwp.agent/share/native/libjdwp/ThreadGroupReferenceImpl.c > ! src/jdk.jdwp.agent/share/native/libjdwp/ThreadReferenceImpl.c > ! src/jdk.jdwp.agent/share/native/libjdwp/VirtualMachineImpl.c > ! src/jdk.jdwp.agent/share/native/libjdwp/debugInit.c > ! src/jdk.jdwp.agent/share/native/libjdwp/debugLoop.c > ! src/jdk.jdwp.agent/share/native/libjdwp/error_messages.c > ! src/jdk.jdwp.agent/share/native/libjdwp/eventFilter.c > ! src/jdk.jdwp.agent/share/native/libjdwp/eventHandler.c > ! src/jdk.jdwp.agent/share/native/libjdwp/eventHelper.c > ! src/jdk.jdwp.agent/share/native/libjdwp/inStream.c > ! src/jdk.jdwp.agent/share/native/libjdwp/standardHandlers.c > ! src/jdk.jdwp.agent/share/native/libjdwp/stepControl.c > ! src/jdk.jdwp.agent/share/native/libjdwp/stepControl.h > ! src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c > ! src/jdk.jdwp.agent/share/native/libjdwp/threadControl.h > ! src/jdk.jdwp.agent/share/native/libjdwp/util.c > ! src/jdk.jdwp.agent/share/native/libjdwp/util.h > From rickard.backman at oracle.com Thu Dec 13 13:31:10 2018 From: rickard.backman at oracle.com (rickard.backman at oracle.com) Date: Thu, 13 Dec 2018 13:31:10 +0000 Subject: hg: loom/loom: Use rdtscp for os::getProcessorId if available Message-ID: <201812131331.wBDDVArE005424@aojmv0008.oracle.com> Changeset: 5cc04c40d8e4 Author: rbackman Date: 2018-12-13 14:30 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/5cc04c40d8e4 Use rdtscp for os::getProcessorId if available ! microbenchmarks/loom/Pid.java ! src/hotspot/os_cpu/linux_x86/os_linux_x86.cpp From chris.plummer at oracle.com Fri Dec 14 06:50:19 2018 From: chris.plummer at oracle.com (chris.plummer at oracle.com) Date: Fri, 14 Dec 2018 06:50:19 +0000 Subject: hg: loom/loom: Enable delivering more events to the debugger on fibers. Previously this was only done for BREAKPOINT and SINGLE_STEP events, but now it is done for all events. Message-ID: <201812140650.wBE6oJCG025680@aojmv0008.oracle.com> Changeset: c278c84199ab Author: cjplummer Date: 2018-12-13 22:49 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/c278c84199ab Enable delivering more events to the debugger on fibers. Previously this was only done for BREAKPOINT and SINGLE_STEP events, but now it is done for all events. ! src/jdk.jdwp.agent/share/native/libjdwp/eventHelper.c From volkan.yazici at gmail.com Sat Dec 15 22:33:59 2018 From: volkan.yazici at gmail.com (=?UTF-8?B?Vm9sa2FuIFlhesSxY8Sx?=) Date: Sat, 15 Dec 2018 23:33:59 +0100 Subject: Accessing to Fiber State Message-ID: Hello, AFAIU from the source code, one is supposed to create fibers via Fiber.schedule(), that is not via extending Fiber, which is allowed for Threads. (I think this behavior has been introduced pretty recently.) Using factory method makes it impossible to access to Fiber#getState(). Am I missing something? How can we access to the state of a Fiber? (For those interested, the context is as follows: I need to confirm that a fiber is indeed parked to avoid a race condition. The relevant fix for plain Threads: https://github.com/vy/fiber-test/commit/929a898d387114a2721282ef5f789288e1aed453 ) Best. From Alan.Bateman at oracle.com Sun Dec 16 07:55:25 2018 From: Alan.Bateman at oracle.com (Alan Bateman) Date: Sun, 16 Dec 2018 07:55:25 +0000 Subject: Accessing to Fiber State In-Reply-To: References: Message-ID: <9348033d-4869-dd22-c20c-f4a3f83ca57a@oracle.com> On 15/12/2018 22:33, Volkan Yaz?c? wrote: > Hello, > > AFAIU from the source code, one is supposed to create fibers via > Fiber.schedule(), that is not via extending Fiber, which is allowed for > Threads. (I think this behavior has been introduced pretty recently.) Using > factory method makes it impossible to access to Fiber#getState(). Am I > missing something? How can we access to the state of a Fiber? > > (For those interested, the context is as follows: I need to confirm that a > fiber is indeed parked to avoid a race condition. The relevant fix for > plain Threads: > https://github.com/vy/fiber-test/commit/929a898d387114a2721282ef5f789288e1aed453 > ) There hasn't been any work to date on monitoring and management support so still TBD whether fiber states will be exposed or whether it will be something completely different. It might be that only a small subset of fibers are interesting to monitor for example. The non-public Fiber.getState method you found is to support Thread.getState, e.g. a task executed by a fiber leaks Thread.currentThread() to something that monitors its state with Thread::getState. For your usage, is this your own scheduler where the task completes when the fiber parks? -Alan From volkan.yazici at gmail.com Sun Dec 16 11:14:24 2018 From: volkan.yazici at gmail.com (=?UTF-8?B?Vm9sa2FuIFlhesSxY8Sx?=) Date: Sun, 16 Dec 2018 12:14:24 +0100 Subject: Accessing to Fiber State In-Reply-To: <9348033d-4869-dd22-c20c-f4a3f83ca57a@oracle.com> References: <9348033d-4869-dd22-c20c-f4a3f83ca57a@oracle.com> Message-ID: Ok, I see. Thanks for the clarification. I will keep on watching the mailing list for any developments on this issue. I am indeed using a custom scheduler, which is a single-threaded fixed pool: https://github.com/vy/fiber-test/blob/master/java-loom/src/main/java/com/vlkan/fibertest/ring/JavaFiberRingBenchmark.java I particularly chose this approach, since I don't want to benchmark schedulers but the context switch efficiency of different approaches, which constitute the gist of delimited continuations, IMHO. On Sun, Dec 16, 2018 at 8:55 AM Alan Bateman wrote: > On 15/12/2018 22:33, Volkan Yaz?c? wrote: > > Hello, > > > > AFAIU from the source code, one is supposed to create fibers via > > Fiber.schedule(), that is not via extending Fiber, which is allowed for > > Threads. (I think this behavior has been introduced pretty recently.) > Using > > factory method makes it impossible to access to Fiber#getState(). Am I > > missing something? How can we access to the state of a Fiber? > > > > (For those interested, the context is as follows: I need to confirm that > a > > fiber is indeed parked to avoid a race condition. The relevant fix for > > plain Threads: > > > https://github.com/vy/fiber-test/commit/929a898d387114a2721282ef5f789288e1aed453 > > ) > There hasn't been any work to date on monitoring and management support > so still TBD whether fiber states will be exposed or whether it will be > something completely different. It might be that only a small subset of > fibers are interesting to monitor for example. The non-public > Fiber.getState method you found is to support Thread.getState, e.g. a > task executed by a fiber leaks Thread.currentThread() to something that > monitors its state with Thread::getState. > > For your usage, is this your own scheduler where the task completes when > the fiber parks? > > -Alan > From dl at cs.oswego.edu Sun Dec 16 13:10:56 2018 From: dl at cs.oswego.edu (Doug Lea) Date: Sun, 16 Dec 2018 08:10:56 -0500 Subject: Scoped variables In-Reply-To: <0f09dc0d-f88c-790b-351b-7544afeaa3c5@oracle.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> <0f09dc0d-f88c-790b-351b-7544afeaa3c5@oracle.com> Message-ID: <1031671c-7390-47f5-0889-28dee69c0888@cs.oswego.edu> On 12/9/18 3:12 PM, Alan Bateman wrote: >> ? - Proxy for processor-local >> ??? - Contention-avoidance schemes > This one is somewhat specialized and too early to say if it make sense > to expose as an API or not.? For now, it's the "processorid" branch in > the loom repo where there is an Unsafe method to get the processor id. I did some experimentation, and I'm pretty sure that this is NOT a good alternative to using per-thread fields in current usages. These (including LongAdder/Striped64, ForkJoinPool, Exchanger) dynamically spread out (stripe) contention by arranging that different threads use different variables/queues/whatever and then coordinating from there. This is done by associating a form of hash code ("probe" field) with each thread, and (infrequently) changing these probe hash codes on collisions/contention. An alternative is to use processorId as an index of some kind. Note that usages must be (and already are) thread-safe because a thread may move to a different core after obtaining ID, so it mostly acts as a hint. There are a few contexts where processorId might be the only reasonable option, but in current usages it is noticeably worse than current approach, because: * The underlying instructions (variants of CPUID on x86, plus decoding to turn results into indices) tend to be slow. They vary across Intel and AMD machines I tested on but is usually not reliably faster than a conditional atomic instruction (CompareAndSet etc) that we are trying to avoid calling more than once. * In part because of GC-based pause/resumes that lead to rescheduling, threads tend to frequently move across cores (at least on Linux test machines). Spaces are dynamically created upon contention, so using processorIds adds footprint without improving throughput. For example, due to safepoints during expansion, some spaces are created that aren't used because processorIds change on next use. On microbenchmarks for LongAdder, the net results range from about 20% to more than 100% slowdown across machines. Less systematic experiments with the other uses don't look promising either. This does not strictly argue for dropping getProcessorId because it might still be useful in other contexts. But it is not a good replacement for current usages. (While experimenting, I came up with a couple of tiny tweaks to Striped64 that also apply to the current probe-based version, so will check those in to make LongAdder etc a few percent faster.) -Doug From fweimer at redhat.com Mon Dec 17 11:39:28 2018 From: fweimer at redhat.com (Florian Weimer) Date: Mon, 17 Dec 2018 12:39:28 +0100 Subject: Scoped variables In-Reply-To: <1031671c-7390-47f5-0889-28dee69c0888@cs.oswego.edu> (Doug Lea's message of "Sun, 16 Dec 2018 08:10:56 -0500") References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> <0f09dc0d-f88c-790b-351b-7544afeaa3c5@oracle.com> <1031671c-7390-47f5-0889-28dee69c0888@cs.oswego.edu> Message-ID: <87woo8bcwf.fsf@oldenburg2.str.redhat.com> * Doug Lea: > An alternative is to use processorId as an index of some kind. Note that > usages must be (and already are) thread-safe because a thread may move > to a different core after obtaining ID, so it mostly acts as a hint. > > There are a few contexts where processorId might be the only reasonable > option, but in current usages it is noticeably worse than current > approach, because: > > * The underlying instructions (variants of CPUID on x86, plus decoding > to turn results into indices) tend to be slow. They vary across Intel > and AMD machines I tested on but is usually not reliably faster than a > conditional atomic instruction (CompareAndSet etc) that we are trying to > avoid calling more than once. We have a faster implementation coming down the pipe, based on the rseq system call and a per-thread area where the kernel stores the current processor ID. Details are still a bit sketchy. If you think this could be useful to OpenJDK, we can still make changes to the glibc ABI to make it easier to consume from JIT code, for example. (The userspace ABI is fixed, though.) > * In part because of GC-based pause/resumes that lead to rescheduling, > threads tend to frequently move across cores (at least on Linux test > machines). Using all cores is beneficial for thermal management on some CPUs. One thing to consider is that due to CPU hotplug (probably as the result of VM migration) and process migration, the CPU count can go up. If you use the processor ID as an array index, you will have to mask it or otherwise ensure t hat it stays within array bounds. Thanks, Florian From dl at cs.oswego.edu Mon Dec 17 19:43:08 2018 From: dl at cs.oswego.edu (Doug Lea) Date: Mon, 17 Dec 2018 14:43:08 -0500 Subject: Scoped variables In-Reply-To: <87woo8bcwf.fsf@oldenburg2.str.redhat.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> <0f09dc0d-f88c-790b-351b-7544afeaa3c5@oracle.com> <1031671c-7390-47f5-0889-28dee69c0888@cs.oswego.edu> <87woo8bcwf.fsf@oldenburg2.str.redhat.com> Message-ID: <27b99b7d-1d39-e3fa-9d18-2d099bf5b283@cs.oswego.edu> Sitting on this a day, I'm more in favor of adding getProcessorId(), probably as a method of Runtime, even though it doesn't help with some cases we thought it might. On 12/17/18 6:39 AM, Florian Weimer wrote: > * Doug Lea: > >> An alternative is to use processorId as an index of some kind. Note that >> usages must be (and already are) thread-safe because a thread may move >> to a different core after obtaining ID, so it mostly acts as a hint. And not a very good hint in existing usages: Contention is a function of what threads do, not necessarily the cores they run on. And if updating data structures when they switch cores has some time/space cost, it is usually best not to rely on processor IDs, even if getProcessorId were cheaper than it is. But there are other applications (for example massively contended locks for large systems, of the kind Dave Dice et al have worked on) where there is little cost after initial setup, and so this should often be a good choice. We haven't done anything for these usages in java.util.concurrent in part because we don't have underlying support, including method getProcessorId. > > We have a faster implementation coming down the pipe, based on the rseq > system call and a per-thread area where the kernel stores the current > processor ID. Details are still a bit sketchy. If you think this could > be useful to OpenJDK, we can still make changes to the glibc ABI to make > it easier to consume from JIT code, for example. (The userspace ABI is > fixed, though.) This also suggests some new API to efficiently access (or interoperate with) pthreads TLS? Maybe this could even be the primary form of "static thread-locals" Andrew Haley has discussed. > > One thing to consider is that due to CPU hotplug (probably as the result > of VM migration) and process migration, the CPU count can go up. If you > use the processor ID as an array index, you will have to mask it or > otherwise ensure t hat it stays within array bounds. > Yes. It will make the getProcessorId() method interesting to specify. Probably Runtime.getAvailableProcessors() would also need some work. -Doug From fweimer at redhat.com Mon Dec 17 19:59:56 2018 From: fweimer at redhat.com (Florian Weimer) Date: Mon, 17 Dec 2018 20:59:56 +0100 Subject: Scoped variables In-Reply-To: <27b99b7d-1d39-e3fa-9d18-2d099bf5b283@cs.oswego.edu> (Doug Lea's message of "Mon, 17 Dec 2018 14:43:08 -0500") References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> <0f09dc0d-f88c-790b-351b-7544afeaa3c5@oracle.com> <1031671c-7390-47f5-0889-28dee69c0888@cs.oswego.edu> <87woo8bcwf.fsf@oldenburg2.str.redhat.com> <27b99b7d-1d39-e3fa-9d18-2d099bf5b283@cs.oswego.edu> Message-ID: <87o99j53gj.fsf@oldenburg2.str.redhat.com> * Doug Lea: >> We have a faster implementation coming down the pipe, based on the rseq >> system call and a per-thread area where the kernel stores the current >> processor ID. Details are still a bit sketchy. If you think this could >> be useful to OpenJDK, we can still make changes to the glibc ABI to make >> it easier to consume from JIT code, for example. (The userspace ABI is >> fixed, though.) > > This also suggests some new API to efficiently access (or interoperate > with) pthreads TLS? Maybe this could even be the primary form of > "static thread-locals" Andrew Haley has discussed. The current plan is to provide what is effectively an initial-exec ELF TLS variable with the processor ID, updated by the kernel. The initial-exec aspect could be made part of the ABI; it would mean that the offset between the thread pointer and the variable is constant across all threads in a process (but it could differ among invocations). If that's not good enough and you need a constant offset from the thread pointer, that could be negotiated as well, but it would be harder to get consensus for that, considering that rseq is a new interface, and the initial-exec model provides more flexibility to make future changes. rseq offers some other features, of course, the processor ID is just one aspect of it (but one that would be easy to use). >> One thing to consider is that due to CPU hotplug (probably as the result >> of VM migration) and process migration, the CPU count can go up. If you >> use the processor ID as an array index, you will have to mask it or >> otherwise ensure that it stays within array bounds. > Yes. It will make the getProcessorId() method interesting to specify. > Probably Runtime.getAvailableProcessors() would also need some work. We already fake a processor count of two if we can't determine the real count, to prevent Hotspot from activating uniprocessor optimizations. 8-/ Thanks, Florian From david.lloyd at redhat.com Mon Dec 17 20:16:01 2018 From: david.lloyd at redhat.com (David Lloyd) Date: Mon, 17 Dec 2018 14:16:01 -0600 Subject: Scoped variables In-Reply-To: <87o99j53gj.fsf@oldenburg2.str.redhat.com> References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> <0f09dc0d-f88c-790b-351b-7544afeaa3c5@oracle.com> <1031671c-7390-47f5-0889-28dee69c0888@cs.oswego.edu> <87woo8bcwf.fsf@oldenburg2.str.redhat.com> <27b99b7d-1d39-e3fa-9d18-2d099bf5b283@cs.oswego.edu> <87o99j53gj.fsf@oldenburg2.str.redhat.com> Message-ID: On Mon, Dec 17, 2018 at 2:00 PM Florian Weimer wrote: > > * Doug Lea: > > Yes. It will make the getProcessorId() method interesting to specify. > > Probably Runtime.getAvailableProcessors() would also need some work. > > We already fake a processor count of two if we can't determine the real > count, to prevent Hotspot from activating uniprocessor > optimizations. 8-/ Maybe there needs to be a separate method on Runtime which yields the maximum number of processors possible in the system/environment. If the maximum possible is 1, then the JVM wouldn't have to worry about a sudden change from 1 to 2 online CPUs. -- - DML From david.holmes at oracle.com Mon Dec 17 22:33:12 2018 From: david.holmes at oracle.com (David Holmes) Date: Tue, 18 Dec 2018 08:33:12 +1000 Subject: Scoped variables In-Reply-To: References: <371468da-df37-de0c-a326-214b07a76a01@redhat.com> <99bfa3ed-c224-2330-bdc0-40544f2d814e@cs.oswego.edu> <27fed3ac-4b42-7caf-72c9-97164936ba2c@redhat.com> <0821698e-73f3-d799-0c51-fb219d51315d@cs.oswego.edu> <3120ca62-51f4-a266-9b81-372f97590173@redhat.com> <9f445563-1c70-cd6c-d3f6-f4d1c7df9d9d@oracle.com> <0f09dc0d-f88c-790b-351b-7544afeaa3c5@oracle.com> <1031671c-7390-47f5-0889-28dee69c0888@cs.oswego.edu> <87woo8bcwf.fsf@oldenburg2.str.redhat.com> <27b99b7d-1d39-e3fa-9d18-2d099bf5b283@cs.oswego.edu> <87o99j53gj.fsf@oldenburg2.str.redhat.com> Message-ID: <750195ba-37a7-e35e-97c9-9f7c2eeb0d44@oracle.com> On 18/12/2018 6:16 am, David Lloyd wrote: > On Mon, Dec 17, 2018 at 2:00 PM Florian Weimer wrote: >> >> * Doug Lea: >>> Yes. It will make the getProcessorId() method interesting to specify. >>> Probably Runtime.getAvailableProcessors() would also need some work. >> >> We already fake a processor count of two if we can't determine the real >> count, to prevent Hotspot from activating uniprocessor >> optimizations. 8-/ > > Maybe there needs to be a separate method on Runtime which yields the > maximum number of processors possible in the system/environment. If > the maximum possible is 1, then the JVM wouldn't have to worry about a > sudden change from 1 to 2 online CPUs. > Hotspot no longer concerns itself with this as it assumes it is always running on a multi-processor (barring a couple of corner cases on ARM where different instructions would be needed). David Holmes From ron.pressler at oracle.com Tue Dec 18 16:03:36 2018 From: ron.pressler at oracle.com (ron.pressler at oracle.com) Date: Tue, 18 Dec 2018 16:03:36 +0000 Subject: hg: loom/loom: 2 new changesets Message-ID: <201812181603.wBIG3bQ6014808@aojmv0008.oracle.com> Changeset: dbea8080cd00 Author: rpressler Date: 2018-12-18 16:01 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/dbea8080cd00 walk unmounted continuations ! src/hotspot/share/include/jvm.h ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/stackwalk.cpp ! src/hotspot/share/prims/stackwalk.hpp ! src/hotspot/share/runtime/continuation.cpp ! src/hotspot/share/runtime/continuation.hpp ! src/hotspot/share/runtime/frame.cpp ! src/hotspot/share/runtime/frame.hpp ! src/hotspot/share/runtime/stackValue.cpp ! src/hotspot/share/runtime/vframe.cpp ! src/hotspot/share/runtime/vframe.hpp ! src/hotspot/share/runtime/vframe.inline.hpp ! src/java.base/share/classes/java/lang/Continuation.java ! src/java.base/share/classes/java/lang/LiveStackFrame.java ! src/java.base/share/classes/java/lang/StackStreamFactory.java ! src/java.base/share/classes/java/lang/StackWalker.java ! src/java.base/share/native/libjava/StackStreamFactory.c ! test/jdk/java/lang/Continuation/Basic.java Changeset: 12235211dae8 Author: rpressler Date: 2018-12-18 16:03 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/12235211dae8 merge ! src/hotspot/share/include/jvm.h ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/runtime/continuation.hpp ! src/java.base/share/classes/java/lang/Continuation.java From alan.bateman at oracle.com Tue Dec 18 18:57:52 2018 From: alan.bateman at oracle.com (alan.bateman at oracle.com) Date: Tue, 18 Dec 2018 18:57:52 +0000 Subject: hg: loom/loom: Switch stack walk to walk unmounted continuation when fiber parked Message-ID: <201812181857.wBIIvr3E001962@aojmv0008.oracle.com> Changeset: a851e4851720 Author: alanb Date: 2018-12-18 18:47 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/a851e4851720 Switch stack walk to walk unmounted continuation when fiber parked ! src/java.base/share/classes/java/lang/Fiber.java From chris.plummer at oracle.com Wed Dec 19 04:42:35 2018 From: chris.plummer at oracle.com (chris.plummer at oracle.com) Date: Wed, 19 Dec 2018 04:42:35 +0000 Subject: hg: loom/loom: Add support for only notifying debugger of fibers for which certain events have been recieved on. This is now the default mode. Override with "fibers=y|n|all". Message-ID: <201812190442.wBJ4gaYW014905@aojmv0008.oracle.com> Changeset: 97106936acc3 Author: cjplummer Date: 2018-12-18 20:41 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/97106936acc3 Add support for only notifying debugger of fibers for which certain events have been recieved on. This is now the default mode. Override with "fibers=y|n|all". ! src/jdk.jdwp.agent/share/native/libjdwp/debugInit.c ! src/jdk.jdwp.agent/share/native/libjdwp/eventFilter.c ! src/jdk.jdwp.agent/share/native/libjdwp/eventFilterRestricted.h ! src/jdk.jdwp.agent/share/native/libjdwp/eventHandler.c ! src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c ! src/jdk.jdwp.agent/share/native/libjdwp/threadControl.h ! src/jdk.jdwp.agent/share/native/libjdwp/util.c ! src/jdk.jdwp.agent/share/native/libjdwp/util.h From ron.pressler at oracle.com Wed Dec 19 14:52:57 2018 From: ron.pressler at oracle.com (ron.pressler at oracle.com) Date: Wed, 19 Dec 2018 14:52:57 +0000 Subject: hg: loom/loom: 4 new changesets Message-ID: <201812191452.wBJEqxdm001478@aojmv0008.oracle.com> Changeset: 1c32a18fb442 Author: rpressler Date: 2018-12-19 14:20 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/1c32a18fb442 preempt API and some other Continuation API improvements ! src/hotspot/share/prims/stackwalk.cpp ! src/hotspot/share/runtime/continuation.cpp ! src/java.base/share/classes/java/lang/Continuation.java ! test/jdk/java/lang/Continuation/Basic.java ! test/jdk/java/lang/Continuation/Scoped.java Changeset: 2929b0af5768 Author: rpressler Date: 2018-12-19 14:39 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/2929b0af5768 merge ! src/java.base/share/classes/java/lang/Continuation.java ! src/java.base/share/classes/java/lang/Fiber.java Changeset: 13fd84ac6844 Author: rpressler Date: 2018-12-19 14:41 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/13fd84ac6844 remove unused set_anchor method ! src/hotspot/share/runtime/continuation.cpp Changeset: 1290ed91a95d Author: rpressler Date: 2018-12-19 14:41 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/1290ed91a95d merge From alan.bateman at oracle.com Wed Dec 19 16:02:10 2018 From: alan.bateman at oracle.com (alan.bateman at oracle.com) Date: Wed, 19 Dec 2018 16:02:10 +0000 Subject: hg: loom/loom: Spurious JVMTI mount event when yielding fails due to pinning Message-ID: <201812191602.wBJG2AqG004112@aojmv0008.oracle.com> Changeset: 88d563f8a2e6 Author: alanb Date: 2018-12-19 16:01 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/88d563f8a2e6 Spurious JVMTI mount event when yielding fails due to pinning ! src/java.base/share/classes/java/lang/Fiber.java From forax at univ-mlv.fr Wed Dec 19 18:06:47 2018 From: forax at univ-mlv.fr (Remi Forax) Date: Wed, 19 Dec 2018 19:06:47 +0100 (CET) Subject: hg: loom/loom: 4 new changesets In-Reply-To: <201812191452.wBJEqxdm001478@aojmv0008.oracle.com> References: <201812191452.wBJEqxdm001478@aojmv0008.oracle.com> Message-ID: <244755041.748926.1545242807166.JavaMail.zimbra@u-pem.fr> Hi Ron, in Continuation.PreemptStatus the method Pinned pinned() { return pinned; } should be public, no ? R?mi ----- Mail original ----- > De: "Ron Pressler" > ?: "loom-dev" > Envoy?: Mercredi 19 D?cembre 2018 15:52:57 > Objet: hg: loom/loom: 4 new changesets > Changeset: 1c32a18fb442 > Author: rpressler > Date: 2018-12-19 14:20 +0000 > URL: http://hg.openjdk.java.net/loom/loom/rev/1c32a18fb442 > > preempt API and some other Continuation API improvements > > ! src/hotspot/share/prims/stackwalk.cpp > ! src/hotspot/share/runtime/continuation.cpp > ! src/java.base/share/classes/java/lang/Continuation.java > ! test/jdk/java/lang/Continuation/Basic.java > ! test/jdk/java/lang/Continuation/Scoped.java > > Changeset: 2929b0af5768 > Author: rpressler > Date: 2018-12-19 14:39 +0000 > URL: http://hg.openjdk.java.net/loom/loom/rev/2929b0af5768 > > merge > > ! src/java.base/share/classes/java/lang/Continuation.java > ! src/java.base/share/classes/java/lang/Fiber.java > > Changeset: 13fd84ac6844 > Author: rpressler > Date: 2018-12-19 14:41 +0000 > URL: http://hg.openjdk.java.net/loom/loom/rev/13fd84ac6844 > > remove unused set_anchor method > > ! src/hotspot/share/runtime/continuation.cpp > > Changeset: 1290ed91a95d > Author: rpressler > Date: 2018-12-19 14:41 +0000 > URL: http://hg.openjdk.java.net/loom/loom/rev/1290ed91a95d > > merge From ron.pressler at oracle.com Wed Dec 19 18:37:32 2018 From: ron.pressler at oracle.com (Ron Pressler) Date: Wed, 19 Dec 2018 18:37:32 +0000 Subject: hg: loom/loom: 4 new changesets In-Reply-To: <244755041.748926.1545242807166.JavaMail.zimbra@u-pem.fr> References: <201812191452.wBJEqxdm001478@aojmv0008.oracle.com> <244755041.748926.1545242807166.JavaMail.zimbra@u-pem.fr> Message-ID: Yep. Sorry, I?ll fix that (although it may not be part of the ultimate API at all). On December 19, 2018 at 6:06:57 PM, Remi Forax (forax at univ-mlv.fr) wrote: Hi Ron, in Continuation.PreemptStatus the method Pinned pinned() { return pinned; } should be public, no ? R?mi ----- Mail original ----- > De: "Ron Pressler" > ?: "loom-dev" > Envoy?: Mercredi 19 D?cembre 2018 15:52:57 > Objet: hg: loom/loom: 4 new changesets > Changeset: 1c32a18fb442 > Author: rpressler > Date: 2018-12-19 14:20 +0000 > URL: http://hg.openjdk.java.net/loom/loom/rev/1c32a18fb442 > > preempt API and some other Continuation API improvements > > ! src/hotspot/share/prims/stackwalk.cpp > ! src/hotspot/share/runtime/continuation.cpp > ! src/java.base/share/classes/java/lang/Continuation.java > ! test/jdk/java/lang/Continuation/Basic.java > ! test/jdk/java/lang/Continuation/Scoped.java > > Changeset: 2929b0af5768 > Author: rpressler > Date: 2018-12-19 14:39 +0000 > URL: http://hg.openjdk.java.net/loom/loom/rev/2929b0af5768 > > merge > > ! src/java.base/share/classes/java/lang/Continuation.java > ! src/java.base/share/classes/java/lang/Fiber.java > > Changeset: 13fd84ac6844 > Author: rpressler > Date: 2018-12-19 14:41 +0000 > URL: http://hg.openjdk.java.net/loom/loom/rev/13fd84ac6844 > > remove unused set_anchor method > > ! src/hotspot/share/runtime/continuation.cpp > > Changeset: 1290ed91a95d > Author: rpressler > Date: 2018-12-19 14:41 +0000 > URL: http://hg.openjdk.java.net/loom/loom/rev/1290ed91a95d > > merge From chris.plummer at oracle.com Wed Dec 19 21:22:14 2018 From: chris.plummer at oracle.com (chris.plummer at oracle.com) Date: Wed, 19 Dec 2018 21:22:14 +0000 Subject: hg: loom/loom: Fix test. FIBER_SCHEDULED event now delievered after mounting the fiber. Message-ID: <201812192122.wBJLMFRP014812@aojmv0008.oracle.com> Changeset: 336bfe5f7cd1 Author: cjplummer Date: 2018-12-19 13:21 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/336bfe5f7cd1 Fix test. FIBER_SCHEDULED event now delievered after mounting the fiber. ! test/hotspot/jtreg/serviceability/jvmti/FiberTest/libFiberTest.c From chris.plummer at oracle.com Wed Dec 19 21:36:14 2018 From: chris.plummer at oracle.com (chris.plummer at oracle.com) Date: Wed, 19 Dec 2018 21:36:14 +0000 Subject: hg: loom/loom: Redo last fix properly. Message-ID: <201812192136.wBJLaFeI020415@aojmv0008.oracle.com> Changeset: 8c5a14302477 Author: cjplummer Date: 2018-12-19 13:35 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/8c5a14302477 Redo last fix properly. ! test/hotspot/jtreg/serviceability/jvmti/FiberTest/libFiberTest.c From alan.bateman at oracle.com Thu Dec 20 13:18:04 2018 From: alan.bateman at oracle.com (alan.bateman at oracle.com) Date: Thu, 20 Dec 2018 13:18:04 +0000 Subject: hg: loom/loom: 227 new changesets Message-ID: <201812201318.wBKDIMZk015926@aojmv0008.oracle.com> Changeset: f527b24990d7 Author: egahlin Date: 2018-12-05 16:40 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/f527b24990d7 8205516: JFR tool Reviewed-by: mgronlun + make/launcher/Launcher-jdk.jfr.gmk ! src/hotspot/share/jfr/leakprofiler/emitEventOperation.cpp ! src/hotspot/share/jfr/leakprofiler/sampling/objectSampler.cpp ! src/hotspot/share/jfr/leakprofiler/sampling/objectSampler.hpp ! src/hotspot/share/jfr/leakprofiler/sampling/sampleList.cpp ! src/hotspot/share/jfr/leakprofiler/sampling/sampleList.hpp ! src/jdk.jfr/share/classes/jdk/jfr/ValueDescriptor.java ! src/jdk.jfr/share/classes/jdk/jfr/consumer/ChunkParser.java ! src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedEvent.java ! src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedObject.java ! src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordingFile.java ! src/jdk.jfr/share/classes/jdk/jfr/consumer/TimeConverter.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/OldObjectSample.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/Type.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/Utils.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/ChunkHeader.java + src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/RecordingInternals.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Assemble.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Command.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Disassemble.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/EventPrintWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Help.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/JSONWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Main.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Metadata.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/PrettyWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Print.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/StructuredWriter.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Summary.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/UserDataException.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/UserSyntaxException.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Version.java + src/jdk.jfr/share/classes/jdk/jfr/internal/tool/XMLWriter.java ! src/jdk.jfr/share/classes/module-info.java + test/jdk/jdk/jfr/tool/ExecuteHelper.java + test/jdk/jdk/jfr/tool/TestAssemble.java + test/jdk/jdk/jfr/tool/TestDisassemble.java + test/jdk/jdk/jfr/tool/TestHelp.java + test/jdk/jdk/jfr/tool/TestMetadata.java + test/jdk/jdk/jfr/tool/TestPrint.java + test/jdk/jdk/jfr/tool/TestPrintDefault.java + test/jdk/jdk/jfr/tool/TestPrintJSON.java + test/jdk/jdk/jfr/tool/TestPrintXML.java + test/jdk/jdk/jfr/tool/TestSummary.java + test/jdk/jdk/jfr/tool/jfr.xsd ! test/jdk/tools/launcher/HelpFlagsTest.java ! test/jdk/tools/launcher/VersionCheck.java Changeset: f0c62b8f73c0 Author: pliden Date: 2018-12-05 17:11 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/f0c62b8f73c0 8214784: Adjust Dictionary and JNIHandle verification Reviewed-by: coleenp, eosterlund ! src/hotspot/share/classfile/dictionary.hpp ! src/hotspot/share/runtime/jniHandles.cpp Changeset: eb95a38b2964 Author: pliden Date: 2018-12-05 17:11 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/eb95a38b2964 8214782: Add missing access barriers on CLD handle area Reviewed-by: coleenp, eosterlund ! src/hotspot/share/classfile/classLoaderData.cpp Changeset: 0e2e67902add Author: pliden Date: 2018-12-05 17:11 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/0e2e67902add 8214785: Remove unused WeakHandleType::vm_string Reviewed-by: coleenp, eosterlund ! src/hotspot/share/oops/weakHandle.hpp Changeset: eb4f89bce401 Author: pliden Date: 2018-12-05 17:11 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/eb4f89bce401 8214786: Remove unused ThreadLocalAllocBuffer::verify() Reviewed-by: kbarrett, eosterlund ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.cpp ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp Changeset: dffc52d799f1 Author: egahlin Date: 2018-12-05 18:08 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/dffc52d799f1 8214896: JFR Tool left files behind Reviewed-by: mgronlun - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Command.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Execute.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/HelpCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/JSONWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrettyWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrintCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/ReconstructCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SplitCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/StructuredWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SummaryCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/XMLWriter.java - test/jdk/jdk/jfr/cmd/ExecuteHelper.java - test/jdk/jdk/jfr/cmd/TestHelp.java - test/jdk/jdk/jfr/cmd/TestPrint.java - test/jdk/jdk/jfr/cmd/TestPrintDefault.java - test/jdk/jdk/jfr/cmd/TestPrintJSON.java - test/jdk/jdk/jfr/cmd/TestPrintXML.java - test/jdk/jdk/jfr/cmd/TestReconstruct.java - test/jdk/jdk/jfr/cmd/TestSplit.java - test/jdk/jdk/jfr/cmd/TestSummary.java Changeset: 5f3b9b633731 Author: coffeys Date: 2018-12-05 17:33 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/5f3b9b633731 8213952: Relax DNSName restriction as per RFC 1123 Reviewed-by: weijun, mullan, chegar ! src/java.base/share/classes/sun/security/x509/DNSName.java ! src/java.base/share/classes/sun/security/x509/GeneralName.java ! src/java.base/share/classes/sun/security/x509/RFC822Name.java ! src/java.base/share/classes/sun/security/x509/URIName.java ! src/java.base/share/classes/sun/security/x509/X500Name.java ! test/jdk/sun/security/tools/keytool/KeyToolTest.java + test/jdk/sun/security/x509/GeneralName/DNSNameTest.java Changeset: 7e268f863ff0 Author: eosterlund Date: 2018-12-05 15:57 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions Reviewed-by: dlong, rbackman ! src/hotspot/share/code/codeBehaviours.cpp ! src/hotspot/share/code/compiledIC.cpp ! src/hotspot/share/code/compiledIC.hpp ! src/hotspot/share/code/compiledMethod.cpp ! src/hotspot/share/code/compiledMethod.hpp ! src/hotspot/share/code/icBuffer.cpp ! src/hotspot/share/code/icBuffer.hpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/relocInfo.cpp ! src/hotspot/share/code/relocInfo.hpp ! src/hotspot/share/code/stubs.cpp ! src/hotspot/share/code/vtableStubs.cpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/safepoint.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/sharedRuntime.hpp ! src/hotspot/share/runtime/sweeper.cpp Changeset: dad45affbdaa Author: eosterlund Date: 2018-12-05 16:11 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/dad45affbdaa 8214257: IC cache not clean after cleaning assertion failure Reviewed-by: kvn, thartmann ! src/hotspot/share/code/compiledIC.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp Changeset: 413c28945e0f Author: hannesw Date: 2018-12-05 19:17 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/413c28945e0f 8214795: Add safety check to dynalink inner class lookup Reviewed-by: sundar, attila ! src/jdk.dynalink/share/classes/jdk/dynalink/beans/AccessibleMembersLookup.java Changeset: 8dd8965df7f6 Author: bpb Date: 2018-12-05 15:58 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/8dd8965df7f6 6516099: InputStream.skipFully(int k) to skip exactly k bytes Reviewed-by: rriggs, bchristi, serb, dfuchs ! src/java.base/share/classes/java/io/InputStream.java ! test/jdk/java/io/InputStream/NullInputStream.java ! test/jdk/java/io/InputStream/Skip.java Changeset: f7dee5d12632 Author: iignatyev Date: 2018-12-05 16:22 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/f7dee5d12632 8214908: add ctw tests for jdk.jfr and jdk.management.jfr modules Reviewed-by: kvn + test/hotspot/jtreg/applications/ctw/modules/jdk_jfr.java + test/hotspot/jtreg/applications/ctw/modules/jdk_management_jfr.java Changeset: ba5da1d57f84 Author: jwilhelm Date: 2018-12-06 00:44 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/ba5da1d57f84 Added tag jdk-12+23 for changeset eef755718cb2 ! .hgtags Changeset: e07bd8ecab45 Author: mseledtsov Date: 2018-12-05 17:50 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/e07bd8ecab45 8214906: [TESTBUG] jfr/event/sampling/TestNative.java fails with UnsatisfiedLinkError Summary: Fixed the name of native method to reflect correct package Reviewed-by: mgronlun ! test/jdk/ProblemList.txt ! test/jdk/jdk/jfr/event/sampling/libTestNative.c Changeset: e78890a4c25f Author: cushon Date: 2018-12-05 11:31 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/e78890a4c25f 8214902: Pretty-printing marker annotations add unnecessary parenthesis Reviewed-by: jjg ! src/jdk.compiler/share/classes/com/sun/tools/javac/tree/Pretty.java ! test/langtools/jdk/javadoc/doclet/testDeprecatedDocs/pkg/DeprecatedClassByAnnotation.java ! test/langtools/jdk/javadoc/doclet/testHtmlVersion/pkg2/DeprecatedClassByAnnotation.java ! test/langtools/jdk/javadoc/doclet/testSearch/pkg2/DeprecatedClassByAnnotation.java ! test/langtools/tools/javac/T8020997/CannotCompileRepeatedAnnoTest.java ! test/langtools/tools/javac/annotations/6881115/T6881115.java ! test/langtools/tools/javac/annotations/6881115/T6881115.out ! test/langtools/tools/javac/annotations/neg/Cycle3.java ! test/langtools/tools/javac/annotations/pos/Primitives.java ! test/langtools/tools/javac/annotations/repeatingAnnotations/BaseAnnoAsContainerAnno.java ! test/langtools/tools/javac/annotations/repeatingAnnotations/MissingContainer.java ! test/langtools/tools/javac/annotations/typeAnnotations/api/AnnotatedArrayOrder.java ! test/langtools/tools/javac/annotations/typeAnnotations/api/ArrayCreationTree.java ! test/langtools/tools/javac/annotations/typeAnnotations/api/ArrayPositionConsistency.java ! test/langtools/tools/javac/annotations/typeAnnotations/failures/AnnotatedMethodSelectorTest.java ! test/langtools/tools/javac/diags/examples/AnnoNotApplicable.java ! test/langtools/tools/javac/tree/TypeAnnotationsPretty.java Changeset: fa3534ce82a1 Author: jjiang Date: 2018-12-06 10:05 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/fa3534ce82a1 8214459: NSS source should be removed Summary: Remove test/jdk/sun/security/pkcs11/nss/src Reviewed-by: valeriep - test/jdk/sun/security/pkcs11/nss/src/nss-3.16-with-nspr-4.10.4.tar.gz - test/jdk/sun/security/pkcs11/nss/src/nss-3.16-with-nspr-4.10.4.tar.gz.sha256 Changeset: 4fd8872aebb4 Author: iignatyev Date: 2018-12-05 20:59 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/4fd8872aebb4 8214915: CtwRunner misses export for jdk.internal.access Reviewed-by: kvn ! test/hotspot/jtreg/testlibrary/ctw/src/sun/hotspot/tools/ctw/CtwRunner.java Changeset: 24ca55b8deed Author: lmesnik Date: 2018-12-05 21:18 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/24ca55b8deed 8210107: vmTestbase/nsk/stress/network tests fail with Cannot assign requested address (Bind failed) Reviewed-by: dholmes, mseledtsov, chegar - test/hotspot/jtreg/vmTestbase/nsk/stress/network/TEST.properties - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network001.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network002.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network003.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network004.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network005.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network006.java Changeset: b4982a22926b Author: pmuthuswamy Date: 2018-12-06 11:54 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/b4982a22926b 8214856: Errors with JSZip in web console after upgrade to 3.1.5 Reviewed-by: hannesw ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/resources/script.js Changeset: c5c0db0b7c2f Author: nishjain Date: 2018-12-06 12:39 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/c5c0db0b7c2f 8177552: Compact Number Formatting support Reviewed-by: naoto, rriggs ! make/jdk/src/classes/build/tools/cldrconverter/AbstractLDMLHandler.java ! make/jdk/src/classes/build/tools/cldrconverter/Bundle.java ! make/jdk/src/classes/build/tools/cldrconverter/CLDRConverter.java ! make/jdk/src/classes/build/tools/cldrconverter/LDMLParseHandler.java + make/jdk/src/classes/build/tools/cldrconverter/StringListElement.java + make/jdk/src/classes/build/tools/cldrconverter/StringListEntry.java + src/java.base/share/classes/java/text/CompactNumberFormat.java ! src/java.base/share/classes/java/text/DecimalFormat.java ! src/java.base/share/classes/java/text/NumberFormat.java ! src/java.base/share/classes/java/text/spi/NumberFormatProvider.java ! src/java.base/share/classes/sun/text/resources/FormatData.java ! src/java.base/share/classes/sun/util/locale/provider/LocaleResources.java ! src/java.base/share/classes/sun/util/locale/provider/NumberFormatProviderImpl.java + test/jdk/java/text/Format/CompactNumberFormat/CompactFormatAndParseHelper.java + test/jdk/java/text/Format/CompactNumberFormat/TestCNFRounding.java + test/jdk/java/text/Format/CompactNumberFormat/TestCompactNumber.java + test/jdk/java/text/Format/CompactNumberFormat/TestCompactPatternsValidity.java + test/jdk/java/text/Format/CompactNumberFormat/TestEquality.java + test/jdk/java/text/Format/CompactNumberFormat/TestFormatToCharacterIterator.java + test/jdk/java/text/Format/CompactNumberFormat/TestMutatingInstance.java + test/jdk/java/text/Format/CompactNumberFormat/TestParseBigDecimal.java + test/jdk/java/text/Format/CompactNumberFormat/TestSpecialValues.java + test/jdk/java/text/Format/CompactNumberFormat/TestUExtensionOverride.java + test/jdk/java/text/Format/CompactNumberFormat/TestWithCompatProvider.java + test/jdk/java/text/Format/CompactNumberFormat/serialization/TestDeserializeCNF.java + test/jdk/java/text/Format/CompactNumberFormat/serialization/TestSerialization.java + test/jdk/java/text/Format/CompactNumberFormat/serialization/cnf1.ser.txt + test/jdk/java/text/Format/CompactNumberFormat/serialization/cnf2.ser.txt Changeset: a76b7884b59a Author: thartmann Date: 2018-12-06 10:07 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages Summary: Use huge pages for code cache if ReservedCodeCacheSize == InitialCodeCacheSize Reviewed-by: kvn ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeCache.hpp ! src/hotspot/share/compiler/compilerDefinitions.cpp Changeset: c09bff7928e8 Author: hannesw Date: 2018-12-06 12:34 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/c09bff7928e8 8214571: -Xdoclint of array serialField gives "error: array type not allowed here" Reviewed-by: jjg, sundar ! src/jdk.compiler/share/classes/com/sun/tools/doclint/Checker.java ! src/jdk.compiler/share/classes/com/sun/tools/doclint/resources/doclint.properties ! src/jdk.compiler/share/classes/com/sun/tools/javac/api/JavacTrees.java ! test/langtools/jdk/javadoc/doclet/testSeeTag/TestSeeTag.java ! test/langtools/jdk/javadoc/doclet/testSerializedForm/SerializedForm.java ! test/langtools/jdk/javadoc/doclet/testSerializedForm/TestSerializedForm.java ! test/langtools/tools/doclint/ReferenceTest.out Changeset: 357d2b80748d Author: redestad Date: 2018-12-06 12:51 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/357d2b80748d 8214858: Improve module graph archiving Reviewed-by: jiangli, alanb ! src/hotspot/share/memory/heapShared.cpp ! src/java.base/share/classes/jdk/internal/module/ArchivedModuleGraph.java ! src/java.base/share/classes/jdk/internal/module/ModuleBootstrap.java Changeset: 6e7db888f04c Author: roland Date: 2018-12-03 10:51 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/6e7db888f04c 8214857: "bad trailing membar" assert failure at memnode.cpp:3220 Reviewed-by: adinn, thartmann ! src/hotspot/share/opto/memnode.cpp Changeset: c45a5b46461b Author: tschatzl Date: 2018-12-06 13:55 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/c45a5b46461b 8193312: Rename VM_CGC_Operation to VM_G1Concurrent Reviewed-by: pliden, sjohanss, jgeorge ! src/hotspot/share/gc/g1/g1ConcurrentMarkThread.cpp ! src/hotspot/share/gc/g1/vm_operations_g1.cpp ! src/hotspot/share/gc/g1/vm_operations_g1.hpp ! src/hotspot/share/runtime/vm_operations.hpp ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/VMOps.java Changeset: bb051ca06e9e Author: tschatzl Date: 2018-12-06 13:55 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/bb051ca06e9e 8159440: Move marking of promoted objects during initial mark into the concurrent phase Reviewed-by: sjohanss, kbarrett ! src/hotspot/share/gc/g1/g1Allocator.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.hpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.inline.hpp ! src/hotspot/share/gc/g1/g1EvacFailure.cpp ! src/hotspot/share/gc/g1/g1OopClosures.hpp ! src/hotspot/share/gc/g1/g1OopClosures.inline.hpp ! src/hotspot/share/gc/g1/heapRegion.hpp ! src/hotspot/share/gc/g1/heapRegion.inline.hpp Changeset: 2d17750d41e7 Author: tschatzl Date: 2018-12-06 15:44 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/2d17750d41e7 8214791: Consistently name gc files containing VM operations Summary: Name all gc files containing VM operations according to a VMOperations.?pp. Reviewed-by: coleenp, dholmes ! make/hotspot/lib/JvmDtraceObjects.gmk ! src/hotspot/share/gc/cms/cmsCollectorPolicy.cpp ! src/hotspot/share/gc/cms/cmsHeap.cpp + src/hotspot/share/gc/cms/cmsVMOperations.cpp + src/hotspot/share/gc/cms/cmsVMOperations.hpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp - src/hotspot/share/gc/cms/vmCMSOperations.cpp - src/hotspot/share/gc/cms/vmCMSOperations.hpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMarkThread.cpp ! src/hotspot/share/gc/g1/g1FullGCScope.hpp + src/hotspot/share/gc/g1/g1VMOperations.cpp + src/hotspot/share/gc/g1/g1VMOperations.hpp - src/hotspot/share/gc/g1/vm_operations_g1.cpp - src/hotspot/share/gc/g1/vm_operations_g1.hpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp + src/hotspot/share/gc/parallel/psVMOperations.cpp + src/hotspot/share/gc/parallel/psVMOperations.hpp - src/hotspot/share/gc/parallel/vmPSOperations.cpp - src/hotspot/share/gc/parallel/vmPSOperations.hpp ! src/hotspot/share/gc/shared/collectedHeap.cpp ! src/hotspot/share/gc/shared/collectorPolicy.cpp + src/hotspot/share/gc/shared/gcVMOperations.cpp + src/hotspot/share/gc/shared/gcVMOperations.hpp ! src/hotspot/share/gc/shared/genCollectedHeap.cpp - src/hotspot/share/gc/shared/vmGCOperations.cpp - src/hotspot/share/gc/shared/vmGCOperations.hpp ! src/hotspot/share/gc/z/zDriver.cpp ! src/hotspot/share/jfr/periodic/jfrPeriodic.cpp ! src/hotspot/share/runtime/os.cpp ! src/hotspot/share/services/attachListener.cpp ! src/hotspot/share/services/diagnosticCommand.cpp ! src/hotspot/share/services/heapDumper.cpp Changeset: 9e041366c764 Author: tschatzl Date: 2018-12-06 15:44 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/9e041366c764 8214850: Rename vm_operations.?pp files to vmOperations.?pp files Reviewed-by: dholmes, coleenp ! src/hotspot/share/aot/aotCodeHeap.cpp ! src/hotspot/share/classfile/classLoaderStats.hpp ! src/hotspot/share/gc/cms/cmsVMOperations.hpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/shared/gcVMOperations.hpp ! src/hotspot/share/gc/z/zDriver.cpp ! src/hotspot/share/jfr/leakprofiler/emitEventOperation.hpp ! src/hotspot/share/jfr/leakprofiler/startOperation.hpp ! src/hotspot/share/jfr/leakprofiler/stopOperation.hpp ! src/hotspot/share/jfr/recorder/checkpoint/types/jfrType.cpp ! src/hotspot/share/jfr/recorder/service/jfrRecorderService.cpp ! src/hotspot/share/memory/metaspaceShared.cpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmtiEnvBase.cpp ! src/hotspot/share/prims/jvmtiEnvBase.hpp ! src/hotspot/share/prims/jvmtiEnvThreadState.cpp ! src/hotspot/share/prims/jvmtiEventController.cpp ! src/hotspot/share/prims/jvmtiImpl.cpp ! src/hotspot/share/prims/jvmtiImpl.hpp ! src/hotspot/share/prims/jvmtiRedefineClasses.hpp ! src/hotspot/share/prims/jvmtiTagMap.cpp ! src/hotspot/share/prims/jvmtiTrace.hpp ! src/hotspot/share/prims/jvmtiUtil.cpp ! src/hotspot/share/runtime/biasedLocking.cpp ! src/hotspot/share/runtime/compilationPolicy.cpp ! src/hotspot/share/runtime/compilationPolicy.hpp ! src/hotspot/share/runtime/interfaceSupport.inline.hpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/sweeper.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/threadSMR.cpp + src/hotspot/share/runtime/vmOperations.cpp + src/hotspot/share/runtime/vmOperations.hpp ! src/hotspot/share/runtime/vmThread.cpp ! src/hotspot/share/runtime/vmThread.hpp - src/hotspot/share/runtime/vm_operations.cpp - src/hotspot/share/runtime/vm_operations.hpp ! src/hotspot/share/services/dtraceAttacher.cpp ! src/hotspot/share/services/heapDumper.cpp ! src/hotspot/share/services/memTracker.cpp ! src/hotspot/share/services/nmtDCmd.cpp ! src/hotspot/share/services/threadService.cpp ! src/hotspot/share/utilities/vmError.cpp ! test/hotspot/gtest/gc/g1/test_heapRegion.cpp ! test/hotspot/gtest/gc/shared/test_oopStorage.cpp ! test/hotspot/gtest/gc/shared/test_oopStorage_parperf.cpp ! test/hotspot/gtest/threadHelper.inline.hpp ! test/hotspot/gtest/utilities/test_concurrentHashtable.cpp Changeset: e6f52c533cbc Author: hseigel Date: 2018-12-06 09:58 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/e6f52c533cbc 8214807: Improve handling of very old class files Summary: Remove old version specific code in reflection.cpp Reviewed-by: acorn, dholmes ! src/hotspot/share/classfile/verifier.hpp ! src/hotspot/share/runtime/reflection.cpp ! src/java.base/share/man/java.1 Changeset: 50a00bc8a0e2 Author: rriggs Date: 2018-12-06 09:55 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/50a00bc8a0e2 8214498: java/util/Locale/bcp47u/SystemPropertyTests.java wrong locale default Reviewed-by: lancea, bpb ! src/java.base/share/classes/jdk/internal/util/SystemProps.java Changeset: c56c30f9f991 Author: itakiguchi Date: 2018-12-06 10:22 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/c56c30f9f991 8212794: IBM-964 is required for AIX default charset Reviewed-by: rriggs, ihse, alanb ! make/data/charsetmapping/charsets ! make/data/charsetmapping/stdcs-aix ! src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM33722.java - src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM964.java + src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM964.java.template - src/jdk.charsets/share/classes/sun/nio/cs/ext/SimpleEUCEncoder.java + src/jdk.charsets/share/classes/sun/nio/cs/ext/SimpleEUCEncoder.java.template ! test/jdk/sun/nio/cs/TestIBMBugs.java Changeset: dfdc025ad9ea Author: lfoltan Date: 2018-12-06 10:46 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/dfdc025ad9ea 8214275: CondyRepeatFailedResolution asserts "Dynamic constant has no fixed basic type" Summary: GenerateOopMap::do_ldc must check for a DynamicInError as well as a Dynamic constant pool tag. Reviewed-by: coleenp ! src/hotspot/share/oops/generateOopMap.cpp Changeset: 8b8935b5cfd4 Author: eosterlund Date: 2018-12-06 18:11 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/8b8935b5cfd4 8214401: [AOT] crash in ClassLoaderData::is_alive() with AOTed jdk.base Reviewed-by: kvn, dlong ! src/hotspot/share/aot/aotCompiledMethod.cpp ! src/hotspot/share/aot/aotCompiledMethod.hpp ! src/hotspot/share/code/compiledMethod.hpp Changeset: 094d91e25943 Author: ecaspole Date: 2018-12-06 13:54 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/094d91e25943 8214912: LogCompilation: Show the comp level Summary: Show the TieredCompilation level from the xml log Reviewed-by: kvn, iignatyev ! src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/Compilation.java ! src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java ! src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/NMethod.java ! src/utils/LogCompilation/src/test/java/com/sun/hotspot/tools/compiler/TestLogCompilation.java + src/utils/LogCompilation/src/test/resources/no_tiered_short.log + src/utils/LogCompilation/src/test/resources/tiered_short.log Changeset: 66a5a30cf26e Author: ecaspole Date: 2018-12-06 13:54 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/66a5a30cf26e Merge Changeset: db0173cac437 Author: vromero Date: 2018-12-06 15:51 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/db0173cac437 8214514: javac @file option gives error caused by Chinese encoding in the path Reviewed-by: jjg ! src/jdk.compiler/share/classes/com/sun/tools/javac/main/CommandLine.java Changeset: 2708a32dc964 Author: jcbeyler Date: 2018-12-06 14:18 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/2708a32dc964 8214531: HeapMonitorEventOnOffTest.java test fails with "Statistics should be null to begin with" Summary: Remove the enable sampling and let the underlying method call it Reviewed-by: sspitsyn, phh ! test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorEventOnOffTest.java Changeset: 0d89f672c62e Author: smarks Date: 2018-12-06 14:34 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/0d89f672c62e 8211882: Broken links in serialized-form.html Reviewed-by: darcy, lancea ! src/java.base/share/classes/java/util/EnumSet.java ! src/java.base/share/classes/java/util/ImmutableCollections.java Changeset: 9607fb16ccfe Author: egahlin Date: 2018-12-06 23:38 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/9607fb16ccfe 8214925: JFR tool fails to execute Reviewed-by: mgronlun, mseledtsov ! src/jdk.jfr/share/classes/jdk/jfr/internal/tool/Main.java ! test/jdk/jdk/jfr/tool/ExecuteHelper.java ! test/jdk/jdk/jfr/tool/TestAssemble.java ! test/jdk/jdk/jfr/tool/TestDisassemble.java ! test/jdk/jdk/jfr/tool/TestHelp.java ! test/jdk/jdk/jfr/tool/TestMetadata.java ! test/jdk/jdk/jfr/tool/TestPrint.java ! test/jdk/jdk/jfr/tool/TestPrintDefault.java ! test/jdk/jdk/jfr/tool/TestPrintJSON.java ! test/jdk/jdk/jfr/tool/TestPrintXML.java ! test/jdk/jdk/jfr/tool/TestSummary.java Changeset: 4ac336352a29 Author: dzhou Date: 2018-12-06 18:46 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/4ac336352a29 8213127: Refactor test/java/util/ResourceBundle/Control/MissingResourceCauseTest.sh to plain java tests Reviewed-by: naoto - test/jdk/java/util/ResourceBundle/Control/MissingResourceCauseTest.sh + test/jdk/java/util/ResourceBundle/Control/MissingResourceCauseTestRun.java Changeset: b0e751c70385 Author: jnimeh Date: 2018-12-06 22:05 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/b0e751c70385 8214129: SSL session resumption/SNI with TLS1.2 causes StackOverflowError Reviewed-by: xuelei, jjiang ! src/java.base/share/classes/sun/security/ssl/SSLSessionImpl.java ! src/java.base/share/classes/sun/security/ssl/ServerNameExtension.java Changeset: e1fcdc7ead4d Author: dchuyko Date: 2018-12-07 10:48 +0300 URL: http://hg.openjdk.java.net/loom/loom/rev/e1fcdc7ead4d 8214707: Prevent GCC 8 from reporting error in ClassLoader::file_name_for_class_name() Reviewed-by: hseigel, dholmes ! src/hotspot/share/classfile/classLoader.cpp Changeset: 442d322bb6d8 Author: mbaesken Date: 2018-12-06 09:48 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/442d322bb6d8 8214944: replace strerror by os::strerror Reviewed-by: dholmes, neliasso ! src/hotspot/os/aix/os_aix.cpp ! src/hotspot/os/bsd/os_bsd.cpp ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/os/solaris/os_solaris.cpp ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/share/gc/z/zErrno.cpp ! src/hotspot/share/logging/logFileOutput.cpp Changeset: f14aa990b330 Author: sundar Date: 2018-12-07 14:36 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/f14aa990b330 8212137: Remove JrtFileSystem finalize method Reviewed-by: alanb ! src/java.base/share/classes/jdk/internal/jrtfs/JrtFileSystem.java Changeset: 8df9cf767f79 Author: neliasso Date: 2018-12-04 18:55 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/8df9cf767f79 8214773: Replace use of thread unsafe strtok Reviewed-by: thartmann, dholmes ! src/hotspot/os/windows/os_windows.hpp ! src/hotspot/share/classfile/vmSymbols.cpp ! src/hotspot/share/compiler/compilerDirectives.cpp ! src/hotspot/share/gc/g1/g1Arguments.cpp ! src/hotspot/share/memory/universe.cpp Changeset: 1f2cd8329576 Author: tschatzl Date: 2018-12-07 11:15 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/1f2cd8329576 8215005: Missing include of runtime/os.hpp in zError.cpp after JDK-8214925 breaks build without precompiled headers Reviewed-by: shade ! src/hotspot/share/gc/z/zErrno.cpp Changeset: 98408c7c0b73 Author: eosterlund Date: 2018-12-07 13:15 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/98408c7c0b73 8214936: assert(_needs_refill == 0) failed: Forgot to handle a failed IC transition requiring IC stubs Reviewed-by: kvn, thartmann, pliden ! src/hotspot/share/code/compiledMethod.cpp ! src/hotspot/share/code/icBuffer.cpp ! src/hotspot/share/code/icBuffer.hpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/thread.hpp Changeset: 495c05ee2a9a Author: sjohanss Date: 2018-12-07 13:54 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/495c05ee2a9a 8213890: Implementation of JEP 344: Abortable Mixed Collections for G1 Reviewed-by: tschatzl, kbarrett Contributed-by: erik.helin at oracle.com, stefan.johansson at oracle.com ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/g1/g1CollectionSet.cpp ! src/hotspot/share/gc/g1/g1CollectionSet.hpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp ! src/hotspot/share/gc/g1/g1InCSetState.hpp ! src/hotspot/share/gc/g1/g1OopClosures.hpp ! src/hotspot/share/gc/g1/g1OopClosures.inline.hpp + src/hotspot/share/gc/g1/g1OopStarChunkedList.cpp + src/hotspot/share/gc/g1/g1OopStarChunkedList.hpp + src/hotspot/share/gc/g1/g1OopStarChunkedList.inline.hpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.cpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.hpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.inline.hpp ! src/hotspot/share/gc/g1/g1Policy.hpp ! src/hotspot/share/gc/g1/g1RemSet.cpp ! src/hotspot/share/gc/g1/g1RemSet.hpp ! src/hotspot/share/gc/g1/heapRegion.cpp ! src/hotspot/share/gc/g1/heapRegion.hpp ! src/hotspot/share/gc/shared/workerDataArray.hpp ! src/hotspot/share/gc/shared/workerDataArray.inline.hpp Changeset: f3d5dcb6924b Author: hseigel Date: 2018-12-07 08:16 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/f3d5dcb6924b 8214840: runtime/NMT/MallocStressTest.java timed out Summary: Add volatile to declaration of static field shared by multiple threads Reviewed-by: dcubed, dholmes, coleenp ! test/hotspot/jtreg/runtime/NMT/MallocStressTest.java Changeset: 325c95779368 Author: egahlin Date: 2018-12-07 14:19 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/325c95779368 8207829: FlightRecorderMXBeanImpl is leaking the first classloader which calls it Reviewed-by: mgronlun ! src/jdk.jfr/share/classes/jdk/jfr/internal/RequestEngine.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/instrument/JDKEvents.java + test/jdk/jdk/jfr/jmx/TestFlightRecorderMXBeanLeak.java Changeset: 2998e6d76879 Author: dchuyko Date: 2018-12-07 17:52 +0300 URL: http://hg.openjdk.java.net/loom/loom/rev/2998e6d76879 8214376: Don't use memset to initialize array of Bundle in output.cpp Reviewed-by: thartmann, shade ! src/hotspot/share/opto/output.cpp Changeset: 3ba9ff4d4aaf Author: egahlin Date: 2018-12-07 17:11 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/3ba9ff4d4aaf 8212232: Wrong metadata for the configuration of the cutoff for old object sample events Reviewed-by: mgronlun ! src/jdk.jfr/share/classes/jdk/jfr/internal/Utils.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/settings/CutoffSetting.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/settings/PeriodSetting.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/settings/ThresholdSetting.java Changeset: e3398b2e1ab0 Author: rriggs Date: 2018-12-07 11:51 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/e3398b2e1ab0 8214971: Replace use of string.equals("") with isEmpty() Reviewed-by: jlaskey, prappo, lancea, dfuchs, redestad ! src/java.base/share/classes/com/sun/java/util/jar/pack/ConstantPool.java ! src/java.base/share/classes/com/sun/java/util/jar/pack/Driver.java ! src/java.base/share/classes/com/sun/java/util/jar/pack/Package.java ! src/java.base/share/classes/com/sun/java/util/jar/pack/PackageWriter.java ! src/java.base/share/classes/com/sun/java/util/jar/pack/PackerImpl.java ! src/java.base/share/classes/java/io/File.java ! src/java.base/share/classes/java/lang/SecurityManager.java ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/java/lang/reflect/Parameter.java ! src/java.base/share/classes/java/net/HostPortrange.java ! src/java.base/share/classes/java/net/InetAddress.java ! src/java.base/share/classes/java/net/SocketPermission.java ! src/java.base/share/classes/java/net/URLPermission.java ! src/java.base/share/classes/java/net/URLStreamHandler.java ! src/java.base/share/classes/java/util/Locale.java ! src/java.base/share/classes/java/util/jar/Pack200.java ! src/java.base/share/classes/java/util/regex/Pattern.java ! src/java.base/share/classes/javax/crypto/Cipher.java ! src/java.base/share/classes/javax/net/ssl/SSLParameters.java ! src/java.base/share/classes/jdk/internal/loader/URLClassPath.java ! src/java.base/share/classes/sun/net/www/protocol/jar/URLJarFile.java ! src/java.base/share/classes/sun/net/www/protocol/mailto/Handler.java ! src/java.base/share/classes/sun/security/provider/PolicyFile.java ! src/java.base/share/classes/sun/security/util/ConsoleCallbackHandler.java ! src/java.base/share/classes/sun/security/util/DomainName.java ! src/java.base/unix/classes/java/io/UnixFileSystem.java ! src/java.base/unix/classes/sun/net/www/protocol/file/Handler.java ! src/java.base/windows/classes/jdk/internal/loader/FileURLMapper.java ! src/java.base/windows/classes/sun/net/www/protocol/file/Handler.java ! src/java.base/windows/classes/sun/net/www/protocol/jar/JarFileFactory.java ! src/java.base/windows/classes/sun/nio/fs/WindowsUriSupport.java ! src/java.logging/share/classes/java/util/logging/LogManager.java ! src/java.management.rmi/share/classes/javax/management/remote/rmi/RMIConnectorServer.java ! src/java.management/share/classes/com/sun/jmx/remote/internal/ServerNotifForwarder.java ! src/java.management/share/classes/javax/management/ImmutableDescriptor.java ! src/java.management/share/classes/javax/management/MBeanPermission.java ! src/java.management/share/classes/javax/management/modelmbean/DescriptorSupport.java ! src/java.management/share/classes/javax/management/modelmbean/ModelMBeanInfoSupport.java ! src/java.management/share/classes/javax/management/openmbean/CompositeType.java ! src/java.management/share/classes/javax/management/openmbean/OpenMBeanAttributeInfoSupport.java ! src/java.management/share/classes/javax/management/openmbean/OpenMBeanConstructorInfoSupport.java ! src/java.management/share/classes/javax/management/openmbean/OpenMBeanOperationInfoSupport.java ! src/java.management/share/classes/javax/management/openmbean/OpenType.java ! src/java.management/share/classes/javax/management/openmbean/TabularType.java ! src/java.management/share/classes/javax/management/remote/JMXConnectorFactory.java ! src/java.management/share/classes/sun/management/MappedMXBeanType.java ! src/java.naming/share/classes/com/sun/jndi/ldap/Filter.java ! src/java.naming/share/classes/com/sun/jndi/ldap/LdapCtx.java ! src/java.naming/share/classes/com/sun/jndi/ldap/LdapReferralContext.java ! src/java.naming/share/classes/com/sun/jndi/ldap/LdapSearchEnumeration.java ! src/java.naming/share/classes/com/sun/jndi/ldap/LdapURL.java ! src/java.naming/share/classes/com/sun/jndi/ldap/NamingEventNotifier.java ! src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/AtomicContext.java ! src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/ComponentContext.java ! src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/Continuation.java ! src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/PartialCompositeContext.java ! src/java.naming/share/classes/com/sun/jndi/toolkit/dir/ContextEnumerator.java ! src/java.naming/share/classes/com/sun/jndi/toolkit/url/GenericURLContext.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http1Request.java ! src/java.net.http/share/classes/jdk/internal/net/http/HttpRequestBuilderImpl.java ! src/java.net.http/share/classes/jdk/internal/net/http/ResponseContent.java ! src/java.net.http/share/classes/jdk/internal/net/http/common/SSLFlowDelegate.java ! src/java.prefs/share/classes/java/util/prefs/AbstractPreferences.java ! src/java.rmi/share/classes/com/sun/rmi/rmid/ExecOptionPermission.java ! src/java.rmi/share/classes/java/rmi/Naming.java ! src/java.rmi/share/classes/sun/rmi/server/ActivatableRef.java ! src/java.rmi/share/classes/sun/rmi/server/Activation.java ! src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPEndpoint.java ! src/java.scripting/share/classes/com/sun/tools/script/shell/Main.java ! src/java.sql.rowset/share/classes/com/sun/rowset/CachedRowSetImpl.java ! src/java.sql.rowset/share/classes/com/sun/rowset/JdbcRowSetImpl.java ! src/java.sql.rowset/share/classes/com/sun/rowset/internal/WebRowSetXmlWriter.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/BaseRowSet.java ! src/java.sql/share/classes/java/sql/DriverManager.java ! src/java.xml/share/classes/com/sun/xml/internal/stream/events/AttributeImpl.java ! src/java.xml/share/classes/com/sun/xml/internal/stream/events/StartDocumentEvent.java ! src/java.xml/share/classes/com/sun/xml/internal/stream/writers/XMLDOMWriterImpl.java ! src/java.xml/share/classes/com/sun/xml/internal/stream/writers/XMLStreamWriterImpl.java ! src/java.xml/share/classes/javax/xml/catalog/CatalogFeatures.java ! src/java.xml/share/classes/javax/xml/catalog/Util.java ! src/java.xml/share/classes/jdk/xml/internal/JdkXmlFeatures.java ! src/jdk.jartool/share/classes/sun/tools/jar/Main.java ! src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/ClassDocImpl.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/SearchIndexItem.java ! src/jdk.jcmd/share/classes/sun/tools/jmap/JMap.java ! src/jdk.jconsole/share/classes/sun/tools/jconsole/ConnectDialog.java ! src/jdk.jconsole/share/classes/sun/tools/jconsole/ThreadTab.java ! src/jdk.management.agent/share/classes/jdk/internal/agent/Agent.java ! src/jdk.naming.dns/share/classes/com/sun/jndi/dns/DnsContext.java ! src/jdk.naming.dns/share/classes/com/sun/jndi/dns/DnsName.java ! src/jdk.naming.dns/share/classes/com/sun/jndi/dns/DnsUrl.java ! src/jdk.naming.dns/share/classes/com/sun/jndi/dns/ResourceRecord.java ! src/jdk.naming.dns/share/classes/com/sun/jndi/dns/ZoneNode.java ! src/jdk.rmic/share/classes/sun/tools/java/ClassPath.java ! src/jdk.rmic/share/classes/sun/tools/java/Package.java Changeset: 535144bfa542 Author: egahlin Date: 2018-12-07 18:00 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/535144bfa542 8213421: Line number information for execution samples always 0 Reviewed-by: mgronlun ! src/hotspot/share/jfr/recorder/stacktrace/jfrStackTraceRepository.hpp Changeset: d2f118d3f8e7 Author: manc Date: 2018-12-07 12:46 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/d2f118d3f8e7 8213224: Move code related to GC threads calculation out of AdaptiveSizePolicy Summary: Consolidate code related to GC threads calculation into a single class Reviewed-by: tschatzl, pliden ! src/hotspot/cpu/sparc/vm_version_sparc.cpp ! src/hotspot/cpu/sparc/vm_version_sparc.hpp ! src/hotspot/share/gc/cms/cmsArguments.cpp ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/cms/parNewGeneration.cpp ! src/hotspot/share/gc/g1/g1Arguments.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1FullCollector.cpp ! src/hotspot/share/gc/parallel/gcTaskManager.cpp ! src/hotspot/share/gc/parallel/parallelArguments.cpp ! src/hotspot/share/gc/shared/adaptiveSizePolicy.cpp ! src/hotspot/share/gc/shared/adaptiveSizePolicy.hpp ! src/hotspot/share/gc/shared/workerManager.hpp + src/hotspot/share/gc/shared/workerPolicy.cpp + src/hotspot/share/gc/shared/workerPolicy.hpp ! src/hotspot/share/runtime/vm_version.cpp ! src/hotspot/share/runtime/vm_version.hpp Changeset: bec57b4a6d69 Author: zgu Date: 2018-12-07 13:55 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default Reviewed-by: tschatzl, rkennke ! src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp ! src/hotspot/share/gc/cms/parNewGeneration.cpp ! src/hotspot/share/gc/cms/parNewGeneration.hpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.hpp ! src/hotspot/share/gc/g1/g1FullGCMarkTask.cpp ! src/hotspot/share/gc/g1/g1FullGCMarkTask.hpp ! src/hotspot/share/gc/g1/g1FullGCReferenceProcessorExecutor.hpp ! src/hotspot/share/gc/parallel/pcTasks.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/shared/gc_globals.hpp + src/hotspot/share/gc/shared/owstTaskTerminator.cpp + src/hotspot/share/gc/shared/owstTaskTerminator.hpp ! src/hotspot/share/gc/shared/taskqueue.cpp ! src/hotspot/share/gc/shared/taskqueue.hpp Changeset: 06fd6cb23acd Author: pchilanomate Date: 2018-12-07 13:59 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/06fd6cb23acd 8214148: [TESTBUG] serviceability/tmtools/jstack/WaitNotifyThreadTest.java is not doing what is expected Summary: Fixed the logic for checking method name and added checks for thread status Reviewed-by: dholmes, coleenp ! test/hotspot/jtreg/serviceability/tmtools/jstack/WaitNotifyThreadTest.java Changeset: 7cc17c043ce0 Author: coleenp Date: 2018-12-07 14:48 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/7cc17c043ce0 8214972: Uses of klass_holder() except GC need to apply GC barriers Summary: Fix klass_holder() and make all callers use it, remove holder_phantom(). Reviewed-by: eosterlund, dlong ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/classfile/classLoaderData.hpp ! src/hotspot/share/gc/g1/g1FullGCMarker.inline.hpp ! src/hotspot/share/gc/parallel/psCompactionManager.inline.hpp ! src/hotspot/share/gc/serial/markSweep.inline.hpp ! src/hotspot/share/jvmci/jvmciCompilerToVM.cpp ! src/hotspot/share/oops/instanceKlass.hpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp Changeset: 449a2ce77784 Author: coleenp Date: 2018-12-07 17:20 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/449a2ce77784 8215034: Remove old HOTSWAP conditionals Reviewed-by: dcubed, jiangli, sspitsyn ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeCache.hpp ! src/hotspot/share/interpreter/templateInterpreter.hpp ! src/hotspot/share/utilities/globalDefinitions.hpp Changeset: 06d028f7578e Author: jwilhelm Date: 2018-12-08 05:04 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/06d028f7578e 8214052: [testbug] vmTestbase/vm/compiler/CodeCacheInfoOnCompilation - wrong shell used Reviewed-by: jwilhelm Contributed-by: merkel05 at gmail.com ! test/hotspot/jtreg/vmTestbase/vm/compiler/CodeCacheInfoOnCompilation/run.sh Changeset: 583fd71c47d6 Author: dlong Date: 2018-12-08 00:56 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/583fd71c47d6 8214023: Update Graal Reviewed-by: kvn ! make/CompileJavaModules.gmk ! make/test/JtregGraalUnit.gmk ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/ByteContainer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/CodeContainer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/Container.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/GotSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/HeaderContainer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/NativeSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/ReadOnlyDataContainer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/Relocation.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/Symbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/SymbolTable.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/AMD64JELFRelocObject.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/ElfByteBuffer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/ElfContainer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/ElfHeader.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/ElfRelocEntry.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/ElfRelocTable.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/ElfSection.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/ElfSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/elf/ElfSymtab.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/JMachORelocObject.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachO.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachOByteBuffer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachOContainer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachODySymtab.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachOHeader.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachORelocEntry.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachORelocTable.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachOSection.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachOSegment.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachOSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachOSymtab.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachOTargetInfo.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/macho/MachOVersion.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/JPECoffRelocObject.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoff.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoffByteBuffer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoffContainer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoffHeader.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoffRelocEntry.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoffRelocTable.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoffSection.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoffSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoffSymtab.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/PECoffTargetInfo.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/HelloWorld.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/NativeOrderOutputStreamTest.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/ClassSearchTest.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/ClassSourceTest.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/FakeFileSupport.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/FakeSearchPath.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/SearchPathTest.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/Utils.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/directory/DirectorySourceProviderTest.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/jar/JarSourceProviderTest.java ! src/jdk.aot/share/classes/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/module/ModuleSourceProviderTest.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/AOTBackend.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/AOTCompilationTask.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/AOTCompiledClass.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/AOTCompiler.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/AOTDynamicTypeStore.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/AOTHotSpotResolvedJavaMethod.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/AOTStub.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/CallInfo.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/CallSiteRelocationInfo.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/CallSiteRelocationSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/CodeOffsets.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/Collector.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/CompilationSpec.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/DataBuilder.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/DataPatchProcessor.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ForeignCallSiteRelocationInfo.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ForeignCallSiteRelocationSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ForeignGotCallSiteRelocationSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/GraalFilters.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/InfopointProcessor.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/JavaCallSiteRelocationInfo.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/JavaMethodInfo.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/LoadedClass.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/LogPrinter.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/MarkId.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/MarkProcessor.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/MetadataBuilder.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/StubDirectCallSiteRelocationSymbol.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/StubInformation.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/Timer.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/aarch64/AArch64ELFMacroAssembler.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/aarch64/AArch64InstructionDecoder.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/amd64/AMD64ELFMacroAssembler.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/amd64/AMD64InstructionDecoder.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/ClassSearch.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/ClassSource.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/FileSupport.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/FileSystemFinder.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/SearchFor.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/SearchPath.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/SourceProvider.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/classname/ClassNameSource.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/classname/ClassNameSourceProvider.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/directory/DirectorySource.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/directory/DirectorySourceProvider.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/jar/JarFileSource.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/jar/JarSourceProvider.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/module/ModuleSource.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/module/ModuleSourceProvider.java ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/utils/NativeOrderOutputStream.java ! src/jdk.internal.vm.compiler.management/share/classes/org.graalvm.compiler.hotspot.management/src/org/graalvm/compiler/hotspot/management/HotSpotGraalManagement.java ! src/jdk.internal.vm.compiler.management/share/classes/org.graalvm.compiler.hotspot.management/src/org/graalvm/compiler/hotspot/management/HotSpotGraalRuntimeMBean.java ! src/jdk.internal.vm.compiler.management/share/classes/org.graalvm.compiler.hotspot.management/src/org/graalvm/compiler/hotspot/management/JMXServiceProvider.java ! src/jdk.internal.vm.compiler.management/share/classes/org.graalvm.compiler.hotspot.management/src/org/graalvm/compiler/hotspot/management/package-info.java ! src/jdk.internal.vm.compiler/share/classes/jdk.internal.vm.compiler.word/src/jdk/internal/vm/compiler/word/package-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives.test/src/org/graalvm/compiler/api/directives/test/BlackholeDirectiveTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives.test/src/org/graalvm/compiler/api/directives/test/ControlFlowAnchorDirectiveTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives.test/src/org/graalvm/compiler/api/directives/test/DeoptimizeDirectiveTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives.test/src/org/graalvm/compiler/api/directives/test/IterationDirectiveTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives.test/src/org/graalvm/compiler/api/directives/test/OpaqueDirectiveTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives.test/src/org/graalvm/compiler/api/directives/test/ProbabilityDirectiveTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives/src/org/graalvm/compiler/api/directives/GraalDirectives.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.replacements/src/org/graalvm/compiler/api/replacements/ClassSubstitution.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.replacements/src/org/graalvm/compiler/api/replacements/Fold.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.replacements/src/org/graalvm/compiler/api/replacements/MethodSubstitution.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.replacements/src/org/graalvm/compiler/api/replacements/MethodSubstitutionRegistry.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.replacements/src/org/graalvm/compiler/api/replacements/Snippet.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.replacements/src/org/graalvm/compiler/api/replacements/SnippetReflectionProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.replacements/src/org/graalvm/compiler/api/replacements/SnippetTemplateCache.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.runtime/src/org/graalvm/compiler/api/runtime/GraalJVMCICompiler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.runtime/src/org/graalvm/compiler/api/runtime/GraalRuntime.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.test/src/org/graalvm/compiler/api/test/Graal.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.test/src/org/graalvm/compiler/api/test/GraalAPITest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.aarch64.test/src/org/graalvm/compiler/asm/aarch64/test/AArch64MacroAssemblerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.aarch64.test/src/org/graalvm/compiler/asm/aarch64/test/TestProtectedAssembler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.aarch64/src/org/graalvm/compiler/asm/aarch64/AArch64Address.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.aarch64/src/org/graalvm/compiler/asm/aarch64/AArch64Assembler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.aarch64/src/org/graalvm/compiler/asm/aarch64/AArch64MacroAssembler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.amd64.test/src/org/graalvm/compiler/asm/amd64/test/BitOpsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.amd64.test/src/org/graalvm/compiler/asm/amd64/test/IncrementDecrementMacroTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.amd64.test/src/org/graalvm/compiler/asm/amd64/test/SimpleAssemblerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.amd64/src/org/graalvm/compiler/asm/amd64/AMD64Address.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.amd64/src/org/graalvm/compiler/asm/amd64/AMD64AsmOptions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.amd64/src/org/graalvm/compiler/asm/amd64/AMD64BaseAssembler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.sparc.test/src/org/graalvm/compiler/asm/sparc/test/BitSpecTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.sparc.test/src/org/graalvm/compiler/asm/sparc/test/SPARCAssemblerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.sparc/src/org/graalvm/compiler/asm/sparc/SPARCAddress.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.sparc/src/org/graalvm/compiler/asm/sparc/SPARCAssembler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.sparc/src/org/graalvm/compiler/asm/sparc/SPARCInstructionCounter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.sparc/src/org/graalvm/compiler/asm/sparc/SPARCMacroAssembler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.test/src/org/graalvm/compiler/asm/test/AssemblerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm/src/org/graalvm/compiler/asm/AbstractAddress.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm/src/org/graalvm/compiler/asm/AsmOptions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm/src/org/graalvm/compiler/asm/Assembler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm/src/org/graalvm/compiler/asm/Buffer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm/src/org/graalvm/compiler/asm/Label.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/BridgeMethodUtils.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/Bytecode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/BytecodeDisassembler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/BytecodeLookupSwitch.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/BytecodeProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/BytecodeStream.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/BytecodeSwitch.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/BytecodeTableSwitch.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/Bytecodes.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/Bytes.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/ResolvedJavaMethodBytecode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/ResolvedJavaMethodBytecodeProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/CompilationResult.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/DataSection.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/DisassemblerProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/HexCodeFile.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/HexCodeFileDisassemblerProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/SourceMapping.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/SourceStackTraceBailoutException.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/AArch64AddSubShiftTest.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/AArch64ConditionalSetTest.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/AArch64LogicShiftTest.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/AArch64MNegTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/AArch64MatchRuleTest.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/AArch64MultiplyAddSubTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64AddressLoweringByUse.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64AddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64ArithmeticLIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64FloatConvertOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64LIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64LIRKindTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64MoveFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64NodeLIRBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64NodeMatchRules.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64ReadNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/AArch64SuitesCreator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64.test/src/org/graalvm/compiler/core/amd64/test/AMD64AddressLoweringTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64.test/src/org/graalvm/compiler/core/amd64/test/AMD64AllocatorTest.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64.test/src/org/graalvm/compiler/core/amd64/test/AMD64MatchRuleTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64.test/src/org/graalvm/compiler/core/amd64/test/ConstantStackMoveTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64.test/src/org/graalvm/compiler/core/amd64/test/MatchRuleTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64.test/src/org/graalvm/compiler/core/amd64/test/StackStoreTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64AddressLowering.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64AddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64ArithmeticLIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64CompressAddressLowering.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64LIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64LIRKindTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64MoveFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64MoveFactoryBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64NodeLIRBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64NodeMatchRules.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/AMD64SuitesCreator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/CancellationBailoutException.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/CompilationIdentifier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/CompilationRequestIdentifier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/CompressEncoding.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/FieldIntrospection.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/Fields.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/FieldsScanner.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/GraalBailoutException.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/GraalOptions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/LIRKind.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/NumUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/PermanentBailoutException.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/RetryableBailoutException.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/SpeculativeExecutionAttacksMitigations.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/SuppressFBWarnings.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/SuppressSVMWarnings.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/UnsafeAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/alloc/BiDirectionalTraceBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/alloc/ComputeBlockOrder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/alloc/RegisterAllocationConfig.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/alloc/SingleBlockTraceBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/alloc/Trace.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/alloc/TraceBuilderResult.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/alloc/TraceMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/alloc/TraceStatisticsPrinter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/alloc/UniDirectionalTraceBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/calc/CanonicalCondition.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/calc/Condition.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/calc/FloatConvert.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/calc/FloatConvertCategory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/calc/UnsignedMath.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/cfg/AbstractBlockBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/cfg/AbstractControlFlowGraph.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/cfg/BlockMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/cfg/CFGVerifier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/cfg/DominatorOptimizationProblem.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/cfg/Loop.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/cfg/PrintableCFG.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/cfg/PrintableDominatorOptimizationProblem.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/cfg/PropertyConsumable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/CodeGenProviders.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/ConstantFieldProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/ForeignCallDescriptor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/ForeignCallLinkage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/ForeignCallsProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/JavaConstantFieldProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/LIRKindTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/AbstractObjectStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/AbstractPointerStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/ArithmeticOpTable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/ArithmeticStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/DataPointerConstant.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/FloatStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/IllegalStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/IntegerStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/ObjectStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/PrimitiveStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/RawPointerStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/Stamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/StampFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/StampPair.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/TypeReference.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/VoidStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/BitMap2D.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/CompilationAlarm.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/FrequencyEncoder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/IntList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/ReversedList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/TypeConversion.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/TypeReader.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/TypeWriter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/UnsafeAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/UnsafeArrayTypeReader.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/UnsafeArrayTypeWriter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/UnsignedLong.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/Util.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.jdk9.test/src/org/graalvm/compiler/core/jdk9/test/ea/AtomicVirtualizationTests.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.jdk9.test/src/org/graalvm/compiler/core/test/ea/AtomicVirtualizationTests.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.match.processor/src/org/graalvm/compiler/core/match/processor/MatchProcessor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCAddressLowering.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCArithmeticLIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCImmediateAddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCIndexedAddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCIntegerCompareCanonicalizationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCLIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCLIRKindTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCMoveFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCNodeLIRBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCNodeMatchRules.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/SPARCSuitesCreator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/AllocSpy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ArrayLengthProviderTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/BoxingEliminationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/BoxingTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ByteBufferTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/CheckGraalInvariants.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/CommonedConstantsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/CompareCanonicalizerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/CompareCanonicalizerTest3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConcreteSubtypeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationMulTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest10.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest11.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest12.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest13.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest14.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest4.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest5.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest6.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest7.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest8.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTest9.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConditionalEliminationTestBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ConstantArrayReadFoldingTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/CopyOfVirtualizationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/CountedLoopTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/DeMorganCanonicalizationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/DegeneratedLoopsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/DirectByteBufferTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/DontReuseArgumentSpaceTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/DumpPathTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/EnumSwitchTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/EnumValuesTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/FinalizableSubclassTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/FindUniqueConcreteMethodBugTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/FindUniqueDefaultMethodTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/FloatOptimizationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/FloatingReadTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/GraalCompilerAssumptionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/GraalCompilerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/GraalDebugHandlersFactoryTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/GraphEncoderTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/GraphResetDebugTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/GraphScheduleTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/GuardPrioritiesTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/GuardedIntrinsicTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/HashCodeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/HashMapGetTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/IfCanonicalizerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/IfReorderTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ImplicitNullCheckTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/InfopointReasonTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/InstalledCodeInvalidationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/IntegerEqualsCanonicalizerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/IntegerStampMulFoldTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/InterfaceMethodHandleTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/InvocationPluginsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/InvokeExceptionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/InvokeHintsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/LockEliminationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/LongNodeChainTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/LoopFullUnrollTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/LoopUnswitchTest.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/MatchRuleTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/MemoryArithmeticTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/MemoryGraphCanonicalizeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/MemoryScheduleTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/MergeCanonicalizerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/MethodHandleEagerResolution.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/MonitorGraphTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/NarrowingReadTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/NestedLoopTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/NodePosIteratorTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/NodePropertiesTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/OffHeapUnsafeAccessTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/OnStackReplacementTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/OptionsVerifierTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/PhiCreationTests.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ProfilingInfoTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/PushNodesThroughPiTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/PushThroughIfTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ReadAfterCheckCastTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ReassociateAndCanonicalTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ReentrantBlockIteratorTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ReferenceGetLoopTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ReflectionOptionDescriptors.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ScalarTypeSystemTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/SchedulingTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/SchedulingTest2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ShortCircuitNodeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/SimpleCFGTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/StableArrayReadFoldingTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/StampCanonicalizerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/StampMemoryAccessTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/StaticInterfaceFieldTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/StraighteningTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/SubWordReturnTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/SwitchDyingLoopTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/TrivialInliningExplosionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/TypeSystemTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/TypeWriterTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/UnbalancedMonitorsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/UncheckedInterfaceProviderTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/UnsafeReadEliminationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/UnsafeVirtualizationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/UnusedArray.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyBailoutUsage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyBailoutUsageTest.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyCallerSensitiveMethods.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyDebugUsage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyDebugUsageTest.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyFoldableMethods.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyGetOptionsUsage.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyGraphAddUsage.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyInstanceOfUsage.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyUpdateUsages.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyUsageWithEquals.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyVirtualizableTest.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyVirtualizableUsage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ZeroSignExtendTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/backend/AllocatorTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/backend/BackendTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/deopt/CompiledMethodTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/deopt/MonitorDeoptTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/deopt/RethrowDeoptMaterializeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/deopt/SafepointRethrowDeoptTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/deopt/SynchronizedMethodDeoptimizationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/CountUppercaseParallelTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/EAMergingTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/EATestBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/EarlyReadEliminationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/EscapeAnalysisTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/NestedBoxingTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/PEAAssertionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/PEAReadEliminationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/PartialEscapeAnalysisTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/PartialEscapeAnalysisTreesTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/PartialEscapeUnsafeStoreTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/PoorMansEATest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/TrufflePEATest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/UnsafeCompareAndSwapVirtualizationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/UnsafeEATest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/inlining/InliningTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/inlining/PolymorphicInliningTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/tutorial/GraalTutorial.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/tutorial/InvokeGraal.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/tutorial/StaticAnalysis.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/tutorial/StaticAnalysisTests.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/CompilationPrinter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/CompilationWrapper.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/CompilerThread.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/CompilerThreadFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/GraalCompiler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/GraalCompilerOptions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/LIRGenerationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/gen/BytecodeParserTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/gen/DebugInfoBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/gen/InstructionPrinter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/gen/NodeLIRBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/gen/package-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/ComplexMatchResult.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/ComplexMatchValue.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchPattern.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchRule.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchRuleRegistry.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchRules.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchStatement.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchStatementSet.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchableNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/match/MatchableNodes.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/package-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/CommunityCompilerConfiguration.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/EconomyCompilerConfiguration.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/EconomyHighTier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/EconomyLowTier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/EconomyMidTier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/GraphChangeMonitoringPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/HighTier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/LowTier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/phases/MidTier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/target/Backend.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug.test/src/org/graalvm/compiler/debug/test/CSVUtilTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug.test/src/org/graalvm/compiler/debug/test/DebugContextTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug.test/src/org/graalvm/compiler/debug/test/TimerKeyTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug.test/src/org/graalvm/compiler/debug/test/VersionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/AbstractKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/AccumulatedKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/Assertions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/CSVUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/CausableByCompilerAssert.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/CloseableCounter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/CounterKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/CounterKeyImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugCloseable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugConfig.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugConfigImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugDumpHandler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugDumpScope.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugFilter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugHandler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugHandlersFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugMemUseTracker.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugOptions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DebugVerifyHandler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/DiagnosticsOutputDirectory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/GlobalMetrics.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/GraalError.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/IgvDumpChannel.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/Indent.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/JavaMethodContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/KeyRegistry.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/LogStream.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/MemUseTrackerKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/MemUseTrackerKeyImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/MethodFilter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/MetricKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/PathUtilities.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/ScopeImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/TTY.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/TTYStreamProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/TimeSource.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/TimerKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/TimerKeyImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/Versions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/GraphTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/NodeBitMapTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/NodeMapTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/NodeUsagesTests.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/NodeValidationChecksTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/TestNodeInterface.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/TypedNodeIteratorTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/TypedNodeIteratorTest2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/graphio/GraphSnippetTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/graphio/NodeEncodingTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/matchers/NodeIterableContains.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/matchers/NodeIterableCount.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/matchers/NodeIterableIsEmpty.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/CachedGraph.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/Edges.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/GraalGraphError.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/Graph.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/GraphNodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/InputEdges.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/IterableNodeType.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/Node.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeBitMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeClass.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeFlood.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeIdAccessor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeInputList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeInterface.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeSourcePosition.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeStack.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeSuccessorList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeUnionFind.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeUsageIterable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeUsageIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeUsageWithModCountIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/NodeWorkList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/Position.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/SuccessorEdges.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/TypedGraphNodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/UnsafeAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/VerificationError.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/FilteredNodeIterable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/NodeIterable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/NodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/NodePredicate.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/NodePredicates.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/PredicatedProxyNodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/package-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/spi/Canonicalizable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/spi/CanonicalizerTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/spi/Simplifiable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/spi/SimplifierTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotBackend.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotBackendFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotCRuntimeCallEpilogueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotCRuntimeCallPrologueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotConstantRetrievalOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotDeoptimizeCallerOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotDeoptimizeOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotDirectStaticCallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotDirectVirtualCallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotEpilogueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotForeignCallsProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotJumpToExceptionHandlerInCallerOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotLIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotLoadAddressOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotLoadConfigValueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotLoweringProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotMoveFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotNodeLIRBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotPatchReturnAddressOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotRegisterAllocationConfig.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotReturnOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotSafepointOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotStrategySwitchOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64HotSpotUnwindOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/AArch64IndirectCallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64.test/src/org/graalvm/compiler/hotspot/amd64/test/AMD64HotSpotFrameOmissionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64.test/src/org/graalvm/compiler/hotspot/amd64/test/CompressedNullCheckTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64.test/src/org/graalvm/compiler/hotspot/amd64/test/DataPatchInConstantsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64.test/src/org/graalvm/compiler/hotspot/amd64/test/StubAVXTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64ArrayIndexOfStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64DeoptimizeOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotAddressLowering.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotBackend.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotBackendFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotCRuntimeCallEpilogueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotCRuntimeCallPrologueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotConstantRetrievalOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotCounterOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotDeoptimizeCallerOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotDirectStaticCallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotEpilogueBlockEndOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotEpilogueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotForeignCallsProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotJumpToExceptionHandlerInCallerOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotLIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotLIRKindTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotLeaveCurrentStackFrameOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotLeaveDeoptimizedStackFrameOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotLoadAddressOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotLoadConfigValueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotLoweringProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotMathIntrinsicOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotMaths.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotMove.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotMoveFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotNodeLIRBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotPatchReturnAddressOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotPushInterpreterFrameOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotRegisterAllocationConfig.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotRestoreRbpOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotSafepointOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotStrategySwitchOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotSuitesCreator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotUnwindOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotspotDirectVirtualCallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64IndirectCallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64MathStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64TailcallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.lir.test/src/org/graalvm/compiler/hotspot/lir/test/BenchmarkCounterOverflowTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.lir.test/src/org/graalvm/compiler/hotspot/lir/test/ExceedMaxOopMapStackOffset.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc.test/src/org/graalvm/compiler/hotspot/sparc/test/SPARCAllocatorTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCDeoptimizeOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotBackend.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotBackendFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotCRuntimeCallEpilogueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotCRuntimeCallPrologueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotCounterOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotDeoptimizeCallerOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotEpilogueOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotForeignCallsProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotJumpToExceptionHandlerInCallerOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotJumpToExceptionHandlerOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotLIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotLeaveCurrentStackFrameOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotLeaveDeoptimizedStackFrameOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotLoweringProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotMove.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotMoveFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotNodeLIRBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotPatchReturnAddressOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotPushInterpreterFrameOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotRegisterAllocationConfig.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotReturnOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotSafepointOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotStrategySwitchOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotUnwindOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotspotDirectStaticCallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotspotDirectVirtualCallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCIndirectCallOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/AheadOfTimeCompilationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/ArrayCopyIntrinsificationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/ArrayNewInstanceTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CRC32CSubstitutionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CRC32SubstitutionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/ClassSubstitutionsTests.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CompilationWrapperTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CompileTheWorld.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CompileTheWorldTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CompressedOopTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/ConstantPoolSubstitutionsTests.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/DataPatchTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/EliminateRedundantInitializationPhaseTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/ExplicitExceptionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/ForeignCallDeoptimizeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/GraalOSRLockTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/GraalOSRTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/GraalOSRTestBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotGraalCompilerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotGraalManagementTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotInvokeDynamicPluginTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotMethodSubstitutionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotMonitorValueTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotNmethodTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotNodeSubstitutionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotResolvedJavaFieldTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotResolvedObjectTypeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotStampMemoryAccessTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotUnsafeSubstitutionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HsErrLogTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/InstalledCodeExecuteHelperTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/JVMCIInfopointErrorTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/LoadJavaMirrorWithKlassTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/MemoryUsageBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/ObjectCloneTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/OptionsInFileTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/ReplaceConstantNodesPhaseTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/TestIntrinsicCompiles.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/TestSHASubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/WriteBarrierAdditionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/WriteBarrierVerificationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/AOTGraalHotSpotVMConfig.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/BootstrapWatchDog.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/CommunityCompilerConfigurationFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/CompilationCounters.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/CompilationStatistics.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/CompilationTask.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/CompilationWatchDog.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/CompilerConfigurationFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/CompilerRuntimeHotSpotVMConfig.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/EconomyCompilerConfigurationFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotBackend.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotBackendFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotCodeCacheListener.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotCompilationIdentifier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotCompiledCodeBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotCounterOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotDataBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotDebugInfoBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotForeignCallLinkage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotForeignCallLinkageImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalCompiler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalCompilerFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalJVMCIServiceLocator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalManagementRegistration.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalOptionValues.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalRuntime.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalRuntimeProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalVMEventListener.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotHostBackend.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotInstructionProfiling.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotLIRGenerationResult.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotLIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotLockStack.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotNodeLIRBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotReferenceMapBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotReplacementsImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotTTYStreamProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/JVMCIVersionCheck.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/NodeCostDumpUtil.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/PrintStreamOptionKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/WeakClassLoaderSet.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/debug/BenchmarkCounters.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/lir/HotSpotZapRegistersPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/AddressLoweringHotSpotSuitesProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/DefaultHotSpotLoweringProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotAOTProfilingPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotClassInitializationPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotConstantFieldProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotConstantLoadAction.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotDisassemblerProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotForeignCallsProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotForeignCallsProviderImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotGraalConstantFieldProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotGraphBuilderPlugins.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotHostForeignCallsProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotInvocationPlugins.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotInvokeDynamicPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotLoweringProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotNodePlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotProfilingPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotProviders.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotRegisters.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotRegistersProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotSnippetReflectionProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotStampProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotSuitesProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotUnsafeSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotWordOperationPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/AcquiredCASLockNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/AllocaNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/ArrayRangeWriteBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/BeginLockScopeNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/ComputeObjectAddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/CurrentJavaThreadNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/CurrentLockNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/DeoptimizeCallerNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/DeoptimizingStubCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/DimensionsNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/EndLockScopeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/FastAcquireBiasedLockNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/G1ArrayRangePostWriteBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/G1ArrayRangePreWriteBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/G1PostWriteBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/G1PreWriteBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/G1ReferentFieldReadBarrier.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/GetObjectAddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/GraalHotSpotVMConfigNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/HotSpotCompressionNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/HotSpotDirectCallTargetNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/HotSpotIndirectCallTargetNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/JumpToExceptionHandlerInCallerNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/JumpToExceptionHandlerNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/LoadIndexedPointerNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/MonitorCounterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/ObjectWriteBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/PatchReturnAddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/SerialArrayRangeWriteBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/SerialWriteBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/StubForeignCallNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/StubStartNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/VMErrorNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/WriteBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/EncodedSymbolNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/InitializeKlassNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/InitializeKlassStubCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/LoadConstantIndirectlyFixedNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/LoadConstantIndirectlyNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/LoadMethodCountersIndirectlyNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/LoadMethodCountersNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/ResolveConstantNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/ResolveConstantStubCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/ResolveDynamicConstantNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/ResolveDynamicStubCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/ResolveMethodAndLoadCountersNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/ResolveMethodAndLoadCountersStubCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/profiling/ProfileBranchNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/profiling/ProfileInvokeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/profiling/ProfileNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/profiling/ProfileWithNotificationNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/profiling/RandomSeedNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/type/HotSpotNarrowOopStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/type/KlassPointerStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/type/MetaspacePointerStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/type/MethodCountersPointerStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/type/MethodPointerStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/package-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/AheadOfTimeVerificationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/LoadJavaMirrorWithKlassPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/OnStackReplacementPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/WriteBarrierAdditionPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/WriteBarrierVerificationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/aot/AOTInliningPolicy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/aot/EliminateRedundantInitializationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/aot/ReplaceConstantNodesPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/profiling/FinalizeProfileNodesPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/AESCryptSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/AssertionSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/BigIntegerSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/CRC32CSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/CRC32Substitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/CallSiteTargetNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/CipherBlockChainingSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ClassGetHubNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/EncodedSymbolConstant.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/HashCodeSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/HotSpotArraySubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/HotSpotClassSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/HotSpotReplacementsUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/HotspotSnippetsOptions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/HubGetClassNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/IdentityHashCodeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/InstanceOfSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/KlassLayoutHelperNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/LoadExceptionObjectSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/MonitorSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/NewObjectSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ObjectCloneNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ObjectCloneSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ObjectSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ReflectionGetCallerClassNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ReflectionSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/SHA2Substitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/SHA5Substitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/SHASubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/StringToBytesSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ThreadSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/TypeCheckSnippetUtils.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/UnsafeAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/UnsafeLoadSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/WriteBarrierSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/aot/ResolveConstantSnippets.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopySnippets.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyWithSlowPathNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/CheckcastArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/GenericArrayCopyCallNode.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/HotSpotArraycopySnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/profiling/ProbabilisticProfileSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/profiling/ProfileSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/ArrayStoreExceptionStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/ClassCastExceptionStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/CreateExceptionStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/DivisionByZeroExceptionStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/ExceptionHandlerStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/ForeignCallStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/NullPointerExceptionStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/SnippetStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/Stub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/StubCompilationIdentifier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/StubOptions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/StubUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/UnwindExceptionToCallerStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/VerifyOopStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/word/HotSpotOperation.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/word/HotSpotWordTypes.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/word/KlassPointer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/word/MetaspacePointer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/word/MethodCountersPointer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/word/MethodPointer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/word/PointerCastNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/BciBlockMapping.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/BytecodeParser.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/BytecodeParserOptions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/ComputeLoopFrequenciesClosure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/DefaultSuitesCreator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/FrameStateBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/GraphBuilderPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/JsrNotSupportedBailout.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/JsrScope.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/LargeLocalLiveness.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/LocalLiveness.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/SmallLocalLiveness.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/SuitesProviderBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/JTTTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/backend/ConstantPhiTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/backend/EmptyMethodTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/backend/LargeConstantSectionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_aaload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_aaload_1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_aastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_aload_0.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_aload_1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_aload_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_aload_3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_anewarray.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_areturn.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_arraylength.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_athrow.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_baload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_bastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_caload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_castore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_checkcast01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_checkcast02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_checkcast03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_d2f.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_d2i01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_d2i02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_d2l01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_d2l02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_d2l03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dadd.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_daload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp06.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp07.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp08.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp09.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dcmp10.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ddiv.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dmul.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dneg.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dneg2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_double_base.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_drem.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dreturn.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dsub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_dsub2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_f2d.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_f2i01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_f2i02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_f2l01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_f2l02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fadd.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_faload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp06.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp07.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp08.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp09.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fcmp10.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fdiv.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fload_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_float_base.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fmul.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fneg.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_frem.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_freturn.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_fsub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield_b.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield_c.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield_d.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield_f.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield_i.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield_l.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield_o.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield_s.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getfield_z.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getstatic_b.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getstatic_c.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getstatic_d.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getstatic_f.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getstatic_i.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getstatic_l.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getstatic_s.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_getstatic_z.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_i2b.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_i2c.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_i2d.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_i2f.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_i2l.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_i2s.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iadd.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iadd2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iadd3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iadd_const0.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iadd_const1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iadd_const2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iadd_const3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iaload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iand.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iconst.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_idiv.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_idiv2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_idiv_overflow.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifeq.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifeq_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifeq_3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifge.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifge_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifge_3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifgt.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ificmplt1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ificmplt2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ificmpne1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ificmpne2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifle.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iflt.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifne.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifnonnull.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifnonnull_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifnonnull_3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifnull.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifnull_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ifnull_3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iinc_1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iinc_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iinc_3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iinc_4.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iload_0.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iload_0_1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iload_0_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iload_1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iload_1_1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iload_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iload_3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_imul.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ineg.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_instanceof.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_instanceof01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_invokeinterface.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_invokespecial.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_invokespecial2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_invokestatic.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_invokevirtual.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ior.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_irem.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_irem2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_irem3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_irem4.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ireturn.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ishl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ishr.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_isub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_iushr.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ixor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_l2d.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_l2f.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_l2i.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_l2i_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ladd.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ladd2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_laload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_land.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lcmp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldc_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldc_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldc_03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldc_04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldc_05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldc_06.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldiv.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldiv2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldiv3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_ldiv_overflow.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lload_0.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lload_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lload_1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lload_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lload_3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lmul.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lneg.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lookupswitch01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lookupswitch02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lookupswitch03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lookupswitch04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lookupswitch05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lrem.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lrem2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lreturn.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lshl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lshr.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lshr02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lsub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lushr.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_lxor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_monitorenter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_monitorenter02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_multianewarray01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_multianewarray02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_multianewarray03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_multianewarray04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_new.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_newarray.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_newarray_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_putfield_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_putfield_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_putfield_03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_putfield_04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_putstatic.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_saload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_sastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_tableswitch.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_tableswitch2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_tableswitch3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_tableswitch4.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_wide01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/BC_wide02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_aaload0.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_aaload1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_aastore0.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_aastore1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_anewarray.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_arraylength.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_athrow0.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_athrow1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_athrow2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_athrow3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_baload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_bastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_caload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_castore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_checkcast.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_checkcast1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_checkcast2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_checkcast3.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_checkcast4.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_checkcast5.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_checkcast6.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_daload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_dastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_faload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_fastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_getfield.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_getfield1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_iaload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_iastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_idiv.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_idiv2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_invokespecial01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_invokevirtual01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_invokevirtual02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_irem.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_laload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_lastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_ldiv.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_ldiv2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_lrem.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_monitorenter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_multianewarray.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_newarray.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_putfield.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_saload.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/BC_sastore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Loop01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Loop02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Loop03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NASE_1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NASE_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_00.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_06.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_07.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_08.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_09.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_10.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_NPE_11.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_StackOverflowError_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_StackOverflowError_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_StackOverflowError_03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Two01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Two02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Two03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Unresolved.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Unresolved01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Unresolved02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Catch_Unresolved03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Except_Locals.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Except_Synchronized01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Except_Synchronized02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Except_Synchronized03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Except_Synchronized04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Except_Synchronized05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Finally01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Finally02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/StackTrace_AIOOBE_00.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/StackTrace_CCE_00.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/StackTrace_NPE_00.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/StackTrace_NPE_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/StackTrace_NPE_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/StackTrace_NPE_03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_InCatch01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_InCatch02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_InCatch03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_InNested.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_NPE_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_Synchronized01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_Synchronized02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_Synchronized03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_Synchronized04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/Throw_Synchronized05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/UntrustedInterfaces.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_allocate01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_allocate02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_allocate03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_allocate04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_array01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_array02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_array03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_array04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_control01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_control02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_convert01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_count.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_dead01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_demo01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_field01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_field02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_field03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_field04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_idea.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_inline01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_inline02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_invoke01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_life.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_nest01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_nest02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_scope01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_scope02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_series.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/HP_trees01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotspot/Test6186134.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotspot/Test6196102.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotspot/Test6753639.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotspot/Test6823354.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotspot/Test6850611.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotspot/Test7005594.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/CharacterBits.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/Class_getName.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/DivideUnsigned.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/EnumMap01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/EnumMap02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/IntegerBits.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/LongBits.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/ShortBits.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/System_currentTimeMillis01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/System_currentTimeMillis02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/System_nanoTime01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/System_nanoTime02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/System_setOut.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/Thread_setName.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/UnsafeAccess01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/Unsafe_compareAndSwap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/jdk/Unsafe_compareAndSwapNullCheck.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Boxed_TYPE_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Bridge_method01.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/CheckedListTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/ClassLoader_loadClass01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_Literal01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_asSubclass01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_cast01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_cast02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_forName01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_forName02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_forName03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_forName04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_forName05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_getComponentType01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_getInterfaces01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_getModifiers01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_getModifiers02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_getName01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_getName02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_getSimpleName01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_getSimpleName02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_getSuperClass01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isArray01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isAssignableFrom01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isAssignableFrom02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isAssignableFrom03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isInstance01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isInstance02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isInstance03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isInstance04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isInstance05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isInstance06.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isInstance07.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isInterface01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Class_isPrimitive01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Double_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Double_conditional.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Double_toString.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Float_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Float_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Float_03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Float_conditional.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_greater01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_greater02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_greater03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_greaterEqual01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_greaterEqual02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_greaterEqual03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_less01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_less02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_less03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_lessEqual01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_lessEqual02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Int_lessEqual03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/JDK_ClassLoaders01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/JDK_ClassLoaders02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/LambdaEagerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_greater01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_greater02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_greater03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_greaterEqual01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_greaterEqual02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_greaterEqual03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_less01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_less02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_less03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_lessEqual01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_lessEqual02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_lessEqual03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_reverseBytes01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Long_reverseBytes02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_abs.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_cos.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_exact.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_exp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_log.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_log10.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_pow.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_round.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_sin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_sqrt.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Math_tan.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_clone01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_clone02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_equals01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_getClass01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_hashCode01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_hashCode02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_notify01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_notify02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_notifyAll01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_notifyAll02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_toString01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_toString02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_wait01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_wait02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/Object_wait03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/ProcessEnvironment_init.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/StringCoding_Scale.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/String_intern01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/String_intern02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/String_intern03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/String_valueOf01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/System_identityHashCode01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/lang/UnaryMath.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/DegeneratedLoop.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop06.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop07.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop07_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop08.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop09.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop09_2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop11.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop12.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop13.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop14.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop15.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop16.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/Loop17.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopEscape.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopInline.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopLastIndexOf.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopNewInstance.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopParseLong.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopPhi.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopPhiResolutionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopSpilling.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopSwitch01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/LoopUnroll.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/SpillLoopPhiVariableAtDefinition.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/ArrayCompare01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/ArrayCompare02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BC_invokevirtual2.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigByteParams01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigDoubleParams02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigFloatParams01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigFloatParams02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigIntParams01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigIntParams02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigInterfaceParams01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigLongParams02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigMixedParams01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigMixedParams02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigMixedParams03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigMixedParams04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigObjectParams01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigObjectParams02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigParamsAlignment.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigShortParams01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/BigVirtualParams01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/Bubblesort.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/ConstantLoadTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/Fibonacci.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/FloatingReads.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/InvokeInterface_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/InvokeInterface_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/InvokeInterface_03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/InvokeInterface_04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/InvokeVirtual_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/InvokeVirtual_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/Matrix01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/ReferenceMap01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/StrangeFrames.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/String_format01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/String_format02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_String01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_Unroll.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_boolean01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_byte01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_char01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_double01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_float01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_int01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_long01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/micro/VarArgs_short01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ABCE_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ABCE_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ABCE_03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ArrayCopy01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ArrayCopy02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ArrayCopy03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ArrayCopy04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ArrayCopy05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ArrayCopy06.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ArrayCopyGeneric.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ArrayLength01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_idiv_16.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_idiv_4.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_imul_16.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_imul_4.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_ldiv_16.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_ldiv_4.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_lmul_16.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_lmul_4.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_lshr_C16.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_lshr_C24.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BC_lshr_C32.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BlockSkip01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/BoxingIdentity.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Cmov01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Cmov02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Conditional01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ConditionalElimination01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ConditionalElimination02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ConvertCompare.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/DeadCode01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/DeadCode02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Cast01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Convert01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Convert02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Convert03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Convert04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Double01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Double02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Double03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Double04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Float01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Float02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Float03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_InstanceOf01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Int01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Int02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Long01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Long02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Fold_Math01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/GuardMovement.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/InferStamp01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Inline01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Inline02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/LLE_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/List_reorder_bug.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Logic0.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/LongToSomethingArray01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NCE_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NCE_02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NCE_03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NCE_04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NCE_FlowSensitive01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NCE_FlowSensitive02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NCE_FlowSensitive03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NCE_FlowSensitive04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NCE_FlowSensitive05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Narrow_byte01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Narrow_byte02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Narrow_byte03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Narrow_char01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Narrow_char02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Narrow_char03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Narrow_short01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Narrow_short02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Narrow_short03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/NestedLoop_EA.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Phi01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Phi02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Phi03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/ReassociateConstants.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Convert01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Double01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Float01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Int01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Int02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Int03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Int04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_IntShift01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_IntShift02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Long01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Long02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Long03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_Long04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_LongShift01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Reduce_LongShift02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/SchedulingBug_01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/SignExtendShort.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Switch01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/Switch02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/TrichotomyTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/TypeCastElem.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/UnsafeDeopt.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Cast01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Cast02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Convert01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Convert02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Double01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Double02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Double03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Field01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Field02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Float01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Float02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_InstanceOf01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_InstanceOf02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_InstanceOf03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Int01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Int02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Int03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Long01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Long02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Long03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/VN_Loop01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_get01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_get02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_get03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_getBoolean01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_getByte01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_getChar01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_getDouble01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_getFloat01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_getInt01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_getLength01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_getLong01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_getShort01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_newInstance01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_newInstance02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_newInstance03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_newInstance04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_newInstance05.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_newInstance06.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_set01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_set02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_set03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_setBoolean01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_setByte01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_setChar01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_setDouble01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_setFloat01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_setInt01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_setLong01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Array_setShort01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_getDeclaredField01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_getDeclaredMethod01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_getField01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_getField02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_getMethod01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_getMethod02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_newInstance01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_newInstance02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_newInstance03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_newInstance06.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Class_newInstance07.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Field_get01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Field_get02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Field_get03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Field_get04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Field_getType01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Field_set01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Field_set02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Field_set03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Invoke_except01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Invoke_main01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Invoke_main02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Invoke_main03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Invoke_virtual01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Method_getParameterTypes01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/reflect/Method_getReturnType01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Object_wait01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/ThreadLocal01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/ThreadLocal02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/ThreadLocal03.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_currentThread01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_getState01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_getState02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_holdsLock01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_isAlive01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_isInterrupted01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_isInterrupted04.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_new01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_new02.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/Thread_setPriority01.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64AddressValue.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64ArithmeticLIRGeneratorTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64ArithmeticOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64ArrayCompareToOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64ArrayEqualsOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64BitManipulationOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64BlockEndOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64BreakpointOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64ByteSwapOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64CCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64Call.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64Compare.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64ControlFlow.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64FrameMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64FrameMapBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64LIRFlagsVersioned.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64LIRInstruction.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64Move.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64PauseOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64PrefetchOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64ReinterpretOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64RestoreRegistersOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64SaveRegistersOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64SignExtendOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64SpeculativeBarrier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.aarch64/src/org/graalvm/compiler/lir/aarch64/AArch64Unary.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64AddressValue.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64Arithmetic.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ArithmeticLIRGeneratorTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ArrayCompareToOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ArrayEqualsOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64Binary.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64BinaryConsumer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64BlockEndOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64BreakpointOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ByteSwapOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64CCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ClearRegisterOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ControlFlow.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64FrameMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64FrameMapBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64LFenceOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64LIRInstruction.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64MathIntrinsicBinaryOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64MathIntrinsicUnaryOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64Move.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64MulDivOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64PauseOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64PrefetchOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ReadTimestampCounter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64RestoreRegistersOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64SaveRegistersOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ShiftOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64SignExtendOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64Unary.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64VZeroUpper.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ZapRegistersOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/AMD64ZapStackOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/phases/StackMoveOptimizationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.jtt/src/org/graalvm/compiler/lir/jtt/ConstantStackCastTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.jtt/src/org/graalvm/compiler/lir/jtt/LIRTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.jtt/src/org/graalvm/compiler/lir/jtt/LIRTestSpecification.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.jtt/src/org/graalvm/compiler/lir/jtt/LIRTestTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.jtt/src/org/graalvm/compiler/lir/jtt/SPARCBranchBailoutTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.jtt/src/org/graalvm/compiler/lir/jtt/StackMoveTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.jtt/src/org/graalvm/compiler/lir/jtt/StackStoreLoadTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCAddressValue.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCArithmetic.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCArrayEqualsOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCBitManipulationOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCBlockEndOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCBreakpointOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCByteSwapOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCControlFlow.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCDelayedControlTransfer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCFloatCompareOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCFrameMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCFrameMapBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCImmediateAddressValue.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCIndexedAddressValue.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCJumpOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCLIRInstruction.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCLIRInstructionMixin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCLoadConstantTableBaseOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCMove.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCOP3Op.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCOPFOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCPauseOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCPrefetchOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCSaveRegistersOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/SPARCTailDelayedLIRInstruction.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.test/src/org/graalvm/compiler/lir/test/CompositeValueReplacementTest1.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.test/src/org/graalvm/compiler/lir/test/GenericValueMapTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.test/src/org/graalvm/compiler/lir/test/alloc/trace/TraceGlobalMoveResolutionMappingTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/BailoutAndRestartBackendException.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/CompositeValue.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/CompositeValueClass.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/ConstantValue.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/ControlFlowOptimizer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/EdgeMoveOptimizer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/FullInfopointOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/InstructionStateProcedure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/InstructionValueConsumer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/InstructionValueProcedure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/LIR.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/LIRFrameState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/LIRInsertionBuffer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/LIRInstruction.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/LIRInstructionClass.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/LIRIntrospection.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/LIRValueUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/LIRVerifier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/LabelRef.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/NullCheckOptimizer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/Opcode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/RedundantMoveElimination.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/StandardOp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/StateProcedure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/SwitchStrategy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/ValueConsumer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/ValueProcedure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/Variable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/VirtualStackSlot.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/AllocationStageVerifier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/OutOfRegistersException.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/SaveCalleeSaveRegisters.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/Interval.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/IntervalWalker.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScan.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanAllocationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanAssignLocationsPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanEliminateSpillMovePhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanIntervalDumper.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanLifetimeAnalysisPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanOptimizeSpillPositionPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanRegisterAllocationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanResolveDataFlowPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/LinearScanWalker.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/MoveResolver.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/OptimizingLinearScanWalker.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/Range.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/RegisterVerifier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/ssa/SSALinearScan.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/ssa/SSALinearScanEliminateSpillMovePhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/ssa/SSALinearScanLifetimeAnalysisPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/ssa/SSALinearScanResolveDataFlowPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/ssa/SSAMoveResolver.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/DefaultTraceRegisterAllocationPolicy.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/GlobalLivenessAnalysisPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/GlobalLivenessInfo.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/ShadowedRegisterValue.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceAssertions.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceBuilderPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceGlobalMoveResolutionPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceGlobalMoveResolver.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceRegisterAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceRegisterAllocationPolicy.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceUtil.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TrivialTraceAllocator.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/bu/BottomUpAllocator.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/FixedInterval.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/FixedRange.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/IntervalHint.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/RegisterVerifier.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceInterval.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanAssignLocationsPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanEliminateSpillMovePhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanLifetimeAnalysisPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanRegisterAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanResolveDataFlowPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanWalker.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLocalMoveResolver.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/ArrayDataPointerConstant.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/CompilationResultBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/CompilationResultBuilderFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/DataBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/FrameContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/ConstantLoadOptimization.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/ConstantTree.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/ConstantTreeAnalyzer.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/DefUseTree.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/UseEntry.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/VariableMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/debug/IntervalDumper.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/debug/LIRGenerationDebugContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/dfa/LocationMarker.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/dfa/LocationMarkerPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/dfa/MarkBasePointersPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/dfa/RegStackValueSet.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/dfa/UniqueWorkList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/framemap/FrameMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/framemap/FrameMapBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/framemap/FrameMapBuilderImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/framemap/FrameMapBuilderTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/framemap/ReferenceMapBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/framemap/SimpleVirtualStackSlot.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/framemap/VirtualStackSlotRange.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/ArithmeticLIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/ArithmeticLIRGeneratorTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/BlockValueMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/DiagnosticLIRGeneratorTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/LIRGenerationResult.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/LIRGenerator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/LIRGeneratorTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/PhiResolver.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/VerifyingMoveFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/AllocationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/AllocationStage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/EconomyAllocationStage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/EconomyPostAllocationOptimizationStage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/EconomyPreAllocationOptimizationStage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/GenericContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/LIRPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/LIRPhaseSuite.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/LIRSuites.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/PostAllocationOptimizationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/PostAllocationOptimizationStage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/PreAllocationOptimizationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/profiling/MethodProfilingPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/profiling/MoveProfiler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/profiling/MoveProfilingPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/profiling/MoveType.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/ssa/SSAUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/ssa/SSAVerifier.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/FixPointIntervalBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/LSStackSlotAllocator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/SimpleStackSlotAllocator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/StackInterval.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/StackIntervalDumper.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/StackSlotAllocatorUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/util/GenericValueMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/util/IndexedValueMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/util/RegisterMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/util/ValueMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/util/ValueSet.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/util/VariableVirtualStackValueMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/ContextlessLoopPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/LoopFullUnrollPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/LoopPartialUnrollPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/LoopPeelingPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/LoopPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/LoopSafepointEliminationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/LoopTransformations.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/LoopUnswitchingPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/ReassociateInvariantPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.test/src/org/graalvm/compiler/loop/test/LoopPartialUnrollTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.test/src/org/graalvm/compiler/loop/test/LoopsDataTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/BasicInductionVariable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/CountedLoopInfo.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/DefaultLoopPolicies.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/DerivedConvertedInductionVariable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/DerivedInductionVariable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/DerivedOffsetInductionVariable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/DerivedScaledInductionVariable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/InductionVariable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/LoopEx.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/LoopFragment.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/LoopFragmentInside.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/LoopFragmentInsideBefore.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/LoopFragmentInsideFrom.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/LoopFragmentWhole.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/LoopPolicies.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/LoopsData.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/MathUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/ConditionalEliminationBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/FrameStateAssigmentPhaseBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/GraalBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/GraphCopyBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/NodeBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/SchedulePhaseBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/TestJMHWhitebox.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/util/FrameStateAssignmentState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/util/GraalState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/util/GraalUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/util/GraphState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/util/MethodSpec.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/util/NodesState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/util/ScheduleState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/CompileTimeBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/GraalCompilerState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/RegisterAllocationTimeBenchmark.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/ControlFlowGraphState.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/TraceBuilderBenchmark.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/TraceLSRAIntervalBuildingBench.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodeinfo.processor/src/org/graalvm/compiler/nodeinfo/processor/ElementException.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodeinfo.processor/src/org/graalvm/compiler/nodeinfo/processor/GraphNodeProcessor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodeinfo/src/org/graalvm/compiler/nodeinfo/InputType.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodeinfo/src/org/graalvm/compiler/nodeinfo/NodeCycles.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodeinfo/src/org/graalvm/compiler/nodeinfo/NodeInfo.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodeinfo/src/org/graalvm/compiler/nodeinfo/NodeSize.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodeinfo/src/org/graalvm/compiler/nodeinfo/StructuralInput.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodeinfo/src/org/graalvm/compiler/nodeinfo/Verbosity.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/AbstractObjectStampTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/AddNodeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/IfNodeCanonicalizationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/IntegerStampTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/LoopLivenessTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/LoopPhiCanonicalizerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/NegateNodeCanonicalizationTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/ObjectStampJoinTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/ObjectStampMeetTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/ObjectStampTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/PrimitiveStampBoundaryTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/ReinterpretStampDoubleToLongTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/ReinterpretStampFloatToIntTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/ReinterpretStampIntToFloatTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/ReinterpretStampLongToDoubleTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/ReinterpretStampTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/ShortCircuitOrNodeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/StaticFieldAccessTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/StructuredGraphTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/AbstractBeginNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/AbstractDeoptimizeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/AbstractEndNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/AbstractFixedGuardNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/AbstractLocalNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/AbstractMergeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/AbstractStateSplit.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ArithmeticOperation.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/BeginNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/BeginStateSplitNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/BinaryOpLogicNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/BreakpointNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/CallTargetNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/Cancellable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/CanonicalizableLocation.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/CompressionNode.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ComputeObjectAddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ConditionAnchorNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ConstantNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ControlSinkNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ControlSplitNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/DeoptimizeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/DeoptimizingFixedWithNextNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/DeoptimizingGuard.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/DeoptimizingNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/DirectCallTargetNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/DynamicDeoptimizeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/DynamicPiNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/EncodedGraph.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/EndNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/EntryMarkerNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/EntryProxyNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/FieldLocationIdentity.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/FixedGuardNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/FixedNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/FixedNodeInterface.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/FixedWithNextNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/FloatingAnchoredNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/FloatingGuardedNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/FrameState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/FullInfopointNode.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/GetObjectAddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/GraphDecoder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/GraphEncoder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/GuardNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/GuardPhiNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/GuardProxyNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/GuardedValueNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/IfNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/IndirectCallTargetNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/InliningLog.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/Invoke.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/InvokeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/InvokeWithExceptionNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/KillingBeginNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/LogicConstantNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/LogicNegationNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/LogicNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/LoopBeginNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/LoopEndNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/LoopExitNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/LoweredCallTargetNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/MergeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/NamedLocationIdentity.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/NodeView.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ParameterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/PauseNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/PhiNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/PiArrayNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/PiNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/PrefetchAllocateNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ProxyNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ReturnNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/SafepointNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ShortCircuitOrNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/SimplifyingGraphDecoder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/SnippetAnchorNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/StartNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/StateSplit.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/StaticDeoptimizingNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/StructuredGraph.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/TypeCheckHints.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/UnaryOpLogicNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/UnwindNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ValueNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ValueNodeInterface.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ValueNodeUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ValuePhiNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ValueProxyNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/VirtualState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/AbsNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/AndNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/BinaryArithmeticNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/BinaryNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/ConvertNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/FixedBinaryNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/FloatConvertNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/FloatDivNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/FloatEqualsNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/FloatLessThanNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/FloatingNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/IntegerBelowNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/IntegerConvertNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/IntegerDivRemNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/IntegerEqualsNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/IntegerTestNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/IsNullNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/LeftShiftNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/MulNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/NarrowNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/NarrowableArithmeticNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/NegateNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/NormalizeCompareNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/NotNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/ObjectEqualsNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/OrNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/PointerEqualsNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/ReinterpretNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/RemNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/RightShiftNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/ShiftNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/SignExtendNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/SignedDivNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/SignedRemNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/SqrtNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/SubNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/UnaryArithmeticNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/UnaryNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/UnpackEndianHalfNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/UnsignedDivNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/UnsignedRemNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/UnsignedRightShiftNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/XorNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/ZeroExtendNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/cfg/Block.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/cfg/ControlFlowGraph.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/cfg/HIRLoop.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/cfg/LocationSet.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/BindToRegisterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/BlackholeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/ControlFlowAnchorNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/ControlFlowAnchored.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/DynamicCounterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/SpillRegistersNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/StringToBytesNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/VerifyHeapNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/debug/WeakCounterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/AnchoringNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/ArrayRangeWrite.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/BoxNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/BranchProbabilityNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/FixedValueAnchorNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/ForeignCallNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/GetClassNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/GuardedNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/GuardedUnsafeLoadNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/GuardingNode.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/HubGetClassNodeInterface.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/IntegerSwitchNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/JavaReadNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/JavaWriteNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/LoadArrayComponentHubNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/LoadHubNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/LoadMethodNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/MembarNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/MonitorEnter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/MonitorExit.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/NullCheckNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/OSRLocalNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/OSRLockNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/OSRMonitorEnterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/OSRStartNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/OpaqueNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/RawLoadNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/RawStoreNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/StateSplitProxyNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/StoreHubNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/SwitchNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/UnboxNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/UnsafeAccessNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/UnsafeCopyNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/UnsafeMemoryLoadNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/UnsafeMemoryStoreNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/ValueAnchorNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/ClassInitializationPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/ForeignCallPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/GeneratedInvocationPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/InlineInvokePlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/IntrinsicContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/InvocationPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/InvocationPlugins.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/InvokeDynamicPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/LoopExplosionPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/MethodSubstitutionPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/NodeIntrinsicPluginFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/NodePlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/ParameterPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/ProfilingPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/graphbuilderconf/TypePlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AbstractCompareAndSwapNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AbstractNewArrayNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AbstractNewObjectNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AbstractUnsafeCompareAndSwapNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AccessArrayNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AccessFieldNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AccessIndexedNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AccessMonitorNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/ArrayLengthNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AtomicReadAndAddNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/AtomicReadAndWriteNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/ClassIsAssignableFromNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/DynamicNewArrayNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/DynamicNewInstanceNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/ExceptionObjectNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/FinalFieldBarrierNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/ForeignCallDescriptors.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/InstanceOfDynamicNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/InstanceOfNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/LoadExceptionObjectNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/LoadFieldNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/LoadIndexedNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/LogicCompareAndSwapNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/LoweredAtomicReadAndWriteNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/MethodCallTargetNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/MonitorEnterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/MonitorExitNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/MonitorIdNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/NewArrayNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/NewInstanceNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/NewMultiArrayNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/RawMonitorEnterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/RegisterFinalizerNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/StoreFieldNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/StoreIndexedNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/TypeSwitchNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/UnsafeCompareAndExchangeNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/ValueCompareAndSwapNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/AbstractMemoryCheckpoint.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/AbstractWriteNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/Access.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/FixedAccessNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/FloatableAccessNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/FloatingAccessNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/FloatingReadNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/HeapAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/LIRLowerableAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/MemoryAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/MemoryAnchorNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/MemoryCheckpoint.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/MemoryMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/MemoryMapNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/MemoryNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/MemoryPhiNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/ReadNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/WriteNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/address/AddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/memory/address/OffsetAddressNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/ArithmeticLIRLowerable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/ArrayLengthProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/LIRLowerable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/LimitedValueProxy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/Lowerable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/LoweringProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/LoweringTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/MemoryProxy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/NodeLIRBuilderTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/NodeValueMap.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/NodeWithState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/Proxy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/Replacements.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/StampInverter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/StampProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/UncheckedInterfaceProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/ValueProxy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/Virtualizable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/VirtualizableAllocation.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/VirtualizerTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/type/NarrowOopStamp.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/type/StampTool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/util/ConstantFoldUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/util/GraphUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/util/JavaConstantFormattable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/util/JavaConstantFormatter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/AllocatedObjectNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/CommitAllocationNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/EnsureVirtualizedNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/EscapeObjectState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/LockState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/VirtualArrayNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/VirtualBoxingNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/VirtualInstanceNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/VirtualObjectNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options.processor/src/org/graalvm/compiler/options/processor/OptionProcessor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options.test/src/org/graalvm/compiler/options/test/NestedBooleanOptionKeyTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options.test/src/org/graalvm/compiler/options/test/TestOptionKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/EnumOptionKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/ModifiableOptionValues.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/NestedBooleanOptionKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/Option.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/OptionDescriptor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/OptionDescriptors.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/OptionKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/OptionType.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/OptionValues.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/OptionsParser.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common.test/src/org/graalvm/compiler/phases/common/test/StampFactoryTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/AbstractInliningPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/AddressLoweringByUsePhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/AddressLoweringPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/CanonicalizerPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/ConditionalEliminationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/ConvertDeoptimizeToGuardPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/DeadCodeEliminationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/DeoptimizationGroupingPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/ExpandLogicPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/FixReadsPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/FloatingReadPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/FrameStateAssignmentPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/GuardLoweringPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/IncrementalCanonicalizerPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/InsertGuardFencesPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/IterativeConditionalEliminationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/LazyValue.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/LockEliminationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/LoopSafepointInsertionPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/LoweringPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/NonNullParametersPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/ProfileCompiledMethodsPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/PropagateDeoptimizeProbabilityPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/RemoveValueProxyPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/UseTrappingNullChecksPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/VerifyHeapAtReturnPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/InliningPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/InliningUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/info/AbstractInlineInfo.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/info/AssumptionInlineInfo.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/info/ExactInlineInfo.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/info/InlineInfo.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/info/MultiTypeGuardInlineInfo.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/info/TypeGuardInlineInfo.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/info/elem/Inlineable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/info/elem/InlineableGraph.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/policy/AbstractInliningPolicy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/policy/GreedyInliningPolicy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/policy/InlineEverythingPolicy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/policy/InlineMethodSubstitutionsPolicy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/policy/InliningPolicy.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/walker/CallsiteHolder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/walker/CallsiteHolderExplorable.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/walker/ComputeInliningRelevance.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/walker/InliningData.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/walker/InliningIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/walker/MethodInvocation.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/jmx/HotSpotMBeanOperationProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/util/EconomicSetNodeEventListener.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/BasePhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/ClassTypeSequence.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/LazyName.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/OptimisticOptimizations.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/Phase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/PhaseSuite.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/VerifyPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/contract/NodeCostUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/contract/PhaseSizeContract.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/contract/VerifyNodeCosts.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/FixedNodeRelativeFrequencyCache.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/InferStamps.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/MergeableState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/PostOrderNodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/ReentrantBlockIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/ReentrantNodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/ScheduledNodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/ScopedPostOrderNodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/SinglePassNodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/StatelessPostOrderNodeIterator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/package-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/package-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/schedule/BlockClosure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/schedule/MemoryScheduleVerification.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/schedule/SchedulePhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/CompilerConfiguration.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/HighTierContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/LowTierContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/MidTierContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/PhaseContext.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/Suites.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/SuitesCreator.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/SuitesProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/TargetProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/util/BlockWorkList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/util/GraphOrder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/util/MethodDebugValueName.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/util/Providers.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/util/ValueMergeUtil.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyBailoutUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyCallerSensitiveMethods.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyDebugUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyGetOptionsUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyGraphAddUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyInstanceOfUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyUpdateUsages.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyUsageWithEquals.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyVirtualizableUsage.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/BinaryGraphPrinter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/CFGPrinter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/CFGPrinterObserver.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/CanonicalStringGraphPrinter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/CompilationPrinter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/GraalDebugHandlersFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/GraphPrinter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/GraphPrinterDumpHandler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/NoDeadCodeVerifyHandler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.processor/src/org/graalvm/compiler/processor/AbstractProcessor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.processor/src/org/graalvm/compiler/processor/SuppressFBWarnings.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64CountLeadingZerosNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64CountTrailingZerosNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64FloatArithmeticSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64GraphBuilderPlugins.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64IntegerArithmeticSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64IntegerSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64LongSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64StringLatin1Substitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/AArch64StringUTF16Substitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64ArrayIndexOf.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64ArrayIndexOfNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64ConvertSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64CountLeadingZerosNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64CountTrailingZerosNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64FloatConvertNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64GraphBuilderPlugins.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64MathSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64RoundNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/AMD64StringSubstitutions.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.jdk9_11.test/src/org/graalvm/compiler/replacements/jdk9_11/test/UnsafeObjectReplacementsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.processor/src/org/graalvm/compiler/replacements/processor/NodeIntrinsicHandler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.sparc/src/org/graalvm/compiler/replacements/sparc/SPARCGraphBuilderPlugins.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/ArrayEqualsConstantLengthTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/ArrayStoreBytecodeExceptionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/ArraysSubstitutionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/ArraysSubstitutionsTestBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/BitOpNodesTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/BytecodeExceptionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/ClassCastBytecodeExceptionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/CompiledExceptionHandlerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/CompiledNullPointerExceptionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/DeoptimizeOnExceptionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/DeoptimizeOnVolatileReadTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/DerivedOopTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/DynamicNewArrayTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/EdgesTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/FloatArraysEqualsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/FoldTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/InstanceOfDynamicTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/InstanceOfTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/IntegerExactFoldTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/IntegerSubOverflowsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/InvokeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/MethodSubstitutionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/MonitorTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/NestedExceptionHandlerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/NewArrayTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/NewInstanceTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/NewMultiArrayTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/NullBytecodeExceptionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/ObjectAccessTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/PEGraphDecoderTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/PointerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/PointerTrackingTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/ReplacementsParseTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/ReplacementsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/SnippetsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StandardMethodSubstitutionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringCompareToTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringEqualsConstantTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringHashConstantTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringIndexOfCharTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringIndexOfConstantTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringIndexOfDeoptimizeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringIndexOfTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringIndexOfTestBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringSubstitutionTestBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringSubstitutionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/SubstitutionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/SystemArrayCopyTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/TypeCheckTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/UnsafeBooleanAccessTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/UnsafeSubstitutionsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/UnsignedIntegerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/UnsignedMathTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/UnwindExceptionToCallerTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/WordTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/classfile/ClassfileBytecodeProviderTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/classfile/RedefineIntrinsicTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/ArraySubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/ArraysSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/BoxingSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/CachingPEGraphDecoder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/ConstantBindingParameterPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/ConstantStringIndexOfSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/DefaultJavaLoweringProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/GraphKit.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/InlineDuringParsingPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/InstanceOfSnippetsTemplates.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/IntegerSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/IntrinsicGraphBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/JavacBug.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/Log.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/LongSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/MethodHandlePlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/NodeIntrinsificationProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/PEGraphDecoder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/ReplacementsImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/ReplacementsUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/SnippetCounter.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/SnippetCounterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/SnippetIntegerHistogram.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/SnippetLowerableMemoryNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/SnippetTemplate.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/Snippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/StandardGraphBuilderPlugins.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/StringIndexOfNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/StringSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/UnsafeAccess.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/arraycopy/ArrayCopyCallNode.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/arraycopy/ArrayCopyForeignCalls.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/arraycopy/ArrayCopyNode.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/arraycopy/ArrayCopySnippets.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/arraycopy/ArrayCopyWithSlowPathNode.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/arraycopy/CheckcastArrayCopyCallNode.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/arraycopy/GenericArrayCopyCallNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/classfile/Classfile.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/classfile/ClassfileBytecode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/classfile/ClassfileBytecodeProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/classfile/ClassfileConstant.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/classfile/ClassfileConstantPool.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/ArrayCompareToNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/ArrayEqualsNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/ArrayRegionEqualsNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/AssertionNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/BasicArrayCopyNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/BasicObjectCloneNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/BinaryMathIntrinsicNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/BitCountNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/BitScanForwardNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/BitScanReverseNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/CStringConstant.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/DirectStoreNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/ExplodeLoopNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/LoadSnippetVarargParameterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/MacroNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/MacroStateSplitNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/MethodHandleNode.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/ProfileBooleanNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/PureFunctionMacroNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/ReadRegisterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/ResolvedMethodHandleCallTargetNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/ReverseBytesNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/UnaryMathIntrinsicNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/VirtualizableInvokeMacroNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/WriteRegisterNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/IntegerAddExactNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/IntegerAddExactSplitNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/IntegerExactArithmeticNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/IntegerMulExactNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/IntegerMulExactSplitNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/IntegerMulHighNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/IntegerSubExactNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/IntegerSubExactSplitNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/arithmetic/UnsignedMulHighNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.runtime/src/org/graalvm/compiler/runtime/RuntimeProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.serviceprovider/src/org/graalvm/compiler/serviceprovider/GraalServices.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.serviceprovider/src/org/graalvm/compiler/serviceprovider/JMXService.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.serviceprovider/src/org/graalvm/compiler/serviceprovider/ServiceProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.test/src/org/graalvm/compiler/test/AddExports.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.test/src/org/graalvm/compiler/test/ExportingClassLoader.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.test/src/org/graalvm/compiler/test/GraalTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.test/src/org/graalvm/compiler/test/JLModule.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.test/src/org/graalvm/compiler/test/SubprocessUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual.bench/src/org/graalvm/compiler/virtual/bench/PartialEscapeBench.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/nodes/MaterializedObjectState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/nodes/VirtualObjectState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/EarlyReadEliminationPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/EffectList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/EffectsBlockState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/EffectsClosure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/EffectsPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/GraphEffectList.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/ObjectState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/PEReadEliminationBlockState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/PEReadEliminationClosure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/PartialEscapeBlockState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/PartialEscapeClosure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/PartialEscapePhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/ReadEliminationBlockState.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/ReadEliminationClosure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/VirtualUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/VirtualizerToolImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/BarrieredAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/ObjectAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/UnsafeAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/Word.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/WordCastNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/WordOperationPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/WordTypes.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/DefaultGraphBlocks.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/DefaultGraphTypes.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/GraphBlocks.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/GraphElements.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/GraphJavadocSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/GraphLocations.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/GraphOutput.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/GraphProtocol.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/GraphStructure.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/GraphTypes.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/ProtocolImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/package-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/ArrayDuplicationBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/ArrayListBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/BenchmarkBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/BoxingBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/ConcurrentSkipListBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/GuardedIntrinsicBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/HashBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/MathFunctionBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/SimpleSyncBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/StringBenchmark.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/TestJMHBlackbox.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/package-info.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.util.test/src/org/graalvm/util/test/CollectionSizeTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.util.test/src/org/graalvm/util/test/CollectionUtilTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.util/src/org/graalvm/util/CollectionsUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.util/src/org/graalvm/util/ObjectSizeEstimate.java ! test/hotspot/jtreg/ProblemList-graal.txt - test/hotspot/jtreg/compiler/graalunit/Replacements9_11Test.java ! test/hotspot/jtreg/compiler/graalunit/TestPackages.txt Changeset: e0ce50c5e220 Author: egahlin Date: 2018-12-08 14:08 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/e0ce50c5e220 8213966: The ZGC JFR events should be marked as experimental Reviewed-by: pliden ! src/hotspot/share/jfr/metadata/metadata.xml ! test/jdk/jdk/jfr/event/metadata/TestLookForUntestedEvents.java Changeset: f94276ccc9fc Author: egahlin Date: 2018-12-08 17:41 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/f94276ccc9fc 8213617: JFR should record the PID of the recorded process Reviewed-by: mgronlun ! src/hotspot/share/jfr/metadata/metadata.xml ! src/hotspot/share/jfr/periodic/jfrPeriodic.cpp ! test/jdk/jdk/jfr/event/runtime/TestVMInfoEvent.java Changeset: bf2f2560dd53 Author: kbarrett Date: 2018-12-08 18:52 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/bf2f2560dd53 8214315: G1: fatal error: acquiring lock SATB_Q_FL_lock/1 out of order with lock tty_lock/0 Summary: Add new 'tty' lock rank. Reviewed-by: eosterlund, tschatzl ! src/hotspot/share/runtime/mutex.cpp ! src/hotspot/share/runtime/mutex.hpp ! src/hotspot/share/runtime/mutexLocker.cpp Changeset: 4fa75d8ad418 Author: vromero Date: 2018-12-09 12:36 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/4fa75d8ad418 8210031: implementation for JVM Constants API Reviewed-by: jrose, mcimadamore, darcy, mchung, rriggs, dholmes, forax Contributed-by: brian.goetz at oracle.com, vicente.romero at oracle.com ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/Double.java ! src/java.base/share/classes/java/lang/Enum.java ! src/java.base/share/classes/java/lang/Float.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/String.java + src/java.base/share/classes/java/lang/constant/AsTypeMethodHandleDesc.java + src/java.base/share/classes/java/lang/constant/ClassDesc.java + src/java.base/share/classes/java/lang/constant/Constable.java + src/java.base/share/classes/java/lang/constant/ConstantDesc.java + src/java.base/share/classes/java/lang/constant/ConstantDescs.java + src/java.base/share/classes/java/lang/constant/ConstantUtils.java + src/java.base/share/classes/java/lang/constant/DirectMethodHandleDesc.java + src/java.base/share/classes/java/lang/constant/DirectMethodHandleDescImpl.java + src/java.base/share/classes/java/lang/constant/DynamicCallSiteDesc.java + src/java.base/share/classes/java/lang/constant/DynamicConstantDesc.java + src/java.base/share/classes/java/lang/constant/MethodHandleDesc.java + src/java.base/share/classes/java/lang/constant/MethodTypeDesc.java + src/java.base/share/classes/java/lang/constant/MethodTypeDescImpl.java + src/java.base/share/classes/java/lang/constant/PrimitiveClassDescImpl.java + src/java.base/share/classes/java/lang/constant/ReferenceClassDescImpl.java + src/java.base/share/classes/java/lang/constant/package-info.java ! src/java.base/share/classes/java/lang/invoke/MethodHandle.java ! src/java.base/share/classes/java/lang/invoke/MethodType.java + src/java.base/share/classes/java/lang/invoke/TypeDescriptor.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! src/java.base/share/classes/java/lang/invoke/VarHandles.java ! src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template ! src/java.base/share/classes/java/lang/invoke/X-VarHandleByteArrayView.java.template ! src/java.base/share/classes/module-info.java ! src/java.base/share/classes/sun/invoke/util/Wrapper.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ClassWriterImpl.java + test/jdk/java/lang/constant/ClassDescTest.java + test/jdk/java/lang/constant/CondyDescTest.java + test/jdk/java/lang/constant/IndyDescTest.java + test/jdk/java/lang/constant/MethodHandleDescTest.java + test/jdk/java/lang/constant/MethodTypeDescTest.java + test/jdk/java/lang/constant/NameValidationTest.java + test/jdk/java/lang/constant/SymbolicDescTest.java + test/jdk/java/lang/constant/TestHelpers.java + test/jdk/java/lang/constant/TypeDescriptorTest.java + test/jdk/java/lang/constant/boottest/TEST.properties + test/jdk/java/lang/constant/boottest/java.base/java/lang/constant/ConstantUtilsTest.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleBaseByteArrayTest.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessBoolean.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessByte.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessChar.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessDouble.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessFloat.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessInt.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessLong.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessShort.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestAccessString.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsChar.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsDouble.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsFloat.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsInt.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsLong.java ! test/jdk/java/lang/invoke/VarHandles/VarHandleTestByteArrayAsShort.java ! test/jdk/java/lang/invoke/VarHandles/X-VarHandleTestAccess.java.template ! test/jdk/java/lang/invoke/VarHandles/X-VarHandleTestByteArrayView.java.template ! test/langtools/jdk/javadoc/doclet/lib/JavadocTester.java ! test/langtools/jdk/javadoc/doclet/testClassTree/TestClassTree.java ! test/langtools/jdk/jshell/TypeNameTest.java ! test/langtools/tools/javac/T8187978/FilterOutCandidatesForDiagnosticsTest.out ! test/langtools/tools/javac/diags/examples/EnumNoSubclassing.java ! test/langtools/tools/javac/enum/FauxEnum1.out ! test/langtools/tools/javac/generics/inference/8176534/TestUncheckedCalls.java ! test/langtools/tools/javac/generics/inference/EagerReturnTypeResolution/EagerReturnTypeResolutionTestb.out ! test/langtools/tools/javac/lvti/harness/NonDenotableTest.java ! test/langtools/tools/javac/varargs/6806876/T6806876.out Changeset: 3addaaf7eaea Author: martin Date: 2018-12-09 10:07 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/3addaaf7eaea 8215048: Some classloader typos Reviewed-by: alanb ! src/java.base/share/classes/java/lang/ClassLoader.java ! src/java.base/share/classes/jdk/internal/loader/URLClassPath.java Changeset: 3ee633205603 Author: manc Date: 2018-12-09 19:18 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/3ee633205603 8215043: Remove declaration of parallel_worker_threads Summary: Removing unused declaration Reviewed-by: eosterlund, tschatzl ! src/hotspot/share/runtime/vm_version.hpp Changeset: 0c637249d934 Author: ihse Date: 2018-12-10 09:37 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/0c637249d934 8214780: Create pandoc package for Windows Reviewed-by: erikj ! make/conf/jib-profiles.js ! make/devkit/createPandocBundle.sh Changeset: f94c7929a44b Author: tschatzl Date: 2018-12-10 10:25 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/f94c7929a44b 8212657: Implementation of JDK-8204089 Promptly Return Unused Committed Memory from G1 Summary: Issue optional, default enabled, concurrent cycles when the VM is idle to reclaim unused internal and Java heap memory. Reviewed-by: sjohanss, sangheki Contributed-by: Rodrigo Bruno , Ruslan Synytsky , Thomas Schatzl ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1Policy.cpp ! src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.cpp ! src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.hpp ! src/hotspot/share/gc/g1/g1_globals.hpp ! src/hotspot/share/gc/shared/gcCause.cpp ! src/hotspot/share/gc/shared/gcCause.hpp ! src/hotspot/share/gc/shared/gcVMOperations.cpp ! src/hotspot/share/logging/logTag.hpp ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/gc/g1/TestPeriodicCollection.java Changeset: ef9a34d58474 Author: gadams Date: 2018-12-10 07:52 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/ef9a34d58474 8210106: sun/tools/jps/TestJps.java timed out Reviewed-by: dholmes, dcubed ! test/jdk/sun/tools/jps/TestJps.java Changeset: 100818c5ddd0 Author: jgeorge Date: 2018-12-10 19:08 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/100818c5ddd0 8215026: Incorrect amount of memory unmapped with ImageFileReader::close() Summary: Use map_size() instead of _index_size as the amount of memory to be unmapped while closing an image file Reviewed-by: alanb, jlaskey ! src/java.base/share/native/libjimage/imageFile.cpp Changeset: f83b21839314 Author: ihse Date: 2018-12-10 14:54 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/f83b21839314 8215129: Update build documentation with Xrandr Reviewed-by: ihse Contributed-by: Ao Qi ! doc/building.html ! doc/building.md Changeset: 91855ca077e3 Author: dpochepk Date: 2018-12-10 17:31 +0300 URL: http://hg.openjdk.java.net/loom/loom/rev/91855ca077e3 8214961: AARCH64: wrong encoding for exclusive and atomic load/stores Reviewed-by: aph ! src/hotspot/cpu/aarch64/assembler_aarch64.hpp Changeset: 8790e9f9f984 Author: shade Date: 2018-12-10 15:31 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/8790e9f9f984 8215120: 32-bit build failures after JDK-8212657 (Promptly Return Unused Committed Memory from G1) Reviewed-by: tschatzl, rkennke ! src/hotspot/share/gc/g1/g1_globals.hpp Changeset: 420ff459906f Author: bulasevich Date: 2018-12-10 17:34 +0300 URL: http://hg.openjdk.java.net/loom/loom/rev/420ff459906f 8214128: ARM32: wrong stack alignment on Deoptimization::unpack_frames Reviewed-by: dsamersoff ! src/hotspot/cpu/arm/sharedRuntime_arm.cpp Changeset: 9c18c9d839d3 Author: rkennke Date: 2018-12-10 15:47 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental) Reviewed-by: kvn, roland, shade, coleenp, lmesnik, pliden, jgeorge, ihse, erikj Contributed-by: Christine Flood , Aleksey Shipilev , Roland Westrelin , Zhenygu Gu , Andrew Haley , Andrew Dinn , Mario Torre , Roman Kennke ! make/autoconf/hotspot.m4 ! make/hotspot/gensrc/GensrcAdlc.gmk ! make/hotspot/lib/JvmFeatures.gmk ! make/hotspot/lib/JvmOverrideFiles.gmk ! src/hotspot/cpu/aarch64/aarch64.ad + src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetAssembler_aarch64.cpp + src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetAssembler_aarch64.hpp + src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetC1_aarch64.cpp + src/hotspot/cpu/aarch64/gc/shenandoah/shenandoah_aarch64.ad + src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetAssembler_x86.cpp + src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetAssembler_x86.hpp + src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetC1_x86.cpp + src/hotspot/cpu/x86/gc/shenandoah/shenandoah_x86_64.ad ! src/hotspot/share/adlc/formssel.cpp ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/ci/ciInstanceKlass.hpp ! src/hotspot/share/code/codeCache.hpp ! src/hotspot/share/gc/shared/barrierSetConfig.hpp ! src/hotspot/share/gc/shared/barrierSetConfig.inline.hpp ! src/hotspot/share/gc/shared/c2/barrierSetC2.hpp ! src/hotspot/share/gc/shared/collectedHeap.hpp ! src/hotspot/share/gc/shared/gcCause.cpp ! src/hotspot/share/gc/shared/gcCause.hpp ! src/hotspot/share/gc/shared/gcConfig.cpp ! src/hotspot/share/gc/shared/gcConfiguration.cpp ! src/hotspot/share/gc/shared/gcName.hpp ! src/hotspot/share/gc/shared/gc_globals.hpp ! src/hotspot/share/gc/shared/referenceProcessor.cpp ! src/hotspot/share/gc/shared/vmStructs_gc.hpp + src/hotspot/share/gc/shenandoah/c1/shenandoahBarrierSetC1.cpp + src/hotspot/share/gc/shenandoah/c1/shenandoahBarrierSetC1.hpp + src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.cpp + src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.hpp + src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.cpp + src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.hpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.cpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.hpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahAggressiveHeuristics.cpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahAggressiveHeuristics.hpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahCompactHeuristics.cpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahCompactHeuristics.hpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahPassiveHeuristics.cpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahPassiveHeuristics.hpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahStaticHeuristics.cpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahStaticHeuristics.hpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahTraversalHeuristics.cpp + src/hotspot/share/gc/shenandoah/heuristics/shenandoahTraversalHeuristics.hpp + src/hotspot/share/gc/shenandoah/shenandoahAllocRequest.hpp + src/hotspot/share/gc/shenandoah/shenandoahAllocTracker.cpp + src/hotspot/share/gc/shenandoah/shenandoahAllocTracker.hpp + src/hotspot/share/gc/shenandoah/shenandoahArguments.cpp + src/hotspot/share/gc/shenandoah/shenandoahArguments.hpp + src/hotspot/share/gc/shenandoah/shenandoahAsserts.cpp + src/hotspot/share/gc/shenandoah/shenandoahAsserts.hpp + src/hotspot/share/gc/shenandoah/shenandoahBarrierSet.cpp + src/hotspot/share/gc/shenandoah/shenandoahBarrierSet.hpp + src/hotspot/share/gc/shenandoah/shenandoahBarrierSet.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahBarrierSetAssembler.hpp + src/hotspot/share/gc/shenandoah/shenandoahBrooksPointer.hpp + src/hotspot/share/gc/shenandoah/shenandoahBrooksPointer.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahCodeRoots.cpp + src/hotspot/share/gc/shenandoah/shenandoahCodeRoots.hpp + src/hotspot/share/gc/shenandoah/shenandoahCollectionSet.cpp + src/hotspot/share/gc/shenandoah/shenandoahCollectionSet.hpp + src/hotspot/share/gc/shenandoah/shenandoahCollectionSet.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahCollectorPolicy.cpp + src/hotspot/share/gc/shenandoah/shenandoahCollectorPolicy.hpp + src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp + src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.hpp + src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahControlThread.cpp + src/hotspot/share/gc/shenandoah/shenandoahControlThread.hpp + src/hotspot/share/gc/shenandoah/shenandoahEvacOOMHandler.cpp + src/hotspot/share/gc/shenandoah/shenandoahEvacOOMHandler.hpp + src/hotspot/share/gc/shenandoah/shenandoahFreeSet.cpp + src/hotspot/share/gc/shenandoah/shenandoahFreeSet.hpp + src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp + src/hotspot/share/gc/shenandoah/shenandoahHeap.hpp + src/hotspot/share/gc/shenandoah/shenandoahHeap.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahHeapLock.hpp + src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.cpp + src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.hpp + src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahHeapRegionCounters.cpp + src/hotspot/share/gc/shenandoah/shenandoahHeapRegionCounters.hpp + src/hotspot/share/gc/shenandoah/shenandoahHeapRegionSet.cpp + src/hotspot/share/gc/shenandoah/shenandoahHeapRegionSet.hpp + src/hotspot/share/gc/shenandoah/shenandoahHeapRegionSet.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahHeuristics.cpp + src/hotspot/share/gc/shenandoah/shenandoahHeuristics.hpp + src/hotspot/share/gc/shenandoah/shenandoahMarkCompact.cpp + src/hotspot/share/gc/shenandoah/shenandoahMarkCompact.hpp + src/hotspot/share/gc/shenandoah/shenandoahMarkingContext.cpp + src/hotspot/share/gc/shenandoah/shenandoahMarkingContext.hpp + src/hotspot/share/gc/shenandoah/shenandoahMarkingContext.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahMemoryPool.cpp + src/hotspot/share/gc/shenandoah/shenandoahMemoryPool.hpp + src/hotspot/share/gc/shenandoah/shenandoahMetrics.cpp + src/hotspot/share/gc/shenandoah/shenandoahMetrics.hpp + src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.cpp + src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.hpp + src/hotspot/share/gc/shenandoah/shenandoahNumberSeq.cpp + src/hotspot/share/gc/shenandoah/shenandoahNumberSeq.hpp + src/hotspot/share/gc/shenandoah/shenandoahOopClosures.hpp + src/hotspot/share/gc/shenandoah/shenandoahOopClosures.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahPacer.cpp + src/hotspot/share/gc/shenandoah/shenandoahPacer.hpp + src/hotspot/share/gc/shenandoah/shenandoahPacer.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahPhaseTimings.cpp + src/hotspot/share/gc/shenandoah/shenandoahPhaseTimings.hpp + src/hotspot/share/gc/shenandoah/shenandoahRootProcessor.cpp + src/hotspot/share/gc/shenandoah/shenandoahRootProcessor.hpp + src/hotspot/share/gc/shenandoah/shenandoahRuntime.cpp + src/hotspot/share/gc/shenandoah/shenandoahRuntime.hpp + src/hotspot/share/gc/shenandoah/shenandoahSATBMarkQueueSet.cpp + src/hotspot/share/gc/shenandoah/shenandoahSATBMarkQueueSet.hpp + src/hotspot/share/gc/shenandoah/shenandoahSharedVariables.hpp + src/hotspot/share/gc/shenandoah/shenandoahStrDedupQueue.cpp + src/hotspot/share/gc/shenandoah/shenandoahStrDedupQueue.hpp + src/hotspot/share/gc/shenandoah/shenandoahStrDedupQueue.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahStringDedup.cpp + src/hotspot/share/gc/shenandoah/shenandoahStringDedup.hpp + src/hotspot/share/gc/shenandoah/shenandoahTaskqueue.cpp + src/hotspot/share/gc/shenandoah/shenandoahTaskqueue.hpp + src/hotspot/share/gc/shenandoah/shenandoahTaskqueue.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahThreadLocalData.hpp + src/hotspot/share/gc/shenandoah/shenandoahTimingTracker.cpp + src/hotspot/share/gc/shenandoah/shenandoahTimingTracker.hpp + src/hotspot/share/gc/shenandoah/shenandoahTracer.hpp + src/hotspot/share/gc/shenandoah/shenandoahTraversalGC.cpp + src/hotspot/share/gc/shenandoah/shenandoahTraversalGC.hpp + src/hotspot/share/gc/shenandoah/shenandoahTraversalGC.inline.hpp + src/hotspot/share/gc/shenandoah/shenandoahUtils.cpp + src/hotspot/share/gc/shenandoah/shenandoahUtils.hpp + src/hotspot/share/gc/shenandoah/shenandoahVMOperations.cpp + src/hotspot/share/gc/shenandoah/shenandoahVMOperations.hpp + src/hotspot/share/gc/shenandoah/shenandoahVerifier.cpp + src/hotspot/share/gc/shenandoah/shenandoahVerifier.hpp + src/hotspot/share/gc/shenandoah/shenandoahWorkGroup.cpp + src/hotspot/share/gc/shenandoah/shenandoahWorkGroup.hpp + src/hotspot/share/gc/shenandoah/shenandoahWorkerPolicy.cpp + src/hotspot/share/gc/shenandoah/shenandoahWorkerPolicy.hpp + src/hotspot/share/gc/shenandoah/shenandoah_globals.hpp + src/hotspot/share/gc/shenandoah/vmStructs_shenandoah.hpp ! src/hotspot/share/jfr/leakprofiler/leakProfiler.cpp ! src/hotspot/share/memory/metaspace.hpp ! src/hotspot/share/opto/arraycopynode.cpp ! src/hotspot/share/opto/cfgnode.hpp ! src/hotspot/share/opto/classes.cpp ! src/hotspot/share/opto/classes.hpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/compile.hpp ! src/hotspot/share/opto/lcm.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/loopPredicate.cpp ! src/hotspot/share/opto/loopTransform.cpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/opto/loopnode.hpp ! src/hotspot/share/opto/loopopts.cpp ! src/hotspot/share/opto/macro.cpp ! src/hotspot/share/opto/node.hpp ! src/hotspot/share/opto/type.cpp ! src/hotspot/share/opto/type.hpp ! src/hotspot/share/runtime/fieldDescriptor.hpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/vmOperations.hpp ! src/hotspot/share/utilities/globalDefinitions.hpp ! src/hotspot/share/utilities/macros.hpp ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/HSDB.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/CollectedHeapName.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/GCCause.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/GCName.java + src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shenandoah/ShenandoahHeap.java + src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shenandoah/ShenandoahHeapRegion.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/Universe.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/ObjectHeap.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/VMOps.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/HeapSummary.java ! test/hotspot/jtreg/TEST.ROOT ! test/hotspot/jtreg/TEST.groups ! test/hotspot/jtreg/compiler/c2/aarch64/TestVolatiles.java + test/hotspot/jtreg/compiler/c2/aarch64/TestVolatilesShenandoah.java + test/hotspot/jtreg/gc/CriticalNativeArgs.java ! test/hotspot/jtreg/gc/TestFullGCCount.java ! test/hotspot/jtreg/gc/TestHumongousReferenceObject.java ! test/hotspot/jtreg/gc/TestSystemGC.java ! test/hotspot/jtreg/gc/arguments/TestAlignmentToUseLargePages.java ! test/hotspot/jtreg/gc/arguments/TestDisableDefaultGC.java ! test/hotspot/jtreg/gc/arguments/TestMaxMinHeapFreeRatioFlags.java ! test/hotspot/jtreg/gc/arguments/TestNewRatioFlag.java ! test/hotspot/jtreg/gc/arguments/TestNewSizeFlags.java ! test/hotspot/jtreg/gc/arguments/TestShrinkHeapInSteps.java ! test/hotspot/jtreg/gc/arguments/TestSurvivorRatioFlag.java ! test/hotspot/jtreg/gc/arguments/TestTargetSurvivorRatioFlag.java ! test/hotspot/jtreg/gc/arguments/TestUseCompressedOopsErgo.java ! test/hotspot/jtreg/gc/arguments/TestVerifyBeforeAndAfterGCFlags.java ! test/hotspot/jtreg/gc/class_unloading/TestClassUnloadingDisabled.java - test/hotspot/jtreg/gc/epsilon/CriticalNativeArgs.java - test/hotspot/jtreg/gc/epsilon/CriticalNativeStress.java - test/hotspot/jtreg/gc/epsilon/libCriticalNative.c ! test/hotspot/jtreg/gc/ergonomics/TestDynamicNumberOfGCThreads.java ! test/hotspot/jtreg/gc/ergonomics/TestInitialGCThreadLogging.java + test/hotspot/jtreg/gc/libCriticalNative.c ! test/hotspot/jtreg/gc/logging/TestGCId.java ! test/hotspot/jtreg/gc/metaspace/TestMetaspacePerfCounters.java + test/hotspot/jtreg/gc/shenandoah/TestAllocHumongousFragment.java + test/hotspot/jtreg/gc/shenandoah/TestAllocIntArrays.java + test/hotspot/jtreg/gc/shenandoah/TestAllocObjectArrays.java + test/hotspot/jtreg/gc/shenandoah/TestAllocObjects.java + test/hotspot/jtreg/gc/shenandoah/TestArrayCopyCheckCast.java + test/hotspot/jtreg/gc/shenandoah/TestArrayCopyStress.java + test/hotspot/jtreg/gc/shenandoah/TestElasticTLAB.java + test/hotspot/jtreg/gc/shenandoah/TestEvilSyncBug.java + test/hotspot/jtreg/gc/shenandoah/TestGCThreadGroups.java + test/hotspot/jtreg/gc/shenandoah/TestHeapUncommit.java + test/hotspot/jtreg/gc/shenandoah/TestHumongousThreshold.java + test/hotspot/jtreg/gc/shenandoah/TestLargeObjectAlignment.java + test/hotspot/jtreg/gc/shenandoah/TestLotsOfCycles.java + test/hotspot/jtreg/gc/shenandoah/TestParallelRefprocSanity.java + test/hotspot/jtreg/gc/shenandoah/TestPeriodicGC.java + test/hotspot/jtreg/gc/shenandoah/TestRefprocSanity.java + test/hotspot/jtreg/gc/shenandoah/TestRegionSampling.java + test/hotspot/jtreg/gc/shenandoah/TestRetainObjects.java + test/hotspot/jtreg/gc/shenandoah/TestSieveObjects.java + test/hotspot/jtreg/gc/shenandoah/TestSmallHeap.java + test/hotspot/jtreg/gc/shenandoah/TestStringDedup.java + test/hotspot/jtreg/gc/shenandoah/TestStringDedupStress.java + test/hotspot/jtreg/gc/shenandoah/TestStringInternCleanup.java + test/hotspot/jtreg/gc/shenandoah/TestVerifyJCStress.java + test/hotspot/jtreg/gc/shenandoah/TestVerifyLevels.java + test/hotspot/jtreg/gc/shenandoah/TestWithLogLevel.java + test/hotspot/jtreg/gc/shenandoah/TestWrongArrayMember.java + test/hotspot/jtreg/gc/shenandoah/compiler/TestC1ArrayCopyNPE.java + test/hotspot/jtreg/gc/shenandoah/compiler/TestC1VectorizedMismatch.java + test/hotspot/jtreg/gc/shenandoah/compiler/TestCommonGCLoads.java + test/hotspot/jtreg/gc/shenandoah/compiler/TestExpandedWBLostNullCheckDep.java + test/hotspot/jtreg/gc/shenandoah/compiler/TestMaybeNullUnsafeAccess.java + test/hotspot/jtreg/gc/shenandoah/compiler/TestNullCheck.java + test/hotspot/jtreg/gc/shenandoah/compiler/TestReferenceCAS.java + test/hotspot/jtreg/gc/shenandoah/compiler/TestWriteBarrierClearControl.java + test/hotspot/jtreg/gc/shenandoah/jni/TestJNICritical.java + test/hotspot/jtreg/gc/shenandoah/jni/TestJNIGlobalRefs.java + test/hotspot/jtreg/gc/shenandoah/jni/TestPinnedGarbage.java + test/hotspot/jtreg/gc/shenandoah/jni/libTestJNICritical.c + test/hotspot/jtreg/gc/shenandoah/jni/libTestJNIGlobalRefs.c + test/hotspot/jtreg/gc/shenandoah/jni/libTestPinnedGarbage.c + test/hotspot/jtreg/gc/shenandoah/jvmti/TestHeapDump.java + test/hotspot/jtreg/gc/shenandoah/jvmti/libTestHeapDump.c + test/hotspot/jtreg/gc/shenandoah/mxbeans/TestChurnNotifications.java + test/hotspot/jtreg/gc/shenandoah/mxbeans/TestMemoryMXBeans.java + test/hotspot/jtreg/gc/shenandoah/mxbeans/TestMemoryPools.java + test/hotspot/jtreg/gc/shenandoah/mxbeans/TestPauseNotifications.java + test/hotspot/jtreg/gc/shenandoah/oom/TestAllocLargeObj.java + test/hotspot/jtreg/gc/shenandoah/oom/TestAllocLargerThanHeap.java + test/hotspot/jtreg/gc/shenandoah/oom/TestAllocSmallObj.java + test/hotspot/jtreg/gc/shenandoah/oom/TestClassLoaderLeak.java + test/hotspot/jtreg/gc/shenandoah/oom/TestThreadFailure.java + test/hotspot/jtreg/gc/shenandoah/options/TestAlwaysPreTouch.java + test/hotspot/jtreg/gc/shenandoah/options/TestArgumentRanges.java + test/hotspot/jtreg/gc/shenandoah/options/TestClassUnloadingArguments.java + test/hotspot/jtreg/gc/shenandoah/options/TestCodeCacheRootStyles.java + test/hotspot/jtreg/gc/shenandoah/options/TestEnabled.java + test/hotspot/jtreg/gc/shenandoah/options/TestExplicitGC.java + test/hotspot/jtreg/gc/shenandoah/options/TestExplicitGCNoConcurrent.java + test/hotspot/jtreg/gc/shenandoah/options/TestHeuristicsUnlock.java + test/hotspot/jtreg/gc/shenandoah/options/TestHumongousThresholdArgs.java + test/hotspot/jtreg/gc/shenandoah/options/TestLoopMiningArguments.java + test/hotspot/jtreg/gc/shenandoah/options/TestObjectAlignment.java + test/hotspot/jtreg/gc/shenandoah/options/TestPacing.java + test/hotspot/jtreg/gc/shenandoah/options/TestParallelRegionStride.java + test/hotspot/jtreg/gc/shenandoah/options/TestRegionSizeArgs.java + test/hotspot/jtreg/gc/shenandoah/options/TestSelectiveBarrierFlags.java + test/hotspot/jtreg/gc/shenandoah/options/TestSingleThreaded.java + test/hotspot/jtreg/gc/shenandoah/options/TestWrongBarrierDisable.java + test/hotspot/jtreg/gc/startup_warnings/TestShenandoah.java + test/hotspot/jtreg/gc/stress/CriticalNativeStress.java + test/hotspot/jtreg/gc/stress/gcbasher/TestGCBasherWithShenandoah.java + test/hotspot/jtreg/gc/stress/gclocker/TestGCLockerWithShenandoah.java + test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithShenandoah.java + test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithShenandoah.java ! test/hotspot/jtreg/gc/survivorAlignment/TestAllocationInEden.java ! test/hotspot/jtreg/gc/survivorAlignment/TestPromotionFromEdenToTenured.java ! test/hotspot/jtreg/gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterFullGC.java ! test/hotspot/jtreg/gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterMinorGC.java ! test/hotspot/jtreg/gc/survivorAlignment/TestPromotionToSurvivor.java ! test/hotspot/jtreg/gc/whitebox/TestWBGC.java ! test/hotspot/jtreg/runtime/CompressedOops/UseCompressedOops.java ! test/hotspot/jtreg/runtime/MemberName/MemberNameLeak.java ! test/hotspot/jtreg/serviceability/sa/ClhsdbJhisto.java ! test/hotspot/jtreg/serviceability/sa/TestHeapDumpForLargeArray.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/GcCapacityTest.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/GcCauseTest01.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/GcCauseTest02.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/GcCauseTest03.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/GcNewTest.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/GcTest01.java ! test/hotspot/jtreg/serviceability/tmtools/jstat/GcTest02.java ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t001/TestDriver.java ! test/lib/sun/hotspot/gc/GC.java Changeset: 38bee05fb0e4 Author: dlong Date: 2018-12-10 06:52 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/38bee05fb0e4 8215117: [JVMCI] TestResolvedJavaType.java failing after JDK-8210031 Reviewed-by: thartmann ! test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaType.java Changeset: 226c451bd954 Author: dpochepk Date: 2018-12-10 19:34 +0300 URL: http://hg.openjdk.java.net/loom/loom/rev/226c451bd954 8215133: AARCH64: disable Math.log intrinsic publishing Reviewed-by: aph ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp Changeset: d59955700113 Author: ascarpino Date: 2018-12-10 09:19 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/d59955700113 8214098: sun.security.ssl.HandshakeHash.T12HandshakeHash constructor check backwards. Reviewed-by: xuelei ! src/java.base/share/classes/sun/security/ssl/HandshakeHash.java Changeset: 72aba7acbeef Author: tschatzl Date: 2018-12-10 18:32 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/72aba7acbeef 8215149: TestOptionsWithRangesDynamic.java fails after JDK-8215120 Summary: Removed range specifier completely. Reviewed-by: sjohanss, shade ! src/hotspot/share/gc/g1/g1_globals.hpp Changeset: df629b081ff6 Author: erikj Date: 2018-12-10 09:51 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/df629b081ff6 8215030: Disable shenandoah in Oracle builds Reviewed-by: kbarrett ! make/conf/jib-profiles.js Changeset: 3b0fe3d6c3d7 Author: gziemski Date: 2018-12-10 11:59 -0600 URL: http://hg.openjdk.java.net/loom/loom/rev/3b0fe3d6c3d7 8209387: Follow ups to JDK-8195100 Use a low latency hashtable for SymbolTable Summary: Use size_t, replaced macros with const, reverted incorrect API name change. Reviewed-by: coleenp, kbarrett ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/stringTable.hpp ! src/hotspot/share/classfile/symbolTable.cpp ! src/hotspot/share/classfile/symbolTable.hpp Changeset: 3add7ef7c40c Author: hseigel Date: 2018-12-10 13:24 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/3add7ef7c40c 8215015: [TESTBUG] remove unneeded -Xfuture option from tests Summary: Remove the option from the tests Reviewed-by: lfoltan, coleenp ! test/langtools/tools/javac/boxing/T6348760.java ! test/langtools/tools/javac/generics/inference/6240565/T6240565.java ! test/langtools/tools/javac/scope/6225935/T6225935.java Changeset: 13173122094f Author: pchilanomate Date: 2018-12-10 13:45 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/13173122094f 8215050: [TESTBUG] serviceability/tmtools/jstack/WaitNotifyThreadTest.java fails when run with flag -Xcomp Summary: Identified special case when monitor address is not available in jstack Reviewed-by: dholmes, hseigel, coleenp ! test/hotspot/jtreg/serviceability/tmtools/jstack/WaitNotifyThreadTest.java Changeset: 8deeb7bba516 Author: iignatyev Date: 2018-12-10 11:04 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/8deeb7bba516 8214917: CTW testlibrary shouldn't ignore errors raised by the library itself Reviewed-by: kvn, roland ! src/hotspot/share/ci/ciMethod.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoader.hpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compilerDefinitions.cpp ! src/hotspot/share/jvmci/jvmciCompiler.cpp ! src/hotspot/share/jvmci/jvmciCompilerToVMInit.cpp ! src/hotspot/share/oops/constantPool.cpp ! src/hotspot/share/oops/constantPool.hpp ! src/hotspot/share/opto/bytecodeInfo.cpp ! src/hotspot/share/opto/castnode.cpp ! src/hotspot/share/opto/connode.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/runtime/compilationPolicy.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/tieredThresholdPolicy.cpp ! test/hotspot/jtreg/testlibrary/ctw/Makefile Changeset: 4aa8fe00ace9 Author: mli Date: 2018-12-11 08:05 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/4aa8fe00ace9 8213409: Refactor sun.text.IntHashtable:i18n shell tests to plain java tests Reviewed-by: naoto Contributed-by: ying.z.zhou at oracle.com - test/jdk/sun/text/IntHashtable/Bug4170614Test.sh + test/jdk/sun/text/IntHashtable/Bug4170614TestRun.java + test/jdk/sun/text/IntHashtable/patch-src/java.base/java/text/Bug4170614Test.java - test/jdk/sun/text/IntHashtable/patch-src/java/text/Bug4170614Test.java Changeset: 9745e4e36dd1 Author: jlahoda Date: 2018-12-11 09:10 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/9745e4e36dd1 8214114: Switch expressions with try-catch statements Summary: When switch expression contains try-catch, move the stack values into locals before the executing the switch expression, and back when it is done. Reviewed-by: mcimadamore, vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Flow.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Gen.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchBugs.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchEmbedding.java + test/langtools/tools/javac/switchexpr/TryCatch.java Changeset: d2206a60da32 Author: mdoerr Date: 2018-12-11 10:15 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/d2206a60da32 8215144: PPC64: Wrong assertion "illegal object size" Reviewed-by: simonis ! src/hotspot/cpu/ppc/macroAssembler_ppc.cpp Changeset: 5ff7480c9e28 Author: jlahoda Date: 2018-12-11 11:29 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/5ff7480c9e28 8214491: Upgrade to JLine 3.9.0 Summary: Upgrading JLine to 3.9.0 and updating jshell and jjs to the new JLine. Reviewed-by: rfield, sundar ! make/CompileJavaModules.gmk - src/jdk.internal.le/share/classes/jdk/internal/jline/DefaultTerminal2.java - src/jdk.internal.le/share/classes/jdk/internal/jline/NoInterruptUnixTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/OSvTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/Terminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/Terminal2.java - src/jdk.internal.le/share/classes/jdk/internal/jline/TerminalFactory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/TerminalSupport.java - src/jdk.internal.le/share/classes/jdk/internal/jline/UnixTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/UnsupportedTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/WindowsTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/ConsoleKeys.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/ConsoleReader.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/CursorBuffer.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/KeyMap.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/KillRing.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/Operation.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/UserInterruptException.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/WCWidth.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/AggregateCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/AnsiStringsCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/ArgumentCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CandidateListCompletionHandler.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CandidateListCompletionHandler.properties - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/Completer.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CompletionHandler.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/EnumCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/FileNameCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/NullCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/StringsCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/FileHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/History.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/MemoryHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/PersistentHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/internal/ConsoleReaderInputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/internal/ConsoleRunner.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/extra/AnsiInterpretingOutputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/extra/EditingHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Ansi.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Configuration.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Curses.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/InfoCmp.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/InputStreamReader.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Log.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/NonBlockingInputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Nullable.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Preconditions.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/ShutdownHooks.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/TerminalLineSettings.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/TestAccessible.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Urls.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/package-info.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/keymap/BindingReader.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/keymap/KeyMap.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Binding.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Buffer.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Candidate.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Completer.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/CompletingParsedLine.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/EOFError.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/EndOfFileException.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Expander.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Highlighter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/History.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/LineReader.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/LineReaderBuilder.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Macro.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/MaskingCallback.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/ParsedLine.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Parser.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Reference.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/SyntaxError.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/UserInterruptException.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/Widget.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/BufferImpl.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/DefaultExpander.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/DefaultHighlighter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/DefaultParser.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/KillRing.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/LineReaderImpl.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/ReaderUtils.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/SimpleMaskingCallback.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/UndoTree.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/AggregateCompleter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/ArgumentCompleter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/EnumCompleter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/FileNameCompleter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/NullCompleter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/StringsCompleter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/package-info.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/history/DefaultHistory.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/history/package-info.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/package-info.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/Attributes.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/Cursor.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/MouseEvent.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/Size.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/Terminal.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/TerminalBuilder.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/AbstractPosixTerminal.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/AbstractPty.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/AbstractTerminal.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/AbstractWindowsConsoleWriter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/AbstractWindowsTerminal.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/CursorSupport.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/DumbTerminal.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/ExecPty.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/ExternalTerminal.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/LineDisciplineTerminal.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/MouseSupport.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/NativeSignalHandler.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/PosixPtyTerminal.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/PosixSysTerminal.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/package-info.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/spi/JansiSupport.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/spi/JnaSupport.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/spi/Pty.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/AnsiWriter.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/AttributedCharSequence.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/AttributedString.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/AttributedStringBuilder.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/AttributedStyle.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/ClosedException.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/Colors.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/Curses.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/DiffHelper.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/Display.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/ExecHelper.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/InfoCmp.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/InputStreamReader.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/Levenshtein.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/Log.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/NonBlocking.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/NonBlockingInputStream.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/NonBlockingInputStreamImpl.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/NonBlockingPumpInputStream.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/NonBlockingPumpReader.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/NonBlockingReader.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/NonBlockingReaderImpl.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/OSUtils.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/PumpReader.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/ShutdownHooks.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/Signals.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/Status.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/StyleResolver.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/WCWidth.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/WriterOutputStream.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/ansi.caps + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/capabilities.txt + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/colors.txt + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/dumb.caps + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/package-info.java + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/screen-256color.caps + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/screen.caps + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/windows-256color.caps + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/windows-vtp.caps + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/windows.caps + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/xterm-256color.caps + src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/xterm.caps ! src/jdk.internal.le/share/classes/module-info.java ! src/jdk.internal.le/share/legal/jline.md + src/jdk.internal.le/windows/classes/jdk/internal/org/jline/terminal/impl/jna/JnaSupportImpl.java + src/jdk.internal.le/windows/classes/jdk/internal/org/jline/terminal/impl/jna/win/IntByReference.java + src/jdk.internal.le/windows/classes/jdk/internal/org/jline/terminal/impl/jna/win/JnaWinConsoleWriter.java + src/jdk.internal.le/windows/classes/jdk/internal/org/jline/terminal/impl/jna/win/JnaWinSysTerminal.java + src/jdk.internal.le/windows/classes/jdk/internal/org/jline/terminal/impl/jna/win/Kernel32.java + src/jdk.internal.le/windows/classes/jdk/internal/org/jline/terminal/impl/jna/win/Kernel32Impl.java + src/jdk.internal.le/windows/classes/jdk/internal/org/jline/terminal/impl/jna/win/LastErrorException.java + src/jdk.internal.le/windows/classes/jdk/internal/org/jline/terminal/impl/jna/win/Pointer.java + src/jdk.internal.le/windows/classes/jdk/internal/org/jline/terminal/impl/jna/win/WindowsAnsiWriter.java + src/jdk.internal.le/windows/classes/module-info.java.extra + src/jdk.internal.le/windows/native/lible/Kernel32.cpp - src/jdk.internal.le/windows/native/lible/WindowsTerminal.cpp ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/ConsoleIOContext.java ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/IOContext.java ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/JShellTool.java ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/resources/l10n.properties ! src/jdk.scripting.nashorn.shell/share/classes/jdk/nashorn/tools/jjs/Console.java ! src/jdk.scripting.nashorn.shell/share/classes/jdk/nashorn/tools/jjs/HistoryObject.java ! src/jdk.scripting.nashorn.shell/share/classes/jdk/nashorn/tools/jjs/Main.java ! src/jdk.scripting.nashorn.shell/share/classes/jdk/nashorn/tools/jjs/NashornCompleter.java ! test/jdk/jdk/internal/jline/KeyConversionTest.java - test/jdk/jdk/internal/jline/console/StripAnsiTest.java - test/jdk/jdk/internal/jline/extra/AnsiInterpretingOutputStreamTest.java - test/jdk/jdk/internal/jline/extra/HistoryTest.java ! test/langtools/jdk/jshell/CommandCompletionTest.java ! test/langtools/jdk/jshell/HistoryTest.java ! test/langtools/jdk/jshell/HistoryUITest.java ! test/langtools/jdk/jshell/PasteAndMeasurementsUITest.java ! test/langtools/jdk/jshell/ReplToolTesting.java ! test/langtools/jdk/jshell/StartOptionTest.java ! test/langtools/jdk/jshell/ToolLocalSimpleTest.java ! test/langtools/jdk/jshell/ToolMultilineSnippetHistoryTest.java ! test/langtools/jdk/jshell/ToolSimpleTest.java ! test/langtools/jdk/jshell/ToolTabCommandTest.java ! test/langtools/jdk/jshell/ToolTabSnippetTest.java ! test/langtools/jdk/jshell/UITesting.java ! test/nashorn/script/nosecurity/JDK-8055034.js.EXPECTED ! test/nashorn/script/nosecurity/JDK-8130127.js.EXPECTED Changeset: 9a8585f60c32 Author: eosterlund Date: 2018-12-11 11:08 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/9a8585f60c32 8214897: ZGC: Concurrent Class Unloading Reviewed-by: pliden Contributed-by: erik.osterlund at oracle.com, per.liden at oracle.com, stefan.karlsson at oracle.com ! src/hotspot/os_cpu/linux_x86/gc/z/zGlobals_linux_x86.hpp ! src/hotspot/share/gc/z/zArguments.cpp ! src/hotspot/share/gc/z/zBarrier.hpp ! src/hotspot/share/gc/z/zBarrier.inline.hpp ! src/hotspot/share/gc/z/zBarrierSet.cpp + src/hotspot/share/gc/z/zBarrierSetNMethod.cpp + src/hotspot/share/gc/z/zBarrierSetNMethod.hpp ! src/hotspot/share/gc/z/zCollectedHeap.cpp ! src/hotspot/share/gc/z/zGlobals.hpp ! src/hotspot/share/gc/z/zHeap.cpp ! src/hotspot/share/gc/z/zHeap.hpp ! src/hotspot/share/gc/z/zMark.cpp ! src/hotspot/share/gc/z/zNMethodTable.cpp ! src/hotspot/share/gc/z/zNMethodTable.hpp ! src/hotspot/share/gc/z/zNMethodTableEntry.hpp ! src/hotspot/share/gc/z/zOopClosures.hpp ! src/hotspot/share/gc/z/zOopClosures.inline.hpp ! src/hotspot/share/gc/z/zRootsIterator.cpp ! src/hotspot/share/gc/z/zRootsIterator.hpp ! src/hotspot/share/gc/z/zThreadLocalData.hpp + src/hotspot/share/gc/z/zUnload.cpp + src/hotspot/share/gc/z/zUnload.hpp Changeset: 26e2cfebcfba Author: ihse Date: 2018-12-11 15:18 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/26e2cfebcfba 8214720: Add pandoc filter to improve html man page output Reviewed-by: erikj Contributed-by: magnus.ihse.bursie at oracle.com, jonathan.gibbons at oracle.com ! make/CompileToolsJdk.gmk ! make/Docs.gmk ! make/ToolsJdk.gmk ! make/launcher/LauncherCommon.gmk + make/scripts/pandoc-html-manpage-filter.js + make/scripts/pandoc-html-manpage-filter.sh.template - make/scripts/pandoc-manpage-filter.js - make/scripts/pandoc-manpage-filter.sh.template + make/scripts/pandoc-troff-manpage-filter.js + make/scripts/pandoc-troff-manpage-filter.sh.template Changeset: a430555c3d4e Author: ihse Date: 2018-12-11 15:21 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/a430555c3d4e 8215131: Pandoc 2.3/build documentation fixes Reviewed-by: erikj ! doc/building.html ! doc/building.md ! doc/testing.html ! make/common/ProcessMarkdown.gmk Changeset: 746602d9682f Author: apetcher Date: 2018-12-11 09:36 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/746602d9682f 8208648: ECC Field Arithmetic Enhancements Summary: interal library enhancements to support ECC implementatation Reviewed-by: jnimeh ! src/java.base/share/classes/sun/security/util/ArrayUtil.java ! src/java.base/share/classes/sun/security/util/math/MutableIntegerModuloP.java + src/java.base/share/classes/sun/security/util/math/intpoly/FieldGen.jsh ! src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomial.java ! src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomial1305.java ! src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomial25519.java ! src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomial448.java + src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomialP256.java + src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomialP384.java + src/java.base/share/classes/sun/security/util/math/intpoly/IntegerPolynomialP521.java + src/java.base/share/classes/sun/security/util/math/intpoly/P256OrderField.java + src/java.base/share/classes/sun/security/util/math/intpoly/P384OrderField.java + src/java.base/share/classes/sun/security/util/math/intpoly/P521OrderField.java + src/java.base/share/classes/sun/security/util/math/intpoly/header.txt ! test/jdk/sun/security/util/math/BigIntegerModuloP.java ! test/jdk/sun/security/util/math/TestIntegerModuloP.java Changeset: c9fb47668dbe Author: sgroeger Date: 2018-12-07 14:35 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/c9fb47668dbe 8211844: [aix] ProcessBuilder: Piping between created processes does not work. Reviewed-by: cjplummer, simonis, goetz ! src/java.base/unix/classes/java/lang/ProcessImpl.java ! test/jdk/ProblemList.txt Changeset: d75110673dc9 Author: dfuchs Date: 2018-12-11 15:09 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/d75110673dc9 8215008: Clear confusion between URL/URI paths and file system paths Reviewed-by: alanb, chegar, martin ! src/java.base/share/classes/java/net/URI.java ! src/java.base/share/classes/java/net/URL.java Changeset: de85ab85fbc7 Author: hseigel Date: 2018-12-11 10:29 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/de85ab85fbc7 8215165: Improve -Xlog:class+preview message text Summary: Fix up the logging message. Reviewed-by: acorn, lfoltan ! src/hotspot/share/classfile/classFileParser.cpp ! test/hotspot/jtreg/runtime/ClassFile/PreviewVersion.java Changeset: 752e57845ad2 Author: apetcher Date: 2018-12-11 09:42 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/752e57845ad2 8208698: Improved ECC Implementation Summary: New implementation of ECDH and ECDSA forsome prime-order curves Reviewed-by: ascarpino ! src/jdk.crypto.ec/share/classes/sun/security/ec/ECDHKeyAgreement.java + src/jdk.crypto.ec/share/classes/sun/security/ec/ECDSAOperations.java ! src/jdk.crypto.ec/share/classes/sun/security/ec/ECDSASignature.java ! src/jdk.crypto.ec/share/classes/sun/security/ec/ECKeyPairGenerator.java + src/jdk.crypto.ec/share/classes/sun/security/ec/ECOperations.java ! src/jdk.crypto.ec/share/classes/sun/security/ec/ECPrivateKeyImpl.java + src/jdk.crypto.ec/share/classes/sun/security/ec/point/AffinePoint.java + src/jdk.crypto.ec/share/classes/sun/security/ec/point/ImmutablePoint.java + src/jdk.crypto.ec/share/classes/sun/security/ec/point/MutablePoint.java + src/jdk.crypto.ec/share/classes/sun/security/ec/point/Point.java + src/jdk.crypto.ec/share/classes/sun/security/ec/point/ProjectivePoint.java Changeset: 01b519fcb8a8 Author: apetcher Date: 2018-12-11 11:01 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/01b519fcb8a8 8214688: TLS 1.3 session resumption with hello retry request failed with "illegal_parameter" Reviewed-by: jnimeh ! src/java.base/share/classes/sun/security/ssl/ClientHandshakeContext.java ! src/java.base/share/classes/sun/security/ssl/PreSharedKeyExtension.java Changeset: 04c9b7111aac Author: mullan Date: 2018-12-11 13:22 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/04c9b7111aac 8207258: Distrust TLS server certificates anchored by Symantec Root CAs Reviewed-by: weijun + src/java.base/share/classes/sun/security/validator/CADistrustPolicy.java ! src/java.base/share/classes/sun/security/validator/EndEntityChecker.java + src/java.base/share/classes/sun/security/validator/SymantecTLSPolicy.java ! src/java.base/share/classes/sun/security/validator/Validator.java ! src/java.base/share/conf/security/java.security + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/Distrust.java + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/geotrustglobalca-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/geotrustprimarycag2-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/geotrustprimarycag3-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/geotrustuniversalca-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/thawteprimaryrootca-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/thawteprimaryrootcag2-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/thawteprimaryrootcag3-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/verisignclass3g3ca-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/verisignclass3g4ca-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/verisignclass3g5ca-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/verisignclass3g5ca-codesigning-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/Symantec/verisignuniversalrootca-chain.pem + test/lib/jdk/test/lib/security/SecurityUtils.java Changeset: c78a17d24618 Author: jcbeyler Date: 2018-12-11 10:29 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/c78a17d24618 8215161: Normalize spaces for vmTestbase/[a-j] Summary: Added spaces around comparators Reviewed-by: amenkov, sspitsyn, martin ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/Breakpoint/breakpoint001/breakpoint001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassLoad/classload001/classload001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc001/fieldacc001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc002/fieldacc002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc003/fieldacc003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldAccess/fieldacc004/fieldacc004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod001/fieldmod001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/FieldModification/fieldmod002/fieldmod002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/FramePop/framepop002/framepop002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetClassSignature/getclsig006/getclsig006.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetFieldName/getfldnm005/getfldnm005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetJNIFunctionTable/getjniftab001/getjniftab001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLineNumberTable/linetab003/linetab003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab003/localtab003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab004/localtab004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab005/localtab005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetMethodName/methname003/methname003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetTopThreadGroups/topthrgrp001/topthrgrp001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/callbacks/Callbacks.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/concrete-klass-filter/ConcreteKlassFilter.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/IterateThroughHeap/filter-tagged/HeapFilter.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/NativeMethodBind/nativemethbind002/nativemethbind002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/PopFrame/popframe004/popframe004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass008/redefclass008.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass009/redefclass009.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/RedefineClasses/redefclass010/redefclass010.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetJNIFunctionTable/setjniftab001/setjniftab001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SuspendThread/suspendthrd003/suspendthrd003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t011/cm01t011.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/capability/CM03/cm03t001/cm03t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC05/tc05t001/tc05t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM04/em04t001/em04t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/events/EM06/em06t001/em06t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS104/hs104t001/hs104t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t003/hs201t003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t002/hs202t002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t001/hs203t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t002/hs203t002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t001/hs204t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t002/hs204t002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t004/hs204t004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t004/hs301t004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS301/hs301t005/hs301t005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t001/hs302t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t002/hs302t002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t003/hs302t003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t004/hs302t004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t005/hs302t005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t006/hs302t006.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t007/hs302t007.cpp Changeset: 30df3fc36c72 Author: ecaspole Date: 2018-12-11 14:09 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/30df3fc36c72 8215140: Port missing crypto JMH micros from jmh-jdk-microbenchmarks Reviewed-by: redestad + test/micro/org/openjdk/bench/javax/crypto/full/AESBench.java + test/micro/org/openjdk/bench/javax/crypto/full/AESGCMBench.java + test/micro/org/openjdk/bench/javax/crypto/full/CryptoBase.java + test/micro/org/openjdk/bench/javax/crypto/full/DESedeBench.java + test/micro/org/openjdk/bench/javax/crypto/full/KeyPairGeneratorBench.java + test/micro/org/openjdk/bench/javax/crypto/full/MacBench.java + test/micro/org/openjdk/bench/javax/crypto/full/MessageDigestBench.java + test/micro/org/openjdk/bench/javax/crypto/full/RSABench.java + test/micro/org/openjdk/bench/javax/crypto/full/SecureRandomBench.java + test/micro/org/openjdk/bench/javax/crypto/full/SignatureBench.java + test/micro/org/openjdk/bench/javax/crypto/small/AESBench.java + test/micro/org/openjdk/bench/javax/crypto/small/AESGCMBench.java + test/micro/org/openjdk/bench/javax/crypto/small/KeyPairGeneratorBench.java + test/micro/org/openjdk/bench/javax/crypto/small/MessageDigestBench.java + test/micro/org/openjdk/bench/javax/crypto/small/RSABench.java + test/micro/org/openjdk/bench/javax/crypto/small/SecureRandomBench.java + test/micro/org/openjdk/bench/javax/crypto/small/SignatureBench.java Changeset: 722eaae2a785 Author: gziemski Date: 2018-12-11 14:09 -0600 URL: http://hg.openjdk.java.net/loom/loom/rev/722eaae2a785 8214310: SymbolTable: Use get and insert Summary: Replace get_insert() with get(),insert() Reviewed-by: redestad, coleenp ! src/hotspot/share/classfile/symbolTable.cpp ! src/hotspot/share/classfile/symbolTable.hpp Changeset: 837f1b8442be Author: jcbeyler Date: 2018-12-11 12:45 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/837f1b8442be 8215160: Normalize spaces for remaining vmTestbase tests Summary: Add spaces where needed Reviewed-by: sspitsyn, amenkov ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t009/hs302t009.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t010/hs302t010.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t011/hs302t011.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t012/hs302t012.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI01/ji01t001/ji01t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t002/ji03t002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t003/ji03t003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI03/ji03t004/ji03t004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/jni_interception/JI05/ji05t001/ji05t001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/GetLineNumberTable/linetab004/linetab004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/unit/functions/nosuspendMonitorInfo/JvmtiTest/JvmtiTest.cpp ! test/hotspot/jtreg/vmTestbase/nsk/monitoring/share/ThreadController.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/JVMTIagent.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/Injector.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/jvmti/hotswap/HotSwap.cpp ! test/hotspot/jtreg/vmTestbase/nsk/share/native/native_thread.cpp ! test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress002.cpp ! test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress004.cpp ! test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress005.cpp ! test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress006.cpp Changeset: b75a44aad06c Author: smarks Date: 2018-12-11 13:10 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/b75a44aad06c 8199394: Object.hashCode should not mention anything about memory addresses Reviewed-by: shade, forax, adinn, rriggs ! src/java.base/share/classes/java/lang/Object.java Changeset: 799e964e32b6 Author: naoto Date: 2018-12-11 13:13 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/799e964e32b6 8215194: Initial size of UnicodeBlock map is incorrect Reviewed-by: rriggs, rgoel, igerasim ! src/java.base/share/classes/java/lang/Character.java ! test/jdk/java/lang/Character/UnicodeBlock/OptimalMapSize.java Changeset: f0f3dc30e3bb Author: kbarrett Date: 2018-12-11 18:00 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/f0f3dc30e3bb 8215097: Do not create NonJavaThreads before BarrierSet Summary: G1 and CMS delay worker thread creation until BarrierSet exists. Reviewed-by: dholmes, tschatzl ! src/hotspot/share/gc/cms/cmsHeap.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/shared/barrierSet.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/thread.hpp Changeset: 4b0b796dd581 Author: iveresov Date: 2018-12-11 16:50 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/4b0b796dd581 8215224: Update Graal Reviewed-by: kvn ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/AOTCompiledClass.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.replacements/src/org/graalvm/compiler/api/replacements/SnippetReflectionProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/Fields.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/JavaConstantFieldProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64.test/src/org/graalvm/compiler/hotspot/amd64/test/StubAVXTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotBackendFactory.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/LoadJavaMirrorWithKlassTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/WriteBarrierAdditionTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfigBase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotCompiledCodeBuilder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalRuntime.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotHostBackend.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotReplacementsImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/DefaultHotSpotLoweringProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotGraphBuilderPlugins.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotLoweringProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotProviders.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotSnippetReflectionProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotWordOperationPlugin.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/InitializeKlassStubCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/ResolveConstantStubCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/aot/ResolveMethodAndLoadCountersStubCall.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/OnStackReplacementPhase.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/AESCryptSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/CipherBlockChainingSubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/HotSpotReplacementsUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/MonitorSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/NewObjectSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ObjectCloneNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ObjectCloneSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/SHA2Substitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/SHA5Substitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/SHASubstitutions.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/StringToBytesSnippets.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/UnsafeAccess.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/UnsafeLoadSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/WriteBarrierSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/profiling/ProbabilisticProfileSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/profiling/ProfileSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/CreateExceptionStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/ExceptionHandlerStub.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/ForeignCallSnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/ForeignCallStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/SnippetStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/StubUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/UnwindExceptionToCallerStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/VerifyOopStub.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/EncodedGraph.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/PiNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/extended/RawStoreNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/InstanceOfNode.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/DelegatingReplacements.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/Replacements.java + src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/SuppressFBWarnings.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/util/Providers.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.processor/src/org/graalvm/compiler/replacements/processor/InjectedDependencies.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.processor/src/org/graalvm/compiler/replacements/processor/NodeIntrinsicHandler.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/ReplacementsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/SnippetsTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/StringCompareToTest.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/GraphKit.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/NodeIntrinsificationProvider.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/PEGraphDecoder.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/ReplacementsImpl.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/ReplacementsUtil.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/SnippetTemplate.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/arraycopy/ArrayCopySnippets.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/AssertionNode.java ! test/hotspot/jtreg/compiler/aot/scripts/build-bootmodules.sh Changeset: c7c285b0b640 Author: dl Date: 2018-12-11 19:55 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/c7c285b0b640 8214559: Use {@systemProperty} for definitions of system properties Reviewed-by: martin, jjg ! src/java.base/share/classes/java/util/SplittableRandom.java ! src/java.base/share/classes/java/util/concurrent/ForkJoinPool.java Changeset: b4eaf570a588 Author: dl Date: 2018-12-11 19:55 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/b4eaf570a588 8214427: probable bug in logic of ConcurrentHashMap.addCount() Reviewed-by: martin, dholmes ! src/java.base/share/classes/java/util/concurrent/ConcurrentHashMap.java Changeset: a35f7a452257 Author: dl Date: 2018-12-11 19:55 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/a35f7a452257 8214457: Miscellaneous changes imported from jsr166 CVS 2018-12 Reviewed-by: martin ! src/java.base/share/classes/java/util/concurrent/locks/Lock.java ! src/java.base/share/classes/java/util/concurrent/locks/StampedLock.java ! src/java.base/share/classes/java/util/concurrent/package-info.java Changeset: a6182c464b31 Author: jgeorge Date: 2018-12-12 10:13 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/a6182c464b31 8200613: SA: jstack throws UnmappedAddressException with a CDS core file Summary: Dump the closed archive heap space into the corefile on Linux by setting bit 2 of the coredump_filter file to dump the file backed private mappings. Reviewed-by: iklam, cjplummer, kevinw, coleenp ! src/hotspot/os/linux/globals_linux.hpp ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoader.hpp ! test/hotspot/jtreg/serviceability/sa/ClhsdbCDSCore.java Changeset: d67b37917e82 Author: pmuthuswamy Date: 2018-12-12 13:01 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/d67b37917e82 8214468: jQuery UI upgrade from 1.11.4 to 1.12.1 Reviewed-by: hannesw ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDoclet.java - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_flat_75_ffffff_40x100.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png + src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_glass_65_dadada_1x400.png - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_glass_65_ffffff_1x400.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_glass_75_dadada_1x400.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_glass_95_fef1ec_1x400.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-icons_222222_256x240.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-icons_2e83ff_256x240.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-icons_454545_256x240.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-icons_888888_256x240.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-icons_cd0a0a_256x240.png ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/jquery-ui.css ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/jquery-ui.js ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/jquery-ui.min.css ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/jquery-ui.min.js ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/jquery-ui.structure.css ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/jquery-ui.structure.min.css ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/search.js ! src/jdk.javadoc/share/legal/jqueryUI.md ! test/langtools/jdk/javadoc/doclet/testSearch/TestSearch.java ! test/langtools/jdk/javadoc/tool/api/basic/APITest.java ! test/langtools/tools/javadoc/api/basic/APITest.java Changeset: 9c0231a493d6 Author: mbaesken Date: 2018-11-30 13:31 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/9c0231a493d6 8214380: AwtDragSource function LoadCache misses a ReleaseLongArrayElements in special case Reviewed-by: serb, stuefe ! src/java.desktop/windows/native/libawt/windows/awt_DnDDS.cpp Changeset: 1f1c949f55ff Author: serb Date: 2018-12-04 13:09 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/1f1c949f55ff 8198398: Test javax/swing/JColorChooser/Test6199676.java fails in mach5 Reviewed-by: kaddepalli, prr ! test/jdk/ProblemList.txt ! test/jdk/javax/swing/JColorChooser/Test6199676.java ! test/jdk/javax/swing/JTable/6735286/bug6735286.java Changeset: 840d66c98b6c Author: psadhukhan Date: 2018-12-05 15:42 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/840d66c98b6c Merge - test/jdk/java/util/Properties/Compatibility.xml - test/jdk/java/util/Properties/CompatibilityTest.java Changeset: fcbea0fb586c Author: psadhukhan Date: 2018-12-05 15:48 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/fcbea0fb586c 8213049: Invalid HTML5 in javax.swing files Reviewed-by: aivanov, serb ! src/java.desktop/share/classes/javax/swing/Action.java ! src/java.desktop/share/classes/javax/swing/plaf/multi/doc-files/multi_tsc.html ! src/java.desktop/share/classes/javax/swing/plaf/nimbus/doc-files/properties.html ! src/java.desktop/share/classes/javax/swing/plaf/synth/doc-files/componentProperties.html ! src/java.desktop/share/classes/javax/swing/plaf/synth/doc-files/synthFileFormat.html Changeset: 7ed5edf6ba0c Author: itakiguchi Date: 2018-12-05 12:59 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/7ed5edf6ba0c 8214002: Cannot use italic font style if the font has embedded bitmap Reviewed-by: prr ! src/java.desktop/share/native/libfontmanager/freetypeScaler.c + test/jdk/java/awt/font/TextLayout/FontGlyphCompare.java Changeset: 5adeed0d6311 Author: dmarkov Date: 2018-12-06 13:32 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/5adeed0d6311 8213983: [macosx] Keyboard shortcut ?cmd +`? stops working properly if popup window is displayed Reviewed-by: kaddepalli, serb ! src/java.desktop/macosx/classes/sun/lwawt/macosx/CPlatformWindow.java Changeset: 538b38d16d94 Author: kcr Date: 2018-12-06 10:50 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/538b38d16d94 8214805: Mark deprecated netscape.javascript.JSObject::getWindow API forRemoval=true Reviewed-by: prr, serb ! src/jdk.jsobject/share/classes/netscape/javascript/JSObject.java Changeset: c00ce2c36143 Author: psadhukhan Date: 2018-12-07 09:38 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/c00ce2c36143 8214943: PIT: javax/swing/JFrame/NSTexturedJFrame/NSTexturedJFrame.java errors out in mac Reviewed-by: kaddepalli, serb ! test/jdk/javax/swing/JFrame/NSTexturedJFrame/NSTexturedJFrame.java Changeset: c57f1850d44f Author: prr Date: 2018-12-10 12:33 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/c57f1850d44f 8212703: Remove sun.java2d.fontpath property from java launcher code Reviewed-by: alanb, rriggs ! src/java.base/share/classes/jdk/internal/util/SystemProps.java ! src/java.base/share/native/libjava/System.c ! src/java.base/share/native/libjava/java_props.h ! src/java.base/unix/native/libjava/java_props_md.c ! src/java.base/windows/native/libjava/java_props_md.c + test/jdk/java/awt/font/FontPathEnvTest/FontPathEnvTest.java Changeset: 8e26761a2c2e Author: psadhukhan Date: 2018-12-11 10:47 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/8e26761a2c2e Merge - src/hotspot/share/gc/cms/vmCMSOperations.cpp - src/hotspot/share/gc/cms/vmCMSOperations.hpp - src/hotspot/share/gc/g1/vm_operations_g1.cpp - src/hotspot/share/gc/g1/vm_operations_g1.hpp - src/hotspot/share/gc/parallel/vmPSOperations.cpp - src/hotspot/share/gc/parallel/vmPSOperations.hpp - src/hotspot/share/gc/shared/vmGCOperations.cpp - src/hotspot/share/gc/shared/vmGCOperations.hpp - src/hotspot/share/runtime/vm_operations.cpp - src/hotspot/share/runtime/vm_operations.hpp ! src/java.base/share/classes/jdk/internal/util/SystemProps.java - src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM964.java - src/jdk.charsets/share/classes/sun/nio/cs/ext/SimpleEUCEncoder.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64.test/src/org/graalvm/compiler/core/amd64/test/MatchRuleTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.jdk9.test/src/org/graalvm/compiler/core/test/ea/AtomicVirtualizationTests.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/EliminateRedundantInitializationPhaseTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/PrintStreamOptionKey.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/ComputeObjectAddressNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/GetObjectAddressNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopySnippets.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyWithSlowPathNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/CheckcastArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/GenericArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.test/src/org/graalvm/compiler/lir/test/alloc/trace/TraceGlobalMoveResolutionMappingTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/DefaultTraceRegisterAllocationPolicy.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/GlobalLivenessAnalysisPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/GlobalLivenessInfo.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/ShadowedRegisterValue.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceAssertions.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceBuilderPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceGlobalMoveResolutionPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceGlobalMoveResolver.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceRegisterAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceRegisterAllocationPolicy.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceUtil.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TrivialTraceAllocator.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/bu/BottomUpAllocator.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/FixedInterval.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/FixedRange.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/IntervalHint.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/RegisterVerifier.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceInterval.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanAssignLocationsPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanEliminateSpillMovePhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanLifetimeAnalysisPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanRegisterAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanResolveDataFlowPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanWalker.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLocalMoveResolver.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/ControlFlowGraphState.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/TraceBuilderBenchmark.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/TraceLSRAIntervalBuildingBench.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyBailoutUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyCallerSensitiveMethods.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyDebugUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyGetOptionsUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyGraphAddUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyInstanceOfUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyUpdateUsages.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyUsageWithEquals.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyVirtualizableUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.jdk9_11.test/src/org/graalvm/compiler/replacements/jdk9_11/test/UnsafeObjectReplacementsTest.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Command.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Execute.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/HelpCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/JSONWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrettyWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrintCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/ReconstructCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SplitCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/StructuredWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SummaryCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/XMLWriter.java - test/hotspot/jtreg/compiler/graalunit/Replacements9_11Test.java - test/hotspot/jtreg/gc/epsilon/CriticalNativeArgs.java - test/hotspot/jtreg/gc/epsilon/CriticalNativeStress.java - test/hotspot/jtreg/gc/epsilon/libCriticalNative.c - test/hotspot/jtreg/vmTestbase/nsk/stress/network/TEST.properties - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network001.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network002.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network003.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network004.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network005.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network006.java ! test/jdk/ProblemList.txt - test/jdk/java/util/ResourceBundle/Control/MissingResourceCauseTest.sh - test/jdk/jdk/jfr/cmd/ExecuteHelper.java - test/jdk/jdk/jfr/cmd/TestHelp.java - test/jdk/jdk/jfr/cmd/TestPrint.java - test/jdk/jdk/jfr/cmd/TestPrintDefault.java - test/jdk/jdk/jfr/cmd/TestPrintJSON.java - test/jdk/jdk/jfr/cmd/TestPrintXML.java - test/jdk/jdk/jfr/cmd/TestReconstruct.java - test/jdk/jdk/jfr/cmd/TestSplit.java - test/jdk/jdk/jfr/cmd/TestSummary.java - test/jdk/sun/security/pkcs11/nss/src/nss-3.16-with-nspr-4.10.4.tar.gz - test/jdk/sun/security/pkcs11/nss/src/nss-3.16-with-nspr-4.10.4.tar.gz.sha256 - test/jdk/sun/text/IntHashtable/Bug4170614Test.sh - test/jdk/sun/text/IntHashtable/patch-src/java/text/Bug4170614Test.java Changeset: 271665438bbc Author: jdv Date: 2018-12-11 11:41 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/271665438bbc 8214817: Bad links in ImageInputStream.java & ImageOutputStream.java Reviewed-by: aivanov, psadhukhan ! src/java.desktop/share/classes/javax/imageio/stream/ImageInputStream.java ! src/java.desktop/share/classes/javax/imageio/stream/ImageOutputStream.java Changeset: a659ccd1888d Author: jdv Date: 2018-12-11 11:45 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/a659ccd1888d 8214876: Add "intermittent" key for imageio/stream/StreamCloserLeak/run_test.sh Reviewed-by: psadhukhan ! test/jdk/javax/imageio/stream/StreamCloserLeak/run_test.sh Changeset: ddbd9744a3d5 Author: psadhukhan Date: 2018-12-12 15:04 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/ddbd9744a3d5 Merge - make/scripts/pandoc-manpage-filter.js - make/scripts/pandoc-manpage-filter.sh.template - src/jdk.internal.le/share/classes/jdk/internal/jline/DefaultTerminal2.java - src/jdk.internal.le/share/classes/jdk/internal/jline/NoInterruptUnixTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/OSvTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/Terminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/Terminal2.java - src/jdk.internal.le/share/classes/jdk/internal/jline/TerminalFactory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/TerminalSupport.java - src/jdk.internal.le/share/classes/jdk/internal/jline/UnixTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/UnsupportedTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/WindowsTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/ConsoleKeys.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/ConsoleReader.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/CursorBuffer.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/KeyMap.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/KillRing.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/Operation.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/UserInterruptException.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/WCWidth.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/AggregateCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/AnsiStringsCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/ArgumentCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CandidateListCompletionHandler.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CandidateListCompletionHandler.properties - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/Completer.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CompletionHandler.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/EnumCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/FileNameCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/NullCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/StringsCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/FileHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/History.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/MemoryHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/PersistentHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/internal/ConsoleReaderInputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/internal/ConsoleRunner.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/extra/AnsiInterpretingOutputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/extra/EditingHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Ansi.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Configuration.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Curses.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/InfoCmp.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/InputStreamReader.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Log.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/NonBlockingInputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Nullable.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Preconditions.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/ShutdownHooks.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/TerminalLineSettings.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/TestAccessible.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Urls.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/package-info.java - src/jdk.internal.le/windows/native/lible/WindowsTerminal.cpp - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/UnsafeAccess.java - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_flat_75_ffffff_40x100.png - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_glass_65_ffffff_1x400.png ! test/jdk/ProblemList.txt - test/jdk/jdk/internal/jline/console/StripAnsiTest.java - test/jdk/jdk/internal/jline/extra/AnsiInterpretingOutputStreamTest.java - test/jdk/jdk/internal/jline/extra/HistoryTest.java Changeset: 35e2bbea78b2 Author: tschatzl Date: 2018-12-12 12:00 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/35e2bbea78b2 8152724: Sum of eden before GC and current survivor capacity may be larger than heap size Summary: Limit the maximum survivor size for a given GC to the remaining number of free regions. Reviewed-by: sjohanss, sangheki ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/g1/g1HeapTransition.cpp ! src/hotspot/share/gc/g1/g1Policy.cpp ! src/hotspot/share/gc/g1/g1Policy.hpp + test/hotspot/jtreg/gc/g1/TestEdenSurvivorLessThanMax.java Changeset: 21dfea980e23 Author: clanger Date: 2018-12-12 11:34 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/21dfea980e23 8214892: Delayed starting of debugging via jcmd Reviewed-by: cjplummer, clanger Contributed-by: ralf.schmelter at sap.com ! src/hotspot/share/services/diagnosticCommand.cpp ! src/hotspot/share/services/diagnosticCommand.hpp ! src/jdk.jdwp.agent/share/native/libjdwp/debugInit.c + test/jdk/com/sun/jdi/OnJcmdTest.java Changeset: 2e4903f83295 Author: dpochepk Date: 2018-12-12 15:26 +0300 URL: http://hg.openjdk.java.net/loom/loom/rev/2e4903f83295 8205421: AARCH64: StubCodeMark should be placed after alignment Reviewed-by: aph ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp Changeset: 95efb32d390b Author: redestad Date: 2018-12-12 13:28 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/95efb32d390b 8215159: Improve initial setup of system Properties Reviewed-by: mchung, rriggs, plevart, briangoetz, robilad ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/java/lang/VersionProps.java.template ! src/java.base/share/classes/jdk/internal/misc/VM.java ! src/java.base/share/classes/jdk/internal/util/SystemProps.java Changeset: 7384e00d5860 Author: mhorie Date: 2018-12-11 20:31 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/7384e00d5860 8213754: PPC64: Add Intrinsics for isDigit/isLowerCase/isUpperCase/isWhitespace Reviewed-by: kvn, rriggs, mdoerr, gromero ! make/data/characterdata/CharacterData00.java.template ! make/data/characterdata/CharacterData01.java.template ! make/data/characterdata/CharacterData02.java.template ! make/data/characterdata/CharacterData0E.java.template ! make/data/characterdata/CharacterDataLatin1.java.template ! make/data/characterdata/CharacterDataPrivateUse.java.template ! make/data/characterdata/CharacterDataUndefined.java.template ! src/hotspot/cpu/ppc/assembler_ppc.hpp ! src/hotspot/cpu/ppc/assembler_ppc.inline.hpp ! src/hotspot/cpu/ppc/ppc.ad ! src/hotspot/cpu/ppc/vm_version_ppc.cpp ! src/hotspot/share/classfile/vmSymbols.cpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/opto/c2_globals.hpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/classes.hpp ! src/hotspot/share/opto/intrinsicnode.hpp ! src/hotspot/share/opto/library_call.cpp ! src/java.base/share/classes/java/lang/Character.java ! src/java.base/share/classes/java/lang/CharacterData.java + test/micro/org/openjdk/bench/java/lang/Characters.java Changeset: 24525070d934 Author: eosterlund Date: 2018-12-12 14:18 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/24525070d934 8215206: VtableStubs::find_stub is not appropriately protected by VtableStubs_lock Reviewed-by: thartmann, pliden ! src/hotspot/share/code/vtableStubs.cpp Changeset: 4eff16f47ae2 Author: egahlin Date: 2018-12-12 18:35 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/4eff16f47ae2 8165675: Trace event for thread park has incorrect unit for timeout Reviewed-by: mgronlun ! src/hotspot/share/jfr/metadata/metadata.xml ! src/hotspot/share/prims/unsafe.cpp ! src/java.base/share/classes/jdk/internal/event/EventHelper.java ! src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordedObject.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/tool/PrettyWriter.java ! test/jdk/jdk/jfr/event/runtime/TestThreadParkEvent.java ! test/jdk/jdk/jfr/jmx/security/TestEnoughPermission.java ! test/lib/jdk/test/lib/jfr/Events.java Changeset: 122b1ecfaa6e Author: egahlin Date: 2018-12-12 18:43 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/122b1ecfaa6e 8214750: Unnecessary

tags in jfr classes Reviewed-by: mgronlun ! src/jdk.jfr/share/classes/jdk/jfr/package-info.java ! src/jdk.management.jfr/share/classes/jdk/management/jfr/FlightRecorderMXBean.java Changeset: 7b4f2f7376fe Author: erikj Date: 2018-12-12 09:50 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/7b4f2f7376fe 8215239: Make deletes images/jdk/bin/java if something goes wrong Reviewed-by: redestad, dholmes, tbell, ihse ! make/Images.gmk Changeset: 2e41937c9cab Author: ihse Date: 2018-12-11 15:47 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/2e41937c9cab 8214910: If pandoc is present, markdown spec files should be processed Reviewed-by: erikj, lancea ! make/Docs.gmk Changeset: 6538fccf77a8 Author: ihse Date: 2018-12-12 18:59 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/6538fccf77a8 8214741: docs/index.html has no title or copyright Reviewed-by: erikj ! make/Docs.gmk + make/data/docs-resources/index.html Changeset: 0d0f59acf65a Author: ihse Date: 2018-12-12 19:04 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/0d0f59acf65a 8215304: Make target "docs-jdk-index" has unnecessary dependencies Reviewed-by: lancea ! make/Main.gmk Changeset: 468829d1983e Author: tnakamura Date: 2018-12-13 00:46 +0900 URL: http://hg.openjdk.java.net/loom/loom/rev/468829d1983e 8213183: InputMethod cannot be used after its restarting Summary: Retains masks at XSelectInput and deletes all IM data at DestroyXIMCallback Reviewed-by: naoto ! src/java.desktop/unix/classes/sun/awt/X11/XMSelection.java ! src/java.desktop/unix/native/libawt_xawt/awt/awt_InputMethod.c + test/jdk/java/awt/im/InputContext/ReconnectTest.java Changeset: 7c8f8949a07d Author: mchung Date: 2018-12-12 11:17 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/7c8f8949a07d 8215238: (jdeps) update jdk8_internals.txt per the removal of javafx, corba, EE modules Reviewed-by: lancea, alanb ! src/jdk.jdeps/share/classes/com/sun/tools/jdeps/Module.java ! src/jdk.jdeps/share/classes/com/sun/tools/jdeps/ModuleDotGraph.java ! src/jdk.jdeps/share/classes/com/sun/tools/jdeps/resources/jdk8_internals.txt Changeset: 18f36a093334 Author: henryjen Date: 2018-12-12 11:45 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/18f36a093334 8215000: tools/launcher/JliLaunchTest.java fails on Windows Reviewed-by: bchristi, mchung ! test/jdk/tools/launcher/JliLaunchTest.java Changeset: 1ed8de9045a7 Author: ascarpino Date: 2018-12-12 12:17 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/1ed8de9045a7 8214074: Ghash optimization using AVX instructions Reviewed-by: kvn, ascarpino Contributed-by: smita.kamath at intel.com ! src/hotspot/cpu/x86/assembler_x86.cpp ! src/hotspot/cpu/x86/assembler_x86.hpp ! src/hotspot/cpu/x86/macroAssembler_x86.hpp + src/hotspot/cpu/x86/macroAssembler_x86_aes.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/stubRoutines_x86.cpp ! src/hotspot/cpu/x86/stubRoutines_x86.hpp ! src/java.base/share/classes/com/sun/crypto/provider/GHASH.java Changeset: 9e28eff3d40f Author: rriggs Date: 2018-12-12 15:35 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/9e28eff3d40f 8215309: Convert package.html files to package-info.java files Reviewed-by: darcy, lancea + src/java.logging/share/classes/java/util/logging/package-info.java - src/java.logging/share/classes/java/util/logging/package.html + src/java.prefs/share/classes/java/util/prefs/package-info.java - src/java.prefs/share/classes/java/util/prefs/package.html + src/java.rmi/share/classes/java/rmi/activation/package-info.java - src/java.rmi/share/classes/java/rmi/activation/package.html + src/java.rmi/share/classes/java/rmi/dgc/package-info.java - src/java.rmi/share/classes/java/rmi/dgc/package.html + src/java.rmi/share/classes/java/rmi/package-info.java - src/java.rmi/share/classes/java/rmi/package.html + src/java.rmi/share/classes/java/rmi/registry/package-info.java - src/java.rmi/share/classes/java/rmi/registry/package.html + src/java.rmi/share/classes/java/rmi/server/package-info.java - src/java.rmi/share/classes/java/rmi/server/package.html + src/java.rmi/share/classes/javax/rmi/ssl/package-info.java - src/java.rmi/share/classes/javax/rmi/ssl/package.html + src/java.smartcardio/share/classes/javax/smartcardio/package-info.java - src/java.smartcardio/share/classes/javax/smartcardio/package.html + src/java.sql.rowset/share/classes/com/sun/rowset/package-info.java - src/java.sql.rowset/share/classes/com/sun/rowset/package.html + src/java.sql.rowset/share/classes/com/sun/rowset/providers/package-info.java - src/java.sql.rowset/share/classes/com/sun/rowset/providers/package.html + src/java.sql.rowset/share/classes/javax/sql/rowset/serial/package-info.java - src/java.sql.rowset/share/classes/javax/sql/rowset/serial/package.html + src/java.sql/share/classes/java/sql/package-info.java - src/java.sql/share/classes/java/sql/package.html + src/java.sql/share/classes/javax/sql/package-info.java - src/java.sql/share/classes/javax/sql/package.html Changeset: 4bb6e0871bf7 Author: vdeshpande Date: 2018-12-12 14:48 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/4bb6e0871bf7 8214751: X86: Support for VNNI Instructions Reviewed-by: kvn Contributed-by: razvan.a.lupusoru at intel.com, vivek.r.deshpande at intel.com ! src/hotspot/cpu/x86/assembler_x86.cpp ! src/hotspot/cpu/x86/assembler_x86.hpp ! src/hotspot/cpu/x86/vm_version_x86.cpp ! src/hotspot/cpu/x86/vm_version_x86.hpp ! src/hotspot/cpu/x86/x86.ad ! src/hotspot/cpu/x86/x86_32.ad ! src/hotspot/cpu/x86/x86_64.ad ! src/hotspot/share/adlc/formssel.cpp ! src/hotspot/share/opto/classes.hpp ! src/hotspot/share/opto/loopnode.hpp ! src/hotspot/share/opto/loopopts.cpp ! src/hotspot/share/opto/matcher.cpp ! src/hotspot/share/opto/mulnode.hpp ! src/hotspot/share/opto/superword.cpp ! src/hotspot/share/opto/superword.hpp ! src/hotspot/share/opto/vectornode.cpp ! src/hotspot/share/opto/vectornode.hpp + test/hotspot/jtreg/compiler/loopopts/superword/Vec_MulAddS2I.java Changeset: 2626982cf4f7 Author: mr Date: 2018-12-12 15:01 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/2626982cf4f7 8215301: Module-summary page is unreadably wide Reviewed-by: mchung ! make/jdk/src/classes/build/tools/jigsaw/ModuleSummary.java Changeset: d590cf6b4fac Author: jjiang Date: 2018-12-13 08:23 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/d590cf6b4fac 8214520: [TEST_BUG] sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.java failed with incorrect jtreg tags order Reviewed-by: xuelei ! test/jdk/sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.java Changeset: 9af672cab7cb Author: valeriep Date: 2018-12-13 01:15 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/9af672cab7cb 7092821: java.security.Provider.getService() is synchronized and became scalability bottleneck Summary: Changed Provider class to use ConcurrentHashMap and default providers to use putService() Reviewed-by: weijun, mullan ! src/java.base/share/classes/com/sun/crypto/provider/SunJCE.java ! src/java.base/share/classes/java/security/Provider.java ! src/java.base/share/classes/sun/security/provider/Sun.java ! src/java.base/share/classes/sun/security/provider/SunEntries.java ! src/java.base/share/classes/sun/security/provider/VerificationProvider.java ! src/java.base/share/classes/sun/security/rsa/SunRsaSign.java ! src/java.base/share/classes/sun/security/rsa/SunRsaSignEntries.java ! src/java.base/share/classes/sun/security/ssl/SunJSSE.java Changeset: 2457d862a646 Author: weijun Date: 2018-12-13 11:16 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/2457d862a646 8076190: Customizing the generation of a PKCS12 keystore Reviewed-by: mullan + src/java.base/share/classes/com/sun/crypto/provider/HmacPKCS12PBECore.java - src/java.base/share/classes/com/sun/crypto/provider/HmacPKCS12PBESHA1.java ! src/java.base/share/classes/com/sun/crypto/provider/PBES2Parameters.java ! src/java.base/share/classes/com/sun/crypto/provider/SunJCE.java ! src/java.base/share/classes/java/security/KeyStore.java ! src/java.base/share/classes/sun/security/pkcs12/PKCS12KeyStore.java ! src/java.base/share/classes/sun/security/tools/keytool/Main.java ! src/java.base/share/classes/sun/security/x509/AlgorithmId.java ! src/java.base/share/conf/security/java.security + test/jdk/sun/security/pkcs12/ParamsPreferences.java + test/jdk/sun/security/pkcs12/ParamsTest.java + test/jdk/sun/security/pkcs12/params/README + test/jdk/sun/security/pkcs12/params/kandc + test/jdk/sun/security/pkcs12/params/ks + test/jdk/sun/security/pkcs12/params/os2 + test/jdk/sun/security/pkcs12/params/os3 + test/jdk/sun/security/pkcs12/params/os4 + test/jdk/sun/security/pkcs12/params/os5 ! test/jdk/sun/security/tools/keytool/ProbingFailure.java + test/lib/jdk/test/lib/security/DerUtils.java Changeset: 85ade44f351a Author: weijun Date: 2018-12-13 12:03 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/85ade44f351a 8214568: Use {@systemProperty} for definitions of system properties Reviewed-by: xuelei ! src/java.security.jgss/share/classes/javax/security/auth/kerberos/package-info.java + src/java.security.jgss/share/classes/org/ietf/jgss/package-info.java - src/java.security.jgss/share/classes/org/ietf/jgss/package.html ! src/jdk.security.auth/share/classes/com/sun/security/auth/login/ConfigFile.java ! src/jdk.security.auth/share/classes/com/sun/security/auth/module/Krb5LoginModule.java Changeset: 77f31b03cc0e Author: dl Date: 2018-12-12 20:13 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/77f31b03cc0e 8215326: Test java/util/concurrent/ConcurrentHashMap/ToArray.java hangs after j.u.c updates Reviewed-by: martin, dholmes ! src/java.base/share/classes/java/util/concurrent/ForkJoinPool.java Changeset: 8b585e1b2805 Author: jjiang Date: 2018-12-13 12:34 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/8b585e1b2805 8214937: sun/security/tools/jarsigner/warnings/NoTimestampTest.java failed due to unexpected expiration date Reviewed-by: xuelei ! test/jdk/sun/security/tools/jarsigner/warnings/NoTimestampTest.java Changeset: 108a161aed93 Author: kvn Date: 2018-12-12 21:02 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/108a161aed93 8215317: [GRAAL] unit test CheckGraalIntrinsics failed after 8213754 Summary: Fix CheckGraalIntrinsics test for new intrinsics. Reviewed-by: iveresov, never ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java Changeset: 50aff73aaba3 Author: epavlova Date: 2018-12-12 22:23 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/50aff73aaba3 8215314: [Graal] Enable org.graalvm.compiler.core.test.CountedLoopTest Reviewed-by: dlong ! test/hotspot/jtreg/ProblemList-graal.txt Changeset: 9d60798b21af Author: jcm Date: 2018-12-12 23:08 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/9d60798b21af 8211034: OnStackReplacePercentage option checking has bugs Summary: Fixed the constraint checks Reviewed-by: kvn ! src/hotspot/share/interpreter/invocationCounter.cpp ! src/hotspot/share/oops/methodCounters.hpp ! src/hotspot/share/opto/parseHelper.cpp ! src/hotspot/share/runtime/flags/jvmFlagConstraintsCompiler.cpp ! test/hotspot/jtreg/testlibrary_tests/whitebox/vm_flags/IntxTest.java Changeset: ff1c86e85d02 Author: jlahoda Date: 2018-12-13 08:26 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/ff1c86e85d02 8215243: JShell tests failing intermitently with \"Problem cleaning up the following threads:\" Summary: Do not reset closed state in the StopDetectingInputStream.write Reviewed-by: rfield ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/StopDetectingInputStream.java Changeset: b9d34a97a4be Author: jgeorge Date: 2018-12-13 13:03 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/b9d34a97a4be 8202884: SA: Attach/detach might fail on Linux if debugee application create/destroy threads during attaching Summary: While doing a ptrace attach, do not attach to threads which are in the process of exiting or are zombies -- skip these threads. Reviewed-by: jcbeyler, ysuenaga ! src/jdk.hotspot.agent/linux/native/libsaproc/libproc_impl.c ! src/jdk.hotspot.agent/linux/native/libsaproc/libproc_impl.h ! src/jdk.hotspot.agent/linux/native/libsaproc/ps_proc.c Changeset: 888592cdb2d0 Author: alanb Date: 2018-12-13 09:02 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/888592cdb2d0 8214696: Module class should be filtered by core reflection Reviewed-by: lancea, mchung, sundar ! src/java.base/share/classes/jdk/internal/reflect/Reflection.java ! test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaType.java ! test/jdk/jdk/internal/reflect/Reflection/Filtering.java Changeset: 4debb3321e65 Author: weijun Date: 2018-12-13 17:28 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/4debb3321e65 8213009: Refactoring existing SunMSCAPI classes Reviewed-by: valeriep + src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CKey.java + src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CKeyPair.java + src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CKeyPairGenerator.java + src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CKeyStore.java + src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CPrivateKey.java + src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CPublicKey.java + src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CRSACipher.java + src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CSignature.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/Key.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/KeyStore.java ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/PRNG.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSACipher.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAKeyPair.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAKeyPairGenerator.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAPrivateKey.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAPublicKey.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSASignature.java ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/SunMSCAPI.java ! src/jdk.crypto.mscapi/windows/native/libsunmscapi/security.cpp + test/jdk/sun/security/mscapi/KeyAlgorithms.java Changeset: e2798bf6318a Author: weijun Date: 2018-12-13 17:28 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/e2798bf6318a 8213010: Supporting keys created with certmgr.exe Reviewed-by: valeriep ! src/java.base/share/classes/sun/security/util/ECUtil.java ! src/jdk.crypto.ec/share/classes/sun/security/ec/ECDSASignature.java ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CKey.java ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CKeyStore.java ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CPublicKey.java ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CSignature.java ! src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/SunMSCAPI.java ! src/jdk.crypto.mscapi/windows/native/libsunmscapi/security.cpp Changeset: 9a73a4e4011f Author: jgeorge Date: 2018-12-13 15:11 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/9a73a4e4011f 8214226: Incorrect BCI and Line Number with jstack if the top frame is in the interpreter Summary: Read in the bcp from r13 for the top level interpreter frames Reviewed-by: jcbeyler, jgeorge Contributed-by: david.griffiths at gmail.com ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/linux_amd64/LinuxAMD64JavaThreadPDAccess.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/x86/X86Frame.java Changeset: c45615dc6bfc Author: dfuchs Date: 2018-12-13 11:27 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/c45615dc6bfc 8211093: Default logging.properties sets log level for com.xyz.foo Reviewed-by: bpb, rriggs ! src/java.logging/share/conf/logging.properties + test/jdk/java/util/logging/DefaultConfigTest.java Changeset: 086dfcfc3731 Author: goetz Date: 2018-12-13 08:36 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/086dfcfc3731 8215534: [testbug] some jfr test don't check @requires vm.hasJFR Reviewed-by: sundar, egahlin ! test/jdk/jdk/jfr/event/security/TestSecurityPropertyModificationEvent.java ! test/jdk/jdk/jfr/event/security/TestTLSHandshakeEvent.java ! test/jdk/jdk/jfr/event/security/TestX509CertificateEvent.java ! test/jdk/jdk/jfr/event/security/TestX509ValidationEvent.java Changeset: 1c85328b7631 Author: mhorie Date: 2018-12-12 12:36 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/1c85328b7631 8215262: PPC64: FMA Vectorization on PPC64 Reviewed-by: mdoerr, gromero ! src/hotspot/cpu/ppc/assembler_ppc.hpp ! src/hotspot/cpu/ppc/assembler_ppc.inline.hpp ! src/hotspot/cpu/ppc/ppc.ad Changeset: c1eed9867bf0 Author: sgehwolf Date: 2018-12-13 10:25 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/c1eed9867bf0 8215342: [Zero] Build fails after JDK-8200613 Reviewed-by: shade, jgeorge Contributed-by: Christophe Phillips ! src/hotspot/os/linux/os_linux.cpp Changeset: c8b2a408628b Author: egahlin Date: 2018-12-13 14:21 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/c8b2a408628b 8215175: Inconsistencies in JFR event metadata Reviewed-by: mgronlun ! src/hotspot/share/jfr/leakprofiler/emitEventOperation.cpp ! src/hotspot/share/jfr/metadata/metadata.xml ! src/hotspot/share/jfr/metadata/metadata.xsd ! src/hotspot/share/jfr/periodic/jfrNetworkUtilization.cpp ! src/jdk.jfr/share/classes/jdk/jfr/internal/MetadataHandler.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformRecording.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/Utils.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/AbstractDCmd.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdCheck.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdConfigure.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/tool/PrettyWriter.java + test/jdk/jdk/jfr/api/metadata/annotations/TestFormatMissingValue.java Changeset: 339d2fbe8675 Author: mgronlun Date: 2018-12-13 14:36 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/339d2fbe8675 8215284: Reduce noise induced by periodic task getFileSize() Reviewed-by: redestad, egahlin ! src/hotspot/share/jfr/jni/jfrJniMethod.cpp ! src/hotspot/share/jfr/jni/jfrJniMethod.hpp ! src/hotspot/share/jfr/jni/jfrJniMethodRegistration.cpp + src/hotspot/share/jfr/recorder/repository/jfrChunkRotation.cpp + src/hotspot/share/jfr/recorder/repository/jfrChunkRotation.hpp - src/hotspot/share/jfr/recorder/repository/jfrChunkSizeNotifier.cpp - src/hotspot/share/jfr/recorder/repository/jfrChunkSizeNotifier.hpp ! src/hotspot/share/jfr/recorder/service/jfrRecorderService.cpp ! src/jdk.jfr/share/classes/jdk/jfr/internal/JVM.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformRecorder.java Changeset: 632c4baddbb8 Author: zgu Date: 2018-12-12 13:50 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/632c4baddbb8 8215220: Simplify Shenandoah task termination in aborted paths Reviewed-by: shade ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp ! src/hotspot/share/gc/shenandoah/shenandoahTaskqueue.cpp ! src/hotspot/share/gc/shenandoah/shenandoahTaskqueue.hpp ! src/hotspot/share/gc/shenandoah/shenandoahTraversalGC.cpp Changeset: 9f13f8aad8dc Author: egahlin Date: 2018-12-13 15:40 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/9f13f8aad8dc 8215237: jdk.jfr.Recording javadoc does not compile Reviewed-by: mgronlun ! src/jdk.jfr/share/classes/jdk/jfr/Recording.java ! src/jdk.jfr/share/classes/jdk/jfr/consumer/package-info.java Changeset: e10a1f7aaa13 Author: shade Date: 2018-12-13 16:14 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/e10a1f7aaa13 8215354: x86_32 build failures after JDK-8214074 (Ghash optimization using AVX instructions) Reviewed-by: thartmann ! src/hotspot/cpu/x86/macroAssembler_x86_aes.cpp Changeset: 8bf9268df0e2 Author: redestad Date: 2018-12-13 15:31 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/8bf9268df0e2 8215281: Use String.isEmpty() when applicable in java.base Reviewed-by: dfuchs, alanb ! src/java.base/share/classes/com/sun/java/util/jar/pack/Attribute.java ! src/java.base/share/classes/com/sun/java/util/jar/pack/Driver.java ! src/java.base/share/classes/com/sun/net/ssl/KeyManagerFactory.java ! src/java.base/share/classes/com/sun/net/ssl/SSLContext.java ! src/java.base/share/classes/com/sun/net/ssl/TrustManagerFactory.java ! src/java.base/share/classes/java/io/Console.java ! src/java.base/share/classes/java/lang/ClassLoader.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/Package.java ! src/java.base/share/classes/java/lang/Runtime.java ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/VersionProps.java.template ! src/java.base/share/classes/java/lang/invoke/ConstantBootstraps.java ! src/java.base/share/classes/java/lang/invoke/MethodHandles.java ! src/java.base/share/classes/java/lang/invoke/ProxyClassesDumper.java ! src/java.base/share/classes/java/net/HttpCookie.java ! src/java.base/share/classes/java/net/Inet6Address.java ! src/java.base/share/classes/java/net/InetAddress.java ! src/java.base/share/classes/java/net/SocketPermission.java ! src/java.base/share/classes/java/net/URI.java ! src/java.base/share/classes/java/net/URL.java ! src/java.base/share/classes/java/net/URLClassLoader.java ! src/java.base/share/classes/java/net/URLDecoder.java ! src/java.base/share/classes/java/net/URLPermission.java ! src/java.base/share/classes/java/net/URLStreamHandler.java ! src/java.base/share/classes/java/nio/file/LinkPermission.java ! src/java.base/share/classes/java/security/AlgorithmParameterGenerator.java ! src/java.base/share/classes/java/security/AlgorithmParameters.java ! src/java.base/share/classes/java/security/KeyStore.java ! src/java.base/share/classes/java/security/MessageDigest.java ! src/java.base/share/classes/java/security/Permission.java ! src/java.base/share/classes/java/security/Policy.java ! src/java.base/share/classes/java/security/SecureRandom.java ! src/java.base/share/classes/java/security/Security.java ! src/java.base/share/classes/java/security/Signature.java ! src/java.base/share/classes/java/security/cert/TrustAnchor.java ! src/java.base/share/classes/java/text/AttributedString.java ! src/java.base/share/classes/java/text/CollationElementIterator.java ! src/java.base/share/classes/java/text/CompactNumberFormat.java ! src/java.base/share/classes/java/text/DecimalFormat.java ! src/java.base/share/classes/java/text/DecimalFormatSymbols.java ! src/java.base/share/classes/java/text/MergeCollation.java ! src/java.base/share/classes/java/text/MessageFormat.java ! src/java.base/share/classes/java/text/PatternEntry.java ! src/java.base/share/classes/java/text/RBTableBuilder.java ! src/java.base/share/classes/java/time/ZoneId.java ! src/java.base/share/classes/java/time/format/DateTimeFormatterBuilder.java ! src/java.base/share/classes/java/util/Calendar.java ! src/java.base/share/classes/java/util/Locale.java ! src/java.base/share/classes/java/util/ResourceBundle.java ! src/java.base/share/classes/java/util/Scanner.java ! src/java.base/share/classes/java/util/regex/Pattern.java ! src/java.base/share/classes/javax/crypto/Cipher.java ! src/java.base/share/classes/javax/crypto/SealedObject.java ! src/java.base/share/classes/javax/net/ssl/SSLSocketFactory.java ! src/java.base/share/classes/javax/security/auth/PrivateCredentialPermission.java ! src/java.base/share/classes/javax/security/auth/callback/ChoiceCallback.java ! src/java.base/share/classes/javax/security/auth/callback/ConfirmationCallback.java ! src/java.base/share/classes/javax/security/auth/callback/NameCallback.java ! src/java.base/share/classes/javax/security/auth/callback/PasswordCallback.java ! src/java.base/share/classes/javax/security/auth/callback/TextInputCallback.java ! src/java.base/share/classes/javax/security/auth/callback/TextOutputCallback.java ! src/java.base/share/classes/javax/security/auth/login/AppConfigurationEntry.java ! src/java.base/share/classes/javax/security/auth/login/Configuration.java ! src/java.base/share/classes/javax/security/auth/login/LoginContext.java ! src/java.base/share/classes/javax/security/cert/X509Certificate.java ! src/java.base/share/classes/jdk/internal/jimage/decompressor/SignatureParser.java ! src/java.base/share/classes/jdk/internal/jimage/decompressor/StringSharingDecompressor.java ! src/java.base/share/classes/jdk/internal/jrtfs/JrtFileSystem.java ! src/java.base/share/classes/jdk/internal/jrtfs/JrtPath.java ! src/java.base/share/classes/jdk/internal/loader/ClassLoaders.java ! src/java.base/share/classes/jdk/internal/loader/URLClassPath.java ! src/java.base/share/classes/jdk/internal/module/Checks.java ! src/java.base/share/classes/jdk/internal/module/ModuleBootstrap.java ! src/java.base/share/classes/jdk/internal/module/ModulePatcher.java ! src/java.base/share/classes/jdk/internal/module/ModulePath.java ! src/java.base/share/classes/jdk/internal/module/Resources.java ! src/java.base/share/classes/jdk/internal/module/SystemModuleFinders.java ! src/java.base/share/classes/jdk/internal/org/objectweb/asm/TypePath.java ! src/java.base/share/classes/jdk/internal/org/objectweb/asm/util/CheckMethodAdapter.java ! src/java.base/share/classes/jdk/internal/org/objectweb/asm/util/CheckSignatureAdapter.java ! src/java.base/share/classes/jdk/internal/reflect/UnsafeFieldAccessorImpl.java ! src/java.base/share/classes/jdk/internal/util/jar/JarIndex.java ! src/java.base/share/classes/jdk/internal/util/xml/PropertiesDefaultHandler.java ! src/java.base/share/classes/jdk/internal/util/xml/impl/Parser.java ! src/java.base/share/classes/jdk/internal/util/xml/impl/XMLStreamWriterImpl.java ! src/java.base/share/classes/sun/invoke/util/BytecodeName.java ! src/java.base/share/classes/sun/net/TransferProtocolClient.java ! src/java.base/share/classes/sun/net/ftp/impl/FtpClient.java ! src/java.base/share/classes/sun/net/spi/DefaultProxySelector.java ! src/java.base/share/classes/sun/net/www/HeaderParser.java ! src/java.base/share/classes/sun/net/www/MimeEntry.java ! src/java.base/share/classes/sun/net/www/MimeLauncher.java ! src/java.base/share/classes/sun/net/www/ParseUtil.java ! src/java.base/share/classes/sun/net/www/http/HttpClient.java ! src/java.base/share/classes/sun/net/www/protocol/ftp/FtpURLConnection.java ! src/java.base/share/classes/sun/net/www/protocol/http/AuthenticationInfo.java ! src/java.base/share/classes/sun/net/www/protocol/http/DigestAuthentication.java ! src/java.base/share/classes/sun/net/www/protocol/http/HttpURLConnection.java ! src/java.base/share/classes/sun/net/www/protocol/https/HttpsClient.java ! src/java.base/share/classes/sun/net/www/protocol/jrt/JavaRuntimeURLConnection.java ! src/java.base/share/classes/sun/nio/ch/Net.java ! src/java.base/share/classes/sun/nio/fs/AbstractFileSystemProvider.java ! src/java.base/share/classes/sun/nio/fs/AbstractUserDefinedFileAttributeView.java ! src/java.base/share/classes/sun/security/jca/GetInstance.java ! src/java.base/share/classes/sun/security/jca/ProviderConfig.java ! src/java.base/share/classes/sun/security/jca/ProviderList.java ! src/java.base/share/classes/sun/security/provider/ConfigFile.java ! src/java.base/share/classes/sun/security/provider/PolicyParser.java ! src/java.base/share/classes/sun/security/provider/SeedGenerator.java ! src/java.base/share/classes/sun/security/ssl/CertificateMessage.java ! src/java.base/share/classes/sun/security/ssl/ClientHello.java ! src/java.base/share/classes/sun/security/ssl/DHKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/SSLAlgorithmConstraints.java ! src/java.base/share/classes/sun/security/ssl/SSLContextImpl.java ! src/java.base/share/classes/sun/security/ssl/SSLSocketImpl.java ! src/java.base/share/classes/sun/security/ssl/SupportedGroupsExtension.java ! src/java.base/share/classes/sun/security/ssl/X509TrustManagerImpl.java ! src/java.base/share/classes/sun/security/tools/PathList.java ! src/java.base/share/classes/sun/security/util/AbstractAlgorithmConstraints.java ! src/java.base/share/classes/sun/security/util/AlgorithmDecomposer.java ! src/java.base/share/classes/sun/security/util/DisabledAlgorithmConstraints.java ! src/java.base/share/classes/sun/security/util/SignatureFileVerifier.java ! src/java.base/share/classes/sun/security/x509/AVA.java ! src/java.base/share/classes/sun/security/x509/DNSName.java ! src/java.base/share/classes/sun/security/x509/IPAddressName.java ! src/java.base/share/classes/sun/security/x509/RDN.java ! src/java.base/share/classes/sun/security/x509/RFC822Name.java ! src/java.base/share/classes/sun/security/x509/X500Name.java ! src/java.base/share/classes/sun/security/x509/X509CRLImpl.java ! src/java.base/share/classes/sun/security/x509/X509CertImpl.java ! src/java.base/share/classes/sun/util/locale/InternalLocaleBuilder.java ! src/java.base/share/classes/sun/util/locale/LanguageTag.java ! src/java.base/share/classes/sun/util/locale/LocaleMatcher.java ! src/java.base/share/classes/sun/util/locale/LocaleUtils.java ! src/java.base/share/classes/sun/util/locale/UnicodeLocaleExtension.java ! src/java.base/share/classes/sun/util/locale/provider/CalendarNameProviderImpl.java ! src/java.base/share/classes/sun/util/locale/provider/JRELocaleProviderAdapter.java ! src/java.base/share/classes/sun/util/locale/provider/LocaleProviderAdapter.java ! src/java.base/unix/classes/java/io/UnixFileSystem.java ! src/java.base/unix/classes/jdk/internal/loader/FileURLMapper.java ! src/java.base/unix/classes/sun/net/dns/ResolverConfigurationImpl.java ! src/java.base/unix/classes/sun/net/sdp/SdpProvider.java ! src/java.base/unix/classes/sun/net/www/protocol/file/Handler.java ! src/java.base/unix/classes/sun/nio/ch/UnixAsynchronousSocketChannelImpl.java ! src/java.base/unix/classes/sun/nio/fs/UnixFileSystem.java ! src/java.base/windows/classes/java/io/WinNTFileSystem.java ! src/java.base/windows/classes/sun/net/www/protocol/file/Handler.java ! src/java.base/windows/classes/sun/nio/ch/FileDispatcherImpl.java ! src/java.base/windows/classes/sun/nio/fs/WindowsFileAttributes.java ! src/java.base/windows/classes/sun/nio/fs/WindowsFileStore.java ! src/java.base/windows/classes/sun/nio/fs/WindowsFileSystem.java ! src/java.base/windows/classes/sun/nio/fs/WindowsLinkSupport.java ! src/java.base/windows/classes/sun/nio/fs/WindowsPath.java Changeset: 4ddd3c410a85 Author: vromero Date: 2018-12-13 10:35 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/4ddd3c410a85 8215300: additional changes to constants API Reviewed-by: goetz ! src/java.base/share/classes/java/lang/Double.java ! src/java.base/share/classes/java/lang/Float.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/String.java ! src/java.base/share/classes/java/lang/constant/ClassDesc.java ! src/java.base/share/classes/java/lang/constant/Constable.java ! src/java.base/share/classes/java/lang/constant/ConstantUtils.java ! src/java.base/share/classes/java/lang/constant/package-info.java ! src/java.base/share/classes/java/lang/invoke/TypeDescriptor.java ! src/java.base/share/classes/java/lang/invoke/VarHandle.java ! test/jdk/java/lang/constant/ClassDescTest.java Changeset: c403f39ec349 Author: shade Date: 2018-12-13 16:45 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/c403f39ec349 8181143: Introduce diagnostic flag to abort VM on too long VM operations Reviewed-by: rkennke, zgu, dholmes, stuefe, rehn ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/vmThread.cpp ! src/hotspot/share/runtime/vmThread.hpp + test/hotspot/jtreg/runtime/Safepoint/TestAbortOnVMOperationTimeout.java Changeset: cc4098b3bc10 Author: shade Date: 2018-12-13 16:45 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/cc4098b3bc10 8215356: Disable x86_32 Shenandoah build to avoid hotspot/tier1 failures Reviewed-by: rkennke ! make/autoconf/hotspot.m4 Changeset: ece620f32d2d Author: jwilhelm Date: 2018-12-13 17:01 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/ece620f32d2d Added tag jdk-13+0 for changeset cc4098b3bc10 ! .hgtags Changeset: 6879069d9d94 Author: darcy Date: 2018-12-13 19:06 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/6879069d9d94 8205626: Start of release updates for JDK 13 8205393: Add SourceVersion.RELEASE_13 8205394: Add source 13 and target 13 to javac 8205645: Bump maximum recognized class file version to 57 for JDK 13 8214825: Update preview language features for start of JDK 13 Reviewed-by: erikj, alanb, mchung, mcimadamore, dholmes, smarks, jjg ! make/autoconf/version-numbers ! make/common/SetupJavaCompilers.gmk ! src/hotspot/share/classfile/classFileParser.cpp ! src/java.base/share/classes/com/sun/java/util/jar/pack/Constants.java ! src/java.base/share/classes/jdk/internal/module/ModuleInfo.java ! src/java.base/share/classes/jdk/internal/org/objectweb/asm/ClassReader.java ! src/java.base/share/classes/jdk/internal/org/objectweb/asm/Opcodes.java ! src/java.compiler/share/classes/javax/lang/model/SourceVersion.java ! src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/AbstractTypeVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/ElementScanner9.java ! src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor9.java ! src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor9.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Source.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassFile.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Profile.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Target.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/processing/PrintingProcessor.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/classfile/Classfile.java ! src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/Main.java ! src/jdk.rmic/share/classes/sun/tools/java/RuntimeConstants.java ! test/jaxp/TEST.ROOT ! test/jdk/TEST.ROOT ! test/jdk/java/lang/module/ClassFileVersionsTest.java ! test/langtools/TEST.ROOT ! test/langtools/tools/javac/6330997/T6330997.java ! test/langtools/tools/javac/ConditionalWithVoid.java ! test/langtools/tools/javac/RawStringLiteralLang.java ! test/langtools/tools/javac/RawStringLiteralLangAPI.java ! test/langtools/tools/javac/api/T6395981.java ! test/langtools/tools/javac/classfiles/ClassVersionChecker.java ! test/langtools/tools/javac/diags/examples/BreakAmbiguousTarget.java ! test/langtools/tools/javac/diags/examples/BreakExprNotImmediate.java ! test/langtools/tools/javac/diags/examples/BreakMissingValue.java ! test/langtools/tools/javac/diags/examples/BreakOutsideSwitchExpression.java ! test/langtools/tools/javac/diags/examples/ContinueOutsideSwitchExpression.java ! test/langtools/tools/javac/diags/examples/IncompatibleTypesInSwitchExpression.java ! test/langtools/tools/javac/diags/examples/MultipleCaseLabels.java ! test/langtools/tools/javac/diags/examples/NotExhaustive.java ! test/langtools/tools/javac/diags/examples/PreviewFeatureUse.java ! test/langtools/tools/javac/diags/examples/PreviewFilename.java ! test/langtools/tools/javac/diags/examples/PreviewFilenameAdditional.java ! test/langtools/tools/javac/diags/examples/PreviewPlural/PreviewPlural.java ! test/langtools/tools/javac/diags/examples/RawStringLiteral.java ! test/langtools/tools/javac/diags/examples/ReturnOutsideSwitchExpression.java ! test/langtools/tools/javac/diags/examples/RuleCompletesNormally.java ! test/langtools/tools/javac/diags/examples/SwitchCaseUnexpectedStatement.java ! test/langtools/tools/javac/diags/examples/SwitchExpressionCompletesNormally.java ! test/langtools/tools/javac/diags/examples/SwitchExpressionEmpty.java ! test/langtools/tools/javac/diags/examples/SwitchExpressionTargetCantBeVoid.java ! test/langtools/tools/javac/diags/examples/SwitchExpressions.java ! test/langtools/tools/javac/diags/examples/SwitchMixingCaseTypes.java ! test/langtools/tools/javac/diags/examples/SwitchRules.java ! test/langtools/tools/javac/expswitch/ExpSwitchNestingTest.java ! test/langtools/tools/javac/lambda/BadSwitchExpressionLambda.java ! test/langtools/tools/javac/lib/JavacTestingAbstractProcessor.java ! test/langtools/tools/javac/parser/JavacParserTest.java ! test/langtools/tools/javac/preview/classReaderTest/Client.java ! test/langtools/tools/javac/preview/classReaderTest/Client.nopreview.out ! test/langtools/tools/javac/preview/classReaderTest/Client.preview.out ! test/langtools/tools/javac/profiles/ProfileOptionTest.java ! test/langtools/tools/javac/switchexpr/BlockExpression.java ! test/langtools/tools/javac/switchexpr/BooleanNumericNonNumeric.java ! test/langtools/tools/javac/switchexpr/BreakTest.java ! test/langtools/tools/javac/switchexpr/CRT.java ! test/langtools/tools/javac/switchexpr/DefiniteAssignment1.java ! test/langtools/tools/javac/switchexpr/DefiniteAssignment2.java ! test/langtools/tools/javac/switchexpr/EmptySwitch.java ! test/langtools/tools/javac/switchexpr/ExhaustiveEnumSwitch.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitch.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchBreaks1.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchBreaks2.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchBugs.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchBugsInGen.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchCodeFromJLS.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchDA.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchEmbedding.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchFallThrough.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchFallThrough1.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchFlow.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchInExpressionSwitch.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchInfer.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchIntersectionTypes.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchNotExhaustive.java ! test/langtools/tools/javac/switchexpr/ExpressionSwitchUnreachable.java ! test/langtools/tools/javac/switchexpr/ParseIncomplete.java ! test/langtools/tools/javac/switchexpr/ParserRecovery.java ! test/langtools/tools/javac/switchexpr/SwitchExpressionIsNotAConstant.java ! test/langtools/tools/javac/switchexpr/SwitchExpressionScopesIsolated.java ! test/langtools/tools/javac/switchexpr/SwitchExpressionSimpleVisitorTest.java ! test/langtools/tools/javac/switchexpr/TryCatch.java ! test/langtools/tools/javac/switchextra/CaseTest.java ! test/langtools/tools/javac/switchextra/MultipleLabelsExpression.java ! test/langtools/tools/javac/switchextra/MultipleLabelsStatement.java ! test/langtools/tools/javac/switchextra/RuleParsingTest.java ! test/langtools/tools/javac/switchextra/SwitchArrowBrokenConstant.java ! test/langtools/tools/javac/switchextra/SwitchStatementArrow.java ! test/langtools/tools/javac/switchextra/SwitchStatementBroken.java ! test/langtools/tools/javac/switchextra/SwitchStatementBroken2.java ! test/langtools/tools/javac/switchextra/SwitchStatementScopesIsolated.java ! test/langtools/tools/javac/versions/Versions.java ! test/nashorn/TEST.ROOT Changeset: 2cc1ae79b303 Author: afarley Date: 2018-12-13 11:05 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/2cc1ae79b303 8215217: OpenJDK source has too many swear words Reviewed-by: smarks, shade, rriggs, lancea, prr, joehw ! src/java.desktop/share/classes/com/sun/media/sound/SoftChannel.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/BitArray.java Changeset: 5c65191e56b9 Author: lmesnik Date: 2018-12-13 14:16 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/5c65191e56b9 8215369: Jcstress pollute /var/tmp with temporary files. Reviewed-by: iignatyev, mseledtsov ! test/hotspot/jtreg/applications/jcstress/JcstressRunner.java Changeset: 7d4397b43fa3 Author: egahlin Date: 2018-12-13 23:25 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/7d4397b43fa3 8215362: JFR GTest JfrTestNetworkUtilization fails Reviewed-by: mgronlun ! test/hotspot/gtest/jfr/test_networkUtilization.cpp ! test/jdk/jdk/jfr/event/runtime/TestNetworkUtilizationEvent.java Changeset: 93b401e5bf51 Author: jwilhelm Date: 2018-12-14 01:34 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/93b401e5bf51 Merge Changeset: b3830528df29 Author: mdoerr Date: 2018-12-14 09:59 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/b3830528df29 8214352: C1: Unnecessary "compilation bailout: block join failed" with JVMTI Summary: Invalidate Phi functions for conflicting types and avoid bailout. Reviewed-by: kvn, iveresov ! src/hotspot/share/c1/c1_Instruction.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LinearScan.cpp ! src/hotspot/share/c1/c1_ValueStack.hpp Changeset: 8180809085a4 Author: alanb Date: 2018-12-14 13:30 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/8180809085a4 8214077: test java/io/File/SetLastModified.java fails on ARM32 Summary: replace uses of stat with stat64 in java.base Reviewed-by: alanb Contributed-by: nick.gasson at arm.com ! src/java.base/linux/native/libjava/ProcessHandleImpl_linux.c ! src/java.base/unix/native/libjava/TimeZone_md.c ! src/java.base/unix/native/libjava/UnixFileSystem_md.c Changeset: 5274fb04cad9 Author: jcbeyler Date: 2018-12-14 10:51 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/5274fb04cad9 8215329: Modify ZGC requirement for HeapMonitorThreadTest.java Summary: Modify the requirement to be tested Reviewed-by: amenkov, pliden, sspitsyn ! test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorThreadTest.java Changeset: 0873841d1669 Author: lancea Date: 2018-12-14 14:17 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/0873841d1669 8215372: Incorrect nio/file/DirectoryStream/Basic.java tests for validating the use of a glob Reviewed-by: alanb ! test/jdk/java/nio/file/DirectoryStream/Basic.java Changeset: 89bb635ed093 Author: jcbeyler Date: 2018-12-14 13:13 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/89bb635ed093 8201655: Add thread-enabled support for the Heap Sampling Summary: Added thread-enabled support Reviewed-by: amenkov, sspitsyn ! src/hotspot/share/prims/jvmti.xml ! src/hotspot/share/prims/jvmtiEventController.cpp ! src/hotspot/share/prims/jvmtiExport.cpp - test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorEventsForTwoThreadsTest.java + test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorThreadDisabledTest.java ! test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/libHeapMonitorTest.c Changeset: dcbb71b9e7c0 Author: dnsimon Date: 2018-12-14 16:52 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/dcbb71b9e7c0 8215319: jck lang/INTF/intf049/intf04901 fails in Graal as JIT mode with -Xcomp and AOTed Graal Reviewed-by: iveresov, never, dlong ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/BytecodeParser.java Changeset: de99beff5c0e Author: lkorinth Date: 2018-12-17 11:37 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/de99beff5c0e 8214946: G1: Initialize all class members on construction Reviewed-by: kbarrett, tschatzl ! src/hotspot/share/gc/g1/dirtyCardQueue.cpp ! src/hotspot/share/gc/g1/g1CardCounts.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1HeapVerifier.cpp ! src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.cpp ! src/hotspot/share/gc/g1/heapRegion.cpp Changeset: 0e5c83bf4ff7 Author: jcbeyler Date: 2018-12-11 10:23 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/0e5c83bf4ff7 8215228: Use a constant hash table size in order to enable compiler optimization Summary: Remove a field from KlassInfoTable to allow compiler optimizations Reviewed-by: phh, aph Contributed-by: zanglin5 at jd.com ! src/hotspot/share/memory/heapInspection.cpp ! src/hotspot/share/memory/heapInspection.hpp Changeset: d5a2a29ca589 Author: cushon Date: 2018-12-13 10:08 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/d5a2a29ca589 8215366: Code quality improvements in com.sun.tools.javac.code.TypeAnnotations Reviewed-by: mcimadamore, wmdietl, bsrbnd ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/TypeAnnotations.java Changeset: e84983c2735e Author: cushon Date: 2018-12-13 11:05 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/e84983c2735e 8215368: Make Check.checkOverride call diagnosticPositionFor lazily Reviewed-by: mcimadamore, vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java Changeset: 9dd0a2fdec24 Author: alanb Date: 2018-12-18 10:26 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/9dd0a2fdec24 8215449: Several tests failing when jtreg run with -vmoption:--illegal-access=deny Reviewed-by: redestad, mchung, jjg ! test/jdk/java/net/URL/RacyHandler.java ! test/jdk/java/util/Locale/LocaleProvidersRun.java ! test/langtools/tools/javac/platform/CanHandleClassFilesTest.java Changeset: 3bc260237317 Author: gadams Date: 2018-12-18 07:33 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/3bc260237317 8051349: nsk/jvmti/scenarios/sampling/SP06/sp06t003 fails in nightly Reviewed-by: dholmes, sspitsyn, cjplummer, jcbeyler ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP02/sp02t003/sp02t003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t001.java ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/sampling/SP06/sp06t003/sp06t003.cpp Changeset: 6aeb6a23fb83 Author: vromero Date: 2018-12-18 16:22 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/6aeb6a23fb83 8207224: Javac compiles source code despite illegal use of unchecked conversions Reviewed-by: mcimadamore, darcy ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Source.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java + test/langtools/tools/javac/T8207224/ReturnTypeSubstitutableTest.java + test/langtools/tools/javac/T8207224/ReturnTypeSubstitutableTest.out Changeset: f15af1e2c683 Author: pli Date: 2018-12-18 16:50 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/f15af1e2c683 8212043: Add floating-point Math.min/max intrinsics Summary: Floating-point Math.min() and Math.max() intrinsics are enabled on AArch64 platform Reviewed-by: adinn, aph ! src/hotspot/cpu/aarch64/aarch64.ad ! src/hotspot/cpu/aarch64/assembler_aarch64.hpp ! src/hotspot/share/adlc/formssel.cpp ! src/hotspot/share/classfile/vmSymbols.cpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/opto/addnode.hpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/classes.hpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/type.cpp ! src/hotspot/share/opto/type.hpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/java.base/share/classes/java/lang/Math.java ! src/java.base/share/classes/java/lang/StrictMath.java Changeset: 56fbb14251ca Author: mbaesken Date: 2018-12-19 10:30 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/56fbb14251ca 8215411: some GetByteArrayElements calls miss corresponding Release Reviewed-by: dholmes, jcbeyler ! src/java.base/macosx/native/libosxsecurity/KeystoreImpl.m ! src/jdk.attach/windows/native/libattach/VirtualMachineImpl.c ! src/jdk.hotspot.agent/windows/native/libsaproc/sawindbg.cpp Changeset: fd2e8f941ded Author: clanger Date: 2018-12-19 10:36 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/fd2e8f941ded 8215472: (zipfs) Cleanups in implementation classes of jdk.zipfs and tests Reviewed-by: redestad, lancea ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/JarFileSystem.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/JarFileSystemProvider.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipCoder.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipConstants.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipDirectoryStream.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileAttributeView.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileAttributes.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileStore.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileSystem.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileSystemProvider.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipInfo.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipPath.java ! src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipUtils.java ! test/jdk/java/util/zip/zip.java Changeset: 432795b1c2c8 Author: dfuchs Date: 2018-12-19 11:48 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/432795b1c2c8 8213402: [Testbug] java/lang/System/LoggerFinder/internal/PlatformLoggerBridgeTest creates an invalid nest relationship Summary: The failing tests are refactored to make the custom logger finder class a top-level class. Reviewed-by: dholmes, mchung ! test/jdk/java/lang/System/LoggerFinder/internal/BaseDefaultLoggerFinderTest/BaseDefaultLoggerFinderTest.java + test/jdk/java/lang/System/LoggerFinder/internal/BaseDefaultLoggerFinderTest/BaseLoggerFinder.java ! test/jdk/java/lang/System/LoggerFinder/internal/BaseDefaultLoggerFinderTest/CustomSystemClassLoader.java ! test/jdk/java/lang/System/LoggerFinder/internal/BaseDefaultLoggerFinderTest/META-INF/services/java.lang.System$LoggerFinder ! test/jdk/java/lang/System/LoggerFinder/internal/BaseLoggerBridgeTest/BaseLoggerBridgeTest.java + test/jdk/java/lang/System/LoggerFinder/internal/BaseLoggerBridgeTest/BaseLoggerFinder.java ! test/jdk/java/lang/System/LoggerFinder/internal/BaseLoggerBridgeTest/CustomSystemClassLoader.java ! test/jdk/java/lang/System/LoggerFinder/internal/BaseLoggerBridgeTest/META-INF/services/java.lang.System$LoggerFinder + test/jdk/java/lang/System/LoggerFinder/internal/BasePlatformLoggerTest/BaseLoggerFinder.java ! test/jdk/java/lang/System/LoggerFinder/internal/BasePlatformLoggerTest/BasePlatformLoggerTest.java ! test/jdk/java/lang/System/LoggerFinder/internal/BasePlatformLoggerTest/CustomSystemClassLoader.java ! test/jdk/java/lang/System/LoggerFinder/internal/BasePlatformLoggerTest/META-INF/services/java.lang.System$LoggerFinder ! test/jdk/java/lang/System/LoggerFinder/internal/LoggerBridgeTest/CustomSystemClassLoader.java + test/jdk/java/lang/System/LoggerFinder/internal/LoggerBridgeTest/LogProducerFinder.java ! test/jdk/java/lang/System/LoggerFinder/internal/LoggerBridgeTest/LoggerBridgeTest.java ! test/jdk/java/lang/System/LoggerFinder/internal/LoggerBridgeTest/META-INF/services/java.lang.System$LoggerFinder + test/jdk/java/lang/System/LoggerFinder/internal/LoggerFinderLoaderTest/BaseLoggerFinder.java + test/jdk/java/lang/System/LoggerFinder/internal/LoggerFinderLoaderTest/BaseLoggerFinder2.java ! test/jdk/java/lang/System/LoggerFinder/internal/LoggerFinderLoaderTest/CustomSystemClassLoader.java ! test/jdk/java/lang/System/LoggerFinder/internal/LoggerFinderLoaderTest/LoggerFinderLoaderTest.java ! test/jdk/java/lang/System/LoggerFinder/internal/LoggerFinderLoaderTest/META-INF/services/java.lang.System$LoggerFinder ! test/jdk/java/lang/System/LoggerFinder/internal/PlatformLoggerBridgeTest/CustomSystemClassLoader.java + test/jdk/java/lang/System/LoggerFinder/internal/PlatformLoggerBridgeTest/LogProducerFinder.java ! test/jdk/java/lang/System/LoggerFinder/internal/PlatformLoggerBridgeTest/META-INF/services/java.lang.System$LoggerFinder ! test/jdk/java/lang/System/LoggerFinder/internal/PlatformLoggerBridgeTest/PlatformLoggerBridgeTest.java Changeset: 7dac5301ce71 Author: adinn Date: 2018-12-19 11:45 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/7dac5301ce71 8209414: AArch64: method handle invocation does not respect JVMTI interp_only mode Reviewed-by: adinn Contributed-by: nick.gasson at arm.com ! src/hotspot/cpu/aarch64/methodHandles_aarch64.cpp Changeset: 9b0d6ecd8e45 Author: vromero Date: 2018-12-19 14:02 -0500 URL: http://hg.openjdk.java.net/loom/loom/rev/9b0d6ecd8e45 8215625: javax/sql/testng/util/xxxxx.java tests compilation failed after JDK-8207224 Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Source.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java - test/langtools/tools/javac/T8207224/ReturnTypeSubstitutableTest.java - test/langtools/tools/javac/T8207224/ReturnTypeSubstitutableTest.out Changeset: b732de3068f4 Author: bpb Date: 2018-12-19 11:44 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/b732de3068f4 8183912: java.math.BigDecimal.movePointLeft() should return this if called with zero argument Reviewed-by: rriggs ! src/java.base/share/classes/java/math/BigDecimal.java Changeset: 74c8a506d23a Author: jwilhelm Date: 2018-12-14 06:39 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/74c8a506d23a Added tag jdk-12+24 for changeset 7d4397b43fa3 ! .hgtags Changeset: c74f074c532a Author: redestad Date: 2018-12-14 12:02 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/c74f074c532a 8215380: Backout accidental change to String::length Reviewed-by: darcy, smarks ! src/java.base/share/classes/java/lang/String.java Changeset: 33d33996a638 Author: shade Date: 2018-12-14 12:56 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/33d33996a638 8215353: x86_32 build failures after JDK-8214751 (X86: Support for VNNI Instructions) Reviewed-by: thartmann, kvn ! src/hotspot/cpu/x86/x86_32.ad Changeset: d4da64e0e916 Author: shade Date: 2018-12-14 12:56 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/d4da64e0e916 8215374: 32-bit build failures after JDK-8181143 (Introduce diagnostic flag to abort VM on too long VM operations) Reviewed-by: roland ! src/hotspot/share/runtime/vmThread.cpp Changeset: 11f59b9c72fe Author: yzhang Date: 2018-11-28 16:22 +0800 URL: http://hg.openjdk.java.net/loom/loom/rev/11f59b9c72fe 8213134: AArch64: vector shift failed with MaxVectorSize=8 Summary: add vshiftcnt instructions for vector64 and add vsra/vsrl instructions to AArch64 backend. To detect shift failures, MaxVectorSize options are added to jtreg test cases. Reviewed-by: aph, kvn ! src/hotspot/cpu/aarch64/aarch64.ad ! test/hotspot/jtreg/compiler/c2/cr6340864/TestByteVect.java ! test/hotspot/jtreg/compiler/c2/cr6340864/TestDoubleVect.java ! test/hotspot/jtreg/compiler/c2/cr6340864/TestFloatVect.java ! test/hotspot/jtreg/compiler/c2/cr6340864/TestIntVect.java ! test/hotspot/jtreg/compiler/c2/cr6340864/TestLongVect.java ! test/hotspot/jtreg/compiler/c2/cr6340864/TestShortVect.java ! test/hotspot/jtreg/compiler/codegen/TestCharVect2.java Changeset: 8c85d34413d2 Author: prappo Date: 2018-12-14 19:49 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/8c85d34413d2 8215292: Back out changes for node- and link- local ipv6 multicast address Reviewed-by: chegar, alanb ! src/java.base/unix/native/libnet/net_util_md.c - test/jdk/java/net/MulticastSocket/PromiscuousIPv6.java - test/jdk/java/nio/channels/DatagramChannel/PromiscuousIPv6.java Changeset: cf788c492a35 Author: dnsimon Date: 2018-12-14 17:32 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/cf788c492a35 8215319: jck lang/INTF/intf049/intf04901 fails in Graal as JIT mode with -Xcomp and AOTed Graal Reviewed-by: iveresov, never, dlong ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/BytecodeParser.java Changeset: c36464ea1f04 Author: xuelei Date: 2018-12-14 17:51 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/c36464ea1f04 8213782: NullPointerException in sun.security.ssl.OutputRecord.changeWriteCiphers Reviewed-by: ascarpino ! src/java.base/share/classes/sun/security/ssl/ChangeCipherSpec.java ! src/java.base/share/classes/sun/security/ssl/Finished.java ! src/java.base/share/classes/sun/security/ssl/KeyUpdate.java ! src/java.base/share/classes/sun/security/ssl/ServerHello.java Changeset: 9041178a0b69 Author: xuelei Date: 2018-12-14 19:39 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/9041178a0b69 8214339: SSLSocketImpl erroneously wraps SocketException Reviewed-by: ascarpino, jnimeh ! src/java.base/share/classes/sun/security/ssl/Alert.java ! src/java.base/share/classes/sun/security/ssl/KeyShareExtension.java ! src/java.base/share/classes/sun/security/ssl/PreSharedKeyExtension.java ! src/java.base/share/classes/sun/security/ssl/TransportContext.java + test/jdk/javax/net/ssl/templates/SSLContextTemplate.java + test/jdk/sun/security/ssl/SSLSocketImpl/SSLExceptionForIOIssue.java Changeset: c7ab0761ef88 Author: pliden Date: 2018-12-15 20:03 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/c7ab0761ef88 8215395: Allow null oops in Dictionary and JNIHandle verification Reviewed-by: eosterlund, kbarrett, coleenp ! src/hotspot/share/classfile/dictionary.hpp ! src/hotspot/share/runtime/jniHandles.cpp Changeset: 83840e83476a Author: rfield Date: 2018-12-15 17:13 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/83840e83476a 8215099: jshell tool: /help representation of ctrl/meta characters inconsistent Reviewed-by: jlahoda ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/resources/l10n.properties ! test/langtools/jdk/jshell/ToolShiftTabTest.java ! test/langtools/jdk/jshell/ToolSimpleTest.java Changeset: 041f1cbdae3e Author: thartmann Date: 2018-12-17 08:25 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/041f1cbdae3e 8215410: Regression test for JDK-8214994 Summary: Added a regression test for 8214994 which was fixed by accident with 8211451. Reviewed-by: kvn + test/hotspot/jtreg/compiler/loopopts/TestSplitIfOpaque1.java Changeset: 7aa1a37b04a2 Author: pliden Date: 2018-12-17 16:55 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/7aa1a37b04a2 8215451: JNI IsSameObject should not keep objects alive Reviewed-by: eosterlund, kbarrett ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/runtime/jniHandles.cpp ! src/hotspot/share/runtime/jniHandles.hpp ! src/hotspot/share/runtime/jniHandles.inline.hpp ! test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorThreadTest.java Changeset: 5da72d7e0e80 Author: dlong Date: 2018-12-17 10:36 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/5da72d7e0e80 8214512: ARM32: Jtreg test compiler/c2/Test8062950.java fails on ARM Reviewed-by: dlong, enevill, bulasevich Contributed-by: nick.gasson at arm.com ! src/hotspot/cpu/arm/arm.ad ! src/hotspot/cpu/arm/macroAssembler_arm.cpp ! src/hotspot/cpu/arm/macroAssembler_arm.hpp Changeset: 2086ef5b6c1f Author: mchinnathamb Date: 2018-12-18 12:59 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/2086ef5b6c1f 8215397: jsig.c missing classpath exception Reviewed-by: dholmes ! src/java.base/unix/native/libjsig/jsig.c Changeset: b04860fd2e2c Author: rraghavan Date: 2018-12-18 19:13 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/b04860fd2e2c 8211698: Crash in C2 compiled code during execution of double array heavy processing code Summary: Correctly registered new Opaque4Node in add_range_check_predicate Reviewed-by: roland, thartmann ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/loopTransform.cpp ! src/hotspot/share/opto/loopnode.hpp ! src/hotspot/share/opto/node.cpp + test/hotspot/jtreg/compiler/loopopts/Test8211698.java Changeset: 103ed9569fc8 Author: xuelei Date: 2018-12-18 12:08 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/103ed9569fc8 8215443: The use of TransportContext.fatal() leads to bad coding style Reviewed-by: ascarpino ! src/java.base/share/classes/sun/security/ssl/Alert.java ! src/java.base/share/classes/sun/security/ssl/AlpnExtension.java ! src/java.base/share/classes/sun/security/ssl/CertSignAlgsExtension.java ! src/java.base/share/classes/sun/security/ssl/CertStatusExtension.java ! src/java.base/share/classes/sun/security/ssl/CertificateMessage.java ! src/java.base/share/classes/sun/security/ssl/CertificateRequest.java ! src/java.base/share/classes/sun/security/ssl/CertificateStatus.java ! src/java.base/share/classes/sun/security/ssl/CertificateVerify.java ! src/java.base/share/classes/sun/security/ssl/ChangeCipherSpec.java ! src/java.base/share/classes/sun/security/ssl/ClientHello.java ! src/java.base/share/classes/sun/security/ssl/ClientKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/CookieExtension.java ! src/java.base/share/classes/sun/security/ssl/DHClientKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/DHKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/DHServerKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/ECDHClientKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/ECDHKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/ECDHServerKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/ECPointFormatsExtension.java ! src/java.base/share/classes/sun/security/ssl/EncryptedExtensions.java ! src/java.base/share/classes/sun/security/ssl/ExtendedMasterSecretExtension.java ! src/java.base/share/classes/sun/security/ssl/Finished.java ! src/java.base/share/classes/sun/security/ssl/HandshakeContext.java ! src/java.base/share/classes/sun/security/ssl/HelloRequest.java ! src/java.base/share/classes/sun/security/ssl/HelloVerifyRequest.java ! src/java.base/share/classes/sun/security/ssl/KeyShareExtension.java ! src/java.base/share/classes/sun/security/ssl/KeyUpdate.java ! src/java.base/share/classes/sun/security/ssl/MaxFragExtension.java ! src/java.base/share/classes/sun/security/ssl/NewSessionTicket.java ! src/java.base/share/classes/sun/security/ssl/PostHandshakeContext.java ! src/java.base/share/classes/sun/security/ssl/PreSharedKeyExtension.java ! src/java.base/share/classes/sun/security/ssl/PskKeyExchangeModesExtension.java ! src/java.base/share/classes/sun/security/ssl/RSAClientKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/RSAKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/RSAServerKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/RenegoInfoExtension.java ! src/java.base/share/classes/sun/security/ssl/SSLEngineImpl.java ! src/java.base/share/classes/sun/security/ssl/SSLExtensions.java ! src/java.base/share/classes/sun/security/ssl/SSLSocketImpl.java ! src/java.base/share/classes/sun/security/ssl/SSLTransport.java ! src/java.base/share/classes/sun/security/ssl/ServerHello.java ! src/java.base/share/classes/sun/security/ssl/ServerHelloDone.java ! src/java.base/share/classes/sun/security/ssl/ServerKeyExchange.java ! src/java.base/share/classes/sun/security/ssl/ServerNameExtension.java ! src/java.base/share/classes/sun/security/ssl/SignatureAlgorithmsExtension.java ! src/java.base/share/classes/sun/security/ssl/SupportedGroupsExtension.java ! src/java.base/share/classes/sun/security/ssl/SupportedVersionsExtension.java ! src/java.base/share/classes/sun/security/ssl/TransportContext.java Changeset: 2f41e4935c34 Author: dlong Date: 2018-12-18 12:36 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/2f41e4935c34 8215205: javaVFrame much slower than vframeStream Reviewed-by: mchung, thartmann ! src/hotspot/share/code/scopeDesc.cpp ! src/hotspot/share/code/scopeDesc.hpp ! src/hotspot/share/runtime/vframe.cpp ! src/hotspot/share/runtime/vframe.hpp ! src/hotspot/share/runtime/vframe.inline.hpp ! src/hotspot/share/runtime/vframe_hp.cpp ! src/hotspot/share/runtime/vframe_hp.hpp Changeset: a7bd89486175 Author: dlong Date: 2018-12-18 12:45 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/a7bd89486175 8214329: SwingMark SubMenus 9% regression in 12-b19 on Linux client Reviewed-by: thartmann, mullan ! src/hotspot/share/prims/jvm.cpp Changeset: 8a61a04c456c Author: xuelei Date: 2018-12-18 15:18 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/8a61a04c456c 8209333: Socket reset issue for TLS 1.3 socket close Reviewed-by: jnimeh ! src/java.base/share/classes/sun/security/ssl/SSLConfiguration.java ! src/java.base/share/classes/sun/security/ssl/SSLSocketImpl.java ! src/java.base/share/classes/sun/security/ssl/SSLSocketInputRecord.java + test/jdk/sun/security/ssl/SSLSocketImpl/SSLSocketBruceForceClose.java + test/jdk/sun/security/ssl/SSLSocketImpl/SSLSocketClose.java Changeset: 7496df94b3b7 Author: dlong Date: 2018-12-18 16:36 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/7496df94b3b7 8214583: AccessController.getContext may return wrong value after JDK-8212605 Reviewed-by: mchung, redestad ! src/hotspot/share/include/jvm.h ! src/hotspot/share/prims/jvm.cpp ! src/java.base/share/classes/java/security/AccessController.java ! src/java.base/share/native/libjava/AccessController.c + test/jdk/java/security/AccessController/DoPriv.java + test/jdk/javax/security/auth/Subject/DoAs.java Changeset: ba1a557b6ccd Author: valeriep Date: 2018-12-19 02:27 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/ba1a557b6ccd 8214096: sun.security.util.SignatureUtil passes null parameter, so JCE validation fails Summary: Changed SignatureUtil.specialSetParameter to ignore null signature parameters Reviewed-by: mullan, weijun ! src/java.base/share/classes/sun/security/util/SignatureUtil.java + test/jdk/sun/security/util/misc/SetNullSigParams.java Changeset: fc10906d5831 Author: pmuthuswamy Date: 2018-12-19 11:08 +0530 URL: http://hg.openjdk.java.net/loom/loom/rev/fc10906d5831 8214570: Use {@systemProperty} for definitions of system properties Reviewed-by: alanb, mullan ! src/java.smartcardio/share/classes/javax/smartcardio/TerminalFactory.java Changeset: 281c85f43f79 Author: iignatyev Date: 2018-12-18 13:37 -0800 URL: http://hg.openjdk.java.net/loom/loom/rev/281c85f43f79 8215322: add @file support to jaotc Reviewed-by: kvn ! src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/Main.java + test/hotspot/jtreg/compiler/aot/cli/jaotc/AtFileTest.java Changeset: 82d3f0820d37 Author: pliden Date: 2018-12-19 08:32 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/82d3f0820d37 8215487: ZGC: ZRuntimeWorkers incorrectly identify themselves as ZWorkers Reviewed-by: eosterlund ! src/hotspot/share/gc/z/zObjectAllocator.cpp ! src/hotspot/share/gc/z/zRuntimeWorkers.cpp ! src/hotspot/share/gc/z/zThread.cpp ! src/hotspot/share/gc/z/zThread.hpp ! src/hotspot/share/gc/z/zWorkers.cpp Changeset: 11033c4ada54 Author: jwilhelm Date: 2018-12-19 20:53 +0100 URL: http://hg.openjdk.java.net/loom/loom/rev/11033c4ada54 Merge ! .hgtags ! src/hotspot/cpu/aarch64/aarch64.ad ! test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorThreadTest.java - test/jdk/java/net/MulticastSocket/PromiscuousIPv6.java - test/jdk/java/nio/channels/DatagramChannel/PromiscuousIPv6.java Changeset: fa7ffa18e4b2 Author: alanb Date: 2018-12-20 12:49 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/fa7ffa18e4b2 Merge - make/scripts/pandoc-manpage-filter.js - make/scripts/pandoc-manpage-filter.sh.template ! src/hotspot/cpu/x86/macroAssembler_x86.hpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/x86.ad ! src/hotspot/cpu/x86/x86_64.ad ! src/hotspot/share/aot/aotCompiledMethod.cpp ! src/hotspot/share/aot/aotCompiledMethod.hpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/classfile/vmSymbols.cpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeCache.hpp ! src/hotspot/share/code/compiledMethod.cpp ! src/hotspot/share/code/compiledMethod.hpp ! src/hotspot/share/code/nmethod.cpp - src/hotspot/share/gc/cms/vmCMSOperations.cpp - src/hotspot/share/gc/cms/vmCMSOperations.hpp - src/hotspot/share/gc/g1/vm_operations_g1.cpp - src/hotspot/share/gc/g1/vm_operations_g1.hpp - src/hotspot/share/gc/parallel/vmPSOperations.cpp - src/hotspot/share/gc/parallel/vmPSOperations.hpp - src/hotspot/share/gc/shared/vmGCOperations.cpp - src/hotspot/share/gc/shared/vmGCOperations.hpp ! src/hotspot/share/include/jvm.h ! src/hotspot/share/interpreter/templateInterpreter.hpp ! src/hotspot/share/jfr/metadata/metadata.xml - src/hotspot/share/jfr/recorder/repository/jfrChunkSizeNotifier.cpp - src/hotspot/share/jfr/recorder/repository/jfrChunkSizeNotifier.hpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/classes.hpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/compile.hpp ! src/hotspot/share/opto/intrinsicnode.hpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/node.hpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmtiImpl.cpp ! src/hotspot/share/runtime/compilationPolicy.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/interfaceSupport.inline.hpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/os.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/sharedRuntime.hpp ! src/hotspot/share/runtime/sweeper.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/thread.hpp ! src/hotspot/share/runtime/vframe.cpp ! src/hotspot/share/runtime/vframe.hpp ! src/hotspot/share/runtime/vframe.inline.hpp ! src/hotspot/share/runtime/vframe_hp.cpp ! src/hotspot/share/runtime/vmStructs.cpp - src/hotspot/share/runtime/vm_operations.cpp - src/hotspot/share/runtime/vm_operations.hpp ! src/hotspot/share/services/threadService.cpp - src/java.base/share/classes/com/sun/crypto/provider/HmacPKCS12PBESHA1.java - src/java.logging/share/classes/java/util/logging/package.html ! src/java.naming/share/classes/com/sun/jndi/ldap/LdapCtx.java - src/java.prefs/share/classes/java/util/prefs/package.html - src/java.rmi/share/classes/java/rmi/activation/package.html - src/java.rmi/share/classes/java/rmi/dgc/package.html - src/java.rmi/share/classes/java/rmi/package.html - src/java.rmi/share/classes/java/rmi/registry/package.html - src/java.rmi/share/classes/java/rmi/server/package.html - src/java.rmi/share/classes/javax/rmi/ssl/package.html - src/java.security.jgss/share/classes/org/ietf/jgss/package.html - src/java.smartcardio/share/classes/javax/smartcardio/package.html - src/java.sql.rowset/share/classes/com/sun/rowset/package.html - src/java.sql.rowset/share/classes/com/sun/rowset/providers/package.html - src/java.sql.rowset/share/classes/javax/sql/rowset/serial/package.html - src/java.sql/share/classes/java/sql/package.html - src/java.sql/share/classes/javax/sql/package.html - src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM964.java - src/jdk.charsets/share/classes/sun/nio/cs/ext/SimpleEUCEncoder.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/Key.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/KeyStore.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSACipher.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAKeyPair.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAKeyPairGenerator.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAPrivateKey.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAPublicKey.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSASignature.java - src/jdk.internal.le/share/classes/jdk/internal/jline/DefaultTerminal2.java - src/jdk.internal.le/share/classes/jdk/internal/jline/NoInterruptUnixTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/OSvTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/Terminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/Terminal2.java - src/jdk.internal.le/share/classes/jdk/internal/jline/TerminalFactory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/TerminalSupport.java - src/jdk.internal.le/share/classes/jdk/internal/jline/UnixTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/UnsupportedTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/WindowsTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/ConsoleKeys.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/ConsoleReader.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/CursorBuffer.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/KeyMap.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/KillRing.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/Operation.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/UserInterruptException.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/WCWidth.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/AggregateCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/AnsiStringsCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/ArgumentCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CandidateListCompletionHandler.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CandidateListCompletionHandler.properties - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/Completer.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CompletionHandler.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/EnumCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/FileNameCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/NullCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/StringsCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/FileHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/History.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/MemoryHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/PersistentHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/internal/ConsoleReaderInputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/internal/ConsoleRunner.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/extra/AnsiInterpretingOutputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/extra/EditingHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Ansi.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Configuration.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Curses.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/InfoCmp.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/InputStreamReader.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Log.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/NonBlockingInputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Nullable.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Preconditions.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/ShutdownHooks.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/TerminalLineSettings.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/TestAccessible.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Urls.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/package-info.java - src/jdk.internal.le/windows/native/lible/WindowsTerminal.cpp - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64.test/src/org/graalvm/compiler/core/amd64/test/MatchRuleTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.jdk9.test/src/org/graalvm/compiler/core/test/ea/AtomicVirtualizationTests.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/EliminateRedundantInitializationPhaseTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/PrintStreamOptionKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotGraphBuilderPlugins.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotHostForeignCallsProvider.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/ComputeObjectAddressNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/GetObjectAddressNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/UnsafeAccess.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopySnippets.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyWithSlowPathNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/CheckcastArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/GenericArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.test/src/org/graalvm/compiler/lir/test/alloc/trace/TraceGlobalMoveResolutionMappingTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/DefaultTraceRegisterAllocationPolicy.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/GlobalLivenessAnalysisPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/GlobalLivenessInfo.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/ShadowedRegisterValue.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceAssertions.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceBuilderPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceGlobalMoveResolutionPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceGlobalMoveResolver.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceRegisterAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceRegisterAllocationPolicy.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceUtil.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TrivialTraceAllocator.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/bu/BottomUpAllocator.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/FixedInterval.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/FixedRange.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/IntervalHint.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/RegisterVerifier.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceInterval.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanAssignLocationsPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanEliminateSpillMovePhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanLifetimeAnalysisPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanRegisterAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanResolveDataFlowPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanWalker.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLocalMoveResolver.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/ControlFlowGraphState.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/TraceBuilderBenchmark.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/TraceLSRAIntervalBuildingBench.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyBailoutUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyCallerSensitiveMethods.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyDebugUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyGetOptionsUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyGraphAddUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyInstanceOfUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyUpdateUsages.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyUsageWithEquals.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyVirtualizableUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.jdk9_11.test/src/org/graalvm/compiler/replacements/jdk9_11/test/UnsafeObjectReplacementsTest.java - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_flat_75_ffffff_40x100.png - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_glass_65_ffffff_1x400.png - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Command.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Execute.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/HelpCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/JSONWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrettyWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrintCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/ReconstructCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SplitCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/StructuredWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SummaryCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/XMLWriter.java ! src/jdk.naming.dns/share/classes/com/sun/jndi/dns/DnsContext.java - test/hotspot/jtreg/compiler/graalunit/Replacements9_11Test.java - test/hotspot/jtreg/gc/epsilon/CriticalNativeArgs.java - test/hotspot/jtreg/gc/epsilon/CriticalNativeStress.java - test/hotspot/jtreg/gc/epsilon/libCriticalNative.c - test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorEventsForTwoThreadsTest.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/TEST.properties - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network001.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network002.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network003.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network004.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network005.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network006.java - test/jdk/java/net/MulticastSocket/PromiscuousIPv6.java - test/jdk/java/nio/channels/DatagramChannel/PromiscuousIPv6.java - test/jdk/java/util/ResourceBundle/Control/MissingResourceCauseTest.sh - test/jdk/jdk/internal/jline/console/StripAnsiTest.java - test/jdk/jdk/internal/jline/extra/AnsiInterpretingOutputStreamTest.java - test/jdk/jdk/internal/jline/extra/HistoryTest.java - test/jdk/jdk/jfr/cmd/ExecuteHelper.java - test/jdk/jdk/jfr/cmd/TestHelp.java - test/jdk/jdk/jfr/cmd/TestPrint.java - test/jdk/jdk/jfr/cmd/TestPrintDefault.java - test/jdk/jdk/jfr/cmd/TestPrintJSON.java - test/jdk/jdk/jfr/cmd/TestPrintXML.java - test/jdk/jdk/jfr/cmd/TestReconstruct.java - test/jdk/jdk/jfr/cmd/TestSplit.java - test/jdk/jdk/jfr/cmd/TestSummary.java - test/jdk/sun/security/pkcs11/nss/src/nss-3.16-with-nspr-4.10.4.tar.gz - test/jdk/sun/security/pkcs11/nss/src/nss-3.16-with-nspr-4.10.4.tar.gz.sha256 - test/jdk/sun/text/IntHashtable/Bug4170614Test.sh - test/jdk/sun/text/IntHashtable/patch-src/java/text/Bug4170614Test.java Changeset: 5d6363198979 Author: alanb Date: 2018-12-20 13:03 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/5d6363198979 Merge - make/scripts/pandoc-manpage-filter.js - make/scripts/pandoc-manpage-filter.sh.template ! src/hotspot/share/classfile/vmSymbols.hpp - src/hotspot/share/gc/cms/vmCMSOperations.cpp - src/hotspot/share/gc/cms/vmCMSOperations.hpp - src/hotspot/share/gc/g1/vm_operations_g1.cpp - src/hotspot/share/gc/g1/vm_operations_g1.hpp - src/hotspot/share/gc/parallel/vmPSOperations.cpp - src/hotspot/share/gc/parallel/vmPSOperations.hpp - src/hotspot/share/gc/shared/vmGCOperations.cpp - src/hotspot/share/gc/shared/vmGCOperations.hpp ! src/hotspot/share/include/jvm.h - src/hotspot/share/jfr/recorder/repository/jfrChunkSizeNotifier.cpp - src/hotspot/share/jfr/recorder/repository/jfrChunkSizeNotifier.hpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmti.xml ! src/hotspot/share/prims/jvmtiEnvBase.cpp ! src/hotspot/share/prims/jvmtiEnvBase.hpp ! src/hotspot/share/prims/jvmtiEventController.cpp ! src/hotspot/share/prims/jvmtiExport.cpp + src/hotspot/share/runtime/vmOperations.hpp - src/hotspot/share/runtime/vm_operations.cpp - src/hotspot/share/runtime/vm_operations.hpp - src/java.base/share/classes/com/sun/crypto/provider/HmacPKCS12PBESHA1.java ! src/java.base/share/classes/java/lang/Object.java ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/java/util/concurrent/ConcurrentHashMap.java ! src/java.base/share/classes/sun/nio/ch/Net.java - src/java.logging/share/classes/java/util/logging/package.html - src/java.prefs/share/classes/java/util/prefs/package.html - src/java.rmi/share/classes/java/rmi/activation/package.html - src/java.rmi/share/classes/java/rmi/dgc/package.html - src/java.rmi/share/classes/java/rmi/package.html - src/java.rmi/share/classes/java/rmi/registry/package.html - src/java.rmi/share/classes/java/rmi/server/package.html - src/java.rmi/share/classes/javax/rmi/ssl/package.html - src/java.security.jgss/share/classes/org/ietf/jgss/package.html - src/java.smartcardio/share/classes/javax/smartcardio/package.html - src/java.sql.rowset/share/classes/com/sun/rowset/package.html - src/java.sql.rowset/share/classes/com/sun/rowset/providers/package.html - src/java.sql.rowset/share/classes/javax/sql/rowset/serial/package.html - src/java.sql/share/classes/java/sql/package.html - src/java.sql/share/classes/javax/sql/package.html - src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM964.java - src/jdk.charsets/share/classes/sun/nio/cs/ext/SimpleEUCEncoder.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/Key.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/KeyStore.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSACipher.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAKeyPair.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAKeyPairGenerator.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAPrivateKey.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSAPublicKey.java - src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/RSASignature.java - src/jdk.internal.le/share/classes/jdk/internal/jline/DefaultTerminal2.java - src/jdk.internal.le/share/classes/jdk/internal/jline/NoInterruptUnixTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/OSvTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/Terminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/Terminal2.java - src/jdk.internal.le/share/classes/jdk/internal/jline/TerminalFactory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/TerminalSupport.java - src/jdk.internal.le/share/classes/jdk/internal/jline/UnixTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/UnsupportedTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/WindowsTerminal.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/ConsoleKeys.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/ConsoleReader.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/CursorBuffer.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/KeyMap.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/KillRing.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/Operation.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/UserInterruptException.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/WCWidth.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/AggregateCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/AnsiStringsCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/ArgumentCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CandidateListCompletionHandler.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CandidateListCompletionHandler.properties - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/Completer.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/CompletionHandler.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/EnumCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/FileNameCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/NullCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/StringsCompleter.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/completer/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/FileHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/History.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/MemoryHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/PersistentHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/internal/ConsoleReaderInputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/internal/ConsoleRunner.java - src/jdk.internal.le/share/classes/jdk/internal/jline/console/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/extra/AnsiInterpretingOutputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/extra/EditingHistory.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Ansi.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Configuration.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Curses.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/InfoCmp.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/InputStreamReader.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Log.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/NonBlockingInputStream.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Nullable.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Preconditions.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/ShutdownHooks.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/TerminalLineSettings.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/TestAccessible.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/Urls.java - src/jdk.internal.le/share/classes/jdk/internal/jline/internal/package-info.java - src/jdk.internal.le/share/classes/jdk/internal/jline/package-info.java - src/jdk.internal.le/windows/native/lible/WindowsTerminal.cpp - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64.test/src/org/graalvm/compiler/core/amd64/test/MatchRuleTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.jdk9.test/src/org/graalvm/compiler/core/test/ea/AtomicVirtualizationTests.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/EliminateRedundantInitializationPhaseTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/PrintStreamOptionKey.java ! src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotGraphBuilderPlugins.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/ComputeObjectAddressNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/GetObjectAddressNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/UnsafeAccess.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopySnippets.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/ArrayCopyWithSlowPathNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/CheckcastArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/arraycopy/GenericArrayCopyCallNode.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.test/src/org/graalvm/compiler/lir/test/alloc/trace/TraceGlobalMoveResolutionMappingTest.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/DefaultTraceRegisterAllocationPolicy.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/GlobalLivenessAnalysisPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/GlobalLivenessInfo.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/ShadowedRegisterValue.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceAssertions.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceBuilderPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceGlobalMoveResolutionPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceGlobalMoveResolver.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceRegisterAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceRegisterAllocationPolicy.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TraceUtil.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/TrivialTraceAllocator.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/bu/BottomUpAllocator.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/FixedInterval.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/FixedRange.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/IntervalHint.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/RegisterVerifier.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceInterval.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanAssignLocationsPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanEliminateSpillMovePhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanLifetimeAnalysisPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanRegisterAllocationPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanResolveDataFlowPhase.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLinearScanWalker.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/TraceLocalMoveResolver.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/ControlFlowGraphState.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/TraceBuilderBenchmark.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/lir/trace/TraceLSRAIntervalBuildingBench.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyBailoutUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyCallerSensitiveMethods.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyDebugUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyGetOptionsUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyGraphAddUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyInstanceOfUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyUpdateUsages.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyUsageWithEquals.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/VerifyVirtualizableUsage.java - src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.jdk9_11.test/src/org/graalvm/compiler/replacements/jdk9_11/test/UnsafeObjectReplacementsTest.java - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_flat_75_ffffff_40x100.png - src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/images/ui-bg_glass_65_ffffff_1x400.png ! src/jdk.jdwp.agent/share/native/libjdwp/debugInit.c - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Command.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/Execute.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/HelpCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/JSONWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrettyWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/PrintCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/ReconstructCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SplitCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/StructuredWriter.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/SummaryCommand.java - src/jdk.jfr/share/classes/jdk/jfr/internal/cmd/XMLWriter.java - test/hotspot/jtreg/compiler/graalunit/Replacements9_11Test.java - test/hotspot/jtreg/gc/epsilon/CriticalNativeArgs.java - test/hotspot/jtreg/gc/epsilon/CriticalNativeStress.java - test/hotspot/jtreg/gc/epsilon/libCriticalNative.c - test/hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorEventsForTwoThreadsTest.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/TEST.properties - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network001.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network002.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network003.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network004.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network005.java - test/hotspot/jtreg/vmTestbase/nsk/stress/network/network006.java ! test/jdk/ProblemList.txt - test/jdk/java/net/MulticastSocket/PromiscuousIPv6.java - test/jdk/java/nio/channels/DatagramChannel/PromiscuousIPv6.java - test/jdk/java/util/ResourceBundle/Control/MissingResourceCauseTest.sh - test/jdk/jdk/internal/jline/console/StripAnsiTest.java - test/jdk/jdk/internal/jline/extra/AnsiInterpretingOutputStreamTest.java - test/jdk/jdk/internal/jline/extra/HistoryTest.java - test/jdk/jdk/jfr/cmd/ExecuteHelper.java - test/jdk/jdk/jfr/cmd/TestHelp.java - test/jdk/jdk/jfr/cmd/TestPrint.java - test/jdk/jdk/jfr/cmd/TestPrintDefault.java - test/jdk/jdk/jfr/cmd/TestPrintJSON.java - test/jdk/jdk/jfr/cmd/TestPrintXML.java - test/jdk/jdk/jfr/cmd/TestReconstruct.java - test/jdk/jdk/jfr/cmd/TestSplit.java - test/jdk/jdk/jfr/cmd/TestSummary.java - test/jdk/sun/security/pkcs11/nss/src/nss-3.16-with-nspr-4.10.4.tar.gz - test/jdk/sun/security/pkcs11/nss/src/nss-3.16-with-nspr-4.10.4.tar.gz.sha256 - test/jdk/sun/text/IntHashtable/Bug4170614Test.sh - test/jdk/sun/text/IntHashtable/patch-src/java/text/Bug4170614Test.java Changeset: eeeb45c9ba8e Author: alanb Date: 2018-12-20 13:15 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/eeeb45c9ba8e Merge From forax at univ-mlv.fr Sat Dec 22 15:37:23 2018 From: forax at univ-mlv.fr (Remi Forax) Date: Sat, 22 Dec 2018 16:37:23 +0100 (CET) Subject: loom fiber branch doesn't build Message-ID: <935242747.1270510.1545493042853.JavaMail.zimbra@u-pem.fr> Hi all, the branch fibers of loom (eeeb45c9ba8e) doesn't build anymore. https://travis-ci.org/forax/java-next/jobs/471336518 given it's like a bug in the shenandoah code, Aleksey is in CC. R?mi --- travis_time:start:03ba527a $ ./build.sh Runnable configure script is not present Generating runnable configure script at /home/travis/build/forax/java-next/loom/build/.configure-support/generated-configure.sh Using autoconf at /usr/bin/autoconf [autoconf (GNU Autoconf) 2.69] configure: Configuration created at Sat Dec 22 13:44:04 UTC 2018. checking for basename... /usr/bin/basename checking for bash... /bin/bash checking for cat... /bin/cat checking for chmod... /bin/chmod checking for cmp... /usr/bin/cmp checking for comm... /usr/bin/comm checking for cp... /bin/cp checking for cut... /usr/bin/cut checking for date... /bin/date checking for gdiff... no checking for diff... /usr/bin/diff checking for dirname... /usr/bin/dirname checking for echo... /bin/echo checking for expr... /usr/bin/expr checking for file... /usr/bin/file checking for find... /usr/bin/find checking for head... /usr/bin/head checking for gunzip... /bin/gunzip checking for pigz... no checking for gzip... /bin/gzip checking for ln... /bin/ln checking for ls... /bin/ls checking for gmkdir... no checking for mkdir... /bin/mkdir checking for mktemp... /bin/mktemp checking for mv... /bin/mv checking for nawk... /usr/bin/nawk checking for printf... /usr/bin/printf checking for greadlink... no checking for readlink... /bin/readlink checking for rm... /bin/rm checking for rmdir... /bin/rmdir checking for sh... /bin/sh checking for sort... /usr/bin/sort checking for tail... /usr/bin/tail checking for gtar... no checking for tar... /bin/tar checking for tee... /usr/bin/tee checking for touch... /usr/bin/touch checking for tr... /usr/bin/tr checking for uname... /bin/uname checking for uniq... /usr/bin/uniq checking for wc... /usr/bin/wc checking for which... /usr/bin/which checking for xargs... /usr/bin/xargs checking for gawk... gawk checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for fgrep... /bin/grep -F checking for a sed that does not truncate output... /bin/sed checking for cygpath... no checking for df... /bin/df checking for cpio... /bin/cpio checking for nice... /usr/bin/nice checking for pandoc... no checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking target system type... x86_64-unknown-linux-gnu checking openjdk-build os-cpu... linux-x86_64 checking openjdk-target os-cpu... linux-x86_64 checking compilation type... native checking for top-level directory... /home/travis/build/forax/java-next/loom checking if custom source is suppressed (openjdk-only)... no checking which debug level to use... release checking which variants of the JVM to build... server checking for sysroot... checking for toolchain path... checking for extra path... checking where to store configuration... in default location checking what configuration name to use... linux-x86_64-server-release checking for apt-get... apt-get checking for gmake... no checking for make... /usr/bin/make configure: Testing potential make at /usr/bin/make, found using make in PATH configure: Using GNU make at /usr/bin/make (version: GNU Make 3.81) checking if make --output-sync is supported... no checking if find supports -delete... yes checking what type of tar was found... gnu checking that grep (/bin/grep) -Fx handles empty lines in the pattern list correctly... yes checking for unzip... /usr/bin/unzip checking for zip... /usr/bin/zip checking for ldd... /usr/bin/ldd checking for greadelf... no checking for readelf... /usr/bin/readelf checking for dot... no checking for hg... /usr/local/bin/hg checking for git... /usr/bin/git checking for stat... /usr/bin/stat checking for time... /usr/bin/time checking for flock... /usr/bin/flock checking for dtrace... no checking for gpatch... no checking for patch... /usr/bin/patch checking bash version... 4.3.11 checking if bash supports pipefail... yes checking if bash supports errexit (-e)... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for default LOG value... checking headless only... no checking for graphviz dot... no, cannot generate full docs checking for pandoc... no, cannot generate full docs checking full docs... no, missing dependencies checking for cacerts file... default checking for jni library path... default checking if packaged modules are kept... yes (default) checking for version string... 13-loom+0-eeeb45c9ba8e configure: Found potential Boot JDK using configure arguments checking for Boot JDK... /home/travis/openjdk11 checking Boot JDK version... openjdk version "11.0.1" 2018-10-16 OpenJDK Runtime Environment 18.9 (build 11.0.1+13) OpenJDK 64-Bit Server VM 18.9 (build 11.0.1+13, mixed mode) checking for java in Boot JDK... ok checking for javac in Boot JDK... ok checking for javadoc in Boot JDK... ok checking for jar in Boot JDK... ok checking for jarsigner in Boot JDK... ok checking if Boot JDK is 32 or 64 bits... 64 checking for local Boot JDK Class Data Sharing (CDS)... yes, created checking for Build JDK... yes, will use output dir configure: Using default toolchain gcc (GNU Compiler Collection) checking for gcc... /usr/bin/gcc checking resolved symbolic links for CC... /usr/bin/gcc-4.8 configure: Using gcc C compiler version 4.8.4 [gcc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4] checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether /usr/bin/gcc accepts -g... yes checking for /usr/bin/gcc option to accept ISO C89... none needed checking for g++... /usr/bin/g++ checking resolved symbolic links for CXX... /usr/bin/g++-4.8 configure: Using gcc C++ compiler version 4.8.4 [g++ (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4] checking whether we are using the GNU C++ compiler... yes checking whether /usr/bin/g++ accepts -g... yes checking how to run the C preprocessor... /usr/bin/gcc -E checking how to run the C++ preprocessor... /usr/bin/g++ -E configure: Using gcc linker version 2.24 [GNU ld (GNU Binutils for Ubuntu) 2.24] checking for ar... ar configure: Rewriting AR to "/usr/bin/ar" checking for strip... strip configure: Rewriting STRIP to "/usr/bin/strip" checking for nm... nm configure: Rewriting NM to "/usr/bin/nm" checking for gobjcopy... no checking for objcopy... objcopy configure: Rewriting OBJCOPY to "/usr/bin/objcopy" checking for gobjdump... no checking for objdump... objdump configure: Rewriting OBJDUMP to "/usr/bin/objdump" checking for c++filt... c++filt configure: Rewriting CXXFILT to "/usr/bin/c++filt" checking for jtreg... no checking for jtreg test harness... no, not found checking for jmh (Java Microbenchmark Harness)... no, disabled checking for jib... no checking if @file is supported by gcc... yes checking if the C compiler supports "-m64"... yes checking if the C++ compiler supports "-m64"... yes checking if both compilers support "-m64"... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking stdio.h usability... yes checking stdio.h presence... yes checking for stdio.h... yes checking size of int *... 8 checking for target address size... 64 bits checking whether byte ordering is bigendian... no checking if native warnings are errors... no (explicitly set) checking if the C++ compiler supports "-std=gnu++98 -Werror"... yes checking for library containing clock_gettime... none required checking if the C compiler supports "-ffp-contract=off"... yes checking if the C++ compiler supports "-ffp-contract=off"... yes checking if both compilers support "-ffp-contract=off"... yes checking what type of native debug symbols to use... none checking for dtrace tool... not found, cannot build dtrace checking sys/sdt.h usability... no checking sys/sdt.h presence... no checking for sys/sdt.h... no checking if dtrace should be built... no, missing dependencies checking if Hotspot gtest unit tests should be built... yes checking if static link of stdc++ is possible... yes checking how to link with libstdc++... static checking for X... libraries , headers checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for X11/extensions/shape.h... yes checking for X11/extensions/Xrender.h... yes checking for X11/extensions/XTest.h... yes checking for X11/Intrinsic.h... yes checking for X11/extensions/Xrandr.h... yes checking if XlinearGradient is defined in Xrender.h... yes checking cups/cups.h usability... yes checking cups/cups.h presence... yes checking for cups/cups.h... yes checking cups/ppd.h usability... yes checking cups/ppd.h presence... yes checking for cups/ppd.h... yes checking fontconfig/fontconfig.h usability... yes checking fontconfig/fontconfig.h presence... yes checking for fontconfig/fontconfig.h... yes checking for FREETYPE... yes checking for freetype... yes (using pkg-config) Using freetype: system checking for ALSA... yes checking for which libjpeg to use... bundled checking for which giflib to use... bundled checking for PNG... yes checking for which libpng to use... bundled checking for compress in -lz... yes checking for which zlib to use... system checking for system zlib functionality... ok checking for which lcms to use... bundled checking for cos in -lm... yes checking for dlopen in -ldl... yes checking if shenandoah can be built... yes checking if zgc can be built... yes checking if jvmci module jdk.internal.vm.ci should be built... yes checking if graal module jdk.internal.vm.compiler should be built... yes checking if aot should be enabled... yes checking if cds should be enabled... yes checking if elliptic curve crypto implementation is present... yes checking if jtreg failure handler should be built... no, missing jtreg checking if the CDS classlist generation should be enabled... yes checking if any translations should be excluded... no checking if static man pages should be copied... yes checking if a default CDS archive should be generated... yes checking for number of cores... 2 checking for memory size... 7479 MB checking for appropriate number of jobs to run in parallel... 2 checking flags for boot jdk java command ... -Duser.language=en -Duser.country=US -XX:+UnlockDiagnosticVMOptions -XX:-VerifySharedSpaces -XX:SharedArchiveFile=/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/configure-support/classes.jsa -Xshare:auto checking flags for boot jdk java command for big workloads... -Xms64M -Xmx1600M -XX:ThreadStackSize=1536 checking flags for bootcycle boot jdk java command for big workloads... -Xms64M -Xmx1600M -XX:ThreadStackSize=1536 checking flags for boot jdk java command for small workloads... -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1 checking whether to use sjavac... no checking whether to use javac server... yes checking If precompiled header is enabled... yes checking that precompiled headers work... yes checking is ccache enabled... no checking if build directory is on local disk... yes checking JVM features for JVM variant 'server'... "aot cds cmsgc compiler1 compiler2 epsilongc g1gc graal jfr jni-check jvmci jvmti management nmt parallelgc serialgc services shenandoahgc vm-structs zgc" configure: creating /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/configure-support/config.status config.status: creating /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/spec.gmk config.status: creating /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/bootcycle-spec.gmk config.status: creating /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/buildjdk-spec.gmk config.status: creating /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/compare.sh config.status: creating /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/Makefile ==================================================== A new configuration has been successfully created in /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release using configure arguments '--with-boot-jdk=/home/travis/openjdk11 --with-native-debug-symbols=none --disable-warnings-as-errors --with-version-opt=eeeb45c9ba8e --with-version-pre=loom'. Configuration summary: * Debug level: release * HS debug level: product * JVM variants: server * JVM features: server: 'aot cds cmsgc compiler1 compiler2 epsilongc g1gc graal jfr jni-check jvmci jvmti management nmt parallelgc serialgc services shenandoahgc vm-structs zgc' * OpenJDK target: OS: linux, CPU architecture: x86, address length: 64 * Version string: 13-loom+0-eeeb45c9ba8e (13-loom) Tools summary: * Boot JDK: openjdk version "11.0.1" 2018-10-16 OpenJDK Runtime Environment 18.9 (build 11.0.1+13) OpenJDK 64-Bit Server VM 18.9 (build 11.0.1+13, mixed mode) (at /home/travis/openjdk11) * Toolchain: gcc (GNU Compiler Collection) * C Compiler: Version 4.8.4 (at /usr/bin/gcc) * C++ Compiler: Version 4.8.4 (at /usr/bin/g++) Build performance summary: * Cores to use: 2 * Memory limit: 7479 MB make hotspot Building target 'hotspot' in configuration 'linux-x86_64-server-release' Creating hotspot/variant-server/tools/adlc/adlc from 13 file(s) Compiling 2 files for BUILD_JVMTI_TOOLS Exececuting: [/home/travis/openjdk11/bin/javac -g -implicit:none -d /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/jvmti @/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/jvmti/_the.BUILD_JVMTI_TOOLS_batch.tmp] Compiling 1 files for BUILD_JFR_TOOLS Exececuting: [/home/travis/openjdk11/bin/javac -g -implicit:none -d /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/buildtools/tools_classes @/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/buildtools/tools_classes/_the.BUILD_JFR_TOOLS_batch.tmp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/adlparse.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"adlparse.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/adlparse.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/adlparse.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/archDesc.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"archDesc.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/archDesc.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/archDesc.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/arena.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"arena.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/arena.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/arena.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/dfa.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"dfa.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/dfa.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/dfa.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/dict2.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"dict2.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/dict2.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/dict2.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/filebuff.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"filebuff.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/filebuff.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/filebuff.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/forms.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"forms.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/forms.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/forms.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/formsopt.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"formsopt.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/formsopt.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/formsopt.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/formssel.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"formssel.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/formssel.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/formssel.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/main.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"main.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/main.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/main.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/opcodes.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"opcodes.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/opcodes.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/opcodes.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/output_c.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"output_c.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/output_c.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/output_c.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/output_h.d -fno-exceptions -DLINUX -std=gnu++98 -DASSERT -DAMD64 -I/home/travis/build/forax/java-next/loom/src/hotspot/share -Wno-unused-parameter -Wno-unused -DTHIS_FILE='"output_h.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/output_h.o /home/travis/build/forax/java-next/loom/src/hotspot/share/adlc/output_h.cpp] Exececuting: [/home/travis/openjdk11/bin/java -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1 -Duser.language=en -Duser.country=US -XX:+UnlockDiagnosticVMOptions -XX:-VerifySharedSpaces -XX:SharedArchiveFile=/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/configure-support/classes.jsa -Xshare:auto -cp /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/jvmti jvmtiGen -IN /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmti.xml -XSL /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiEnter.xsl -OUT /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp -PARAM interface jvmti] Exececuting: [/home/travis/openjdk11/bin/java -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1 -Duser.language=en -Duser.country=US -XX:+UnlockDiagnosticVMOptions -XX:-VerifySharedSpaces -XX:SharedArchiveFile=/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/configure-support/classes.jsa -Xshare:auto -cp /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/jvmti jvmtiGen -IN /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmti.xml -XSL /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiEnter.xsl -OUT /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnterTrace.cpp -PARAM interface jvmti -PARAM trace Trace] Exececuting: [/home/travis/openjdk11/bin/java -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1 -Duser.language=en -Duser.country=US -XX:+UnlockDiagnosticVMOptions -XX:-VerifySharedSpaces -XX:SharedArchiveFile=/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/configure-support/classes.jsa -Xshare:auto -cp /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/jvmti jvmtiGen -IN /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmti.xml -XSL /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiHpp.xsl -OUT /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnv.hpp] Exececuting: [/home/travis/openjdk11/bin/java -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1 -Duser.language=en -Duser.country=US -XX:+UnlockDiagnosticVMOptions -XX:-VerifySharedSpaces -XX:SharedArchiveFile=/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/configure-support/classes.jsa -Xshare:auto -cp /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/jvmti jvmtiGen -IN /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmti.xml -XSL /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiH.xsl -OUT /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmti.h] Exececuting: [/home/travis/openjdk11/bin/java -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1 -Duser.language=en -Duser.country=US -XX:+UnlockDiagnosticVMOptions -XX:-VerifySharedSpaces -XX:SharedArchiveFile=/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/configure-support/classes.jsa -Xshare:auto -cp /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/jvmti jvmtiGen -IN /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmti.xml -XSL /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmti.xsl -OUT /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmti.html] Exececuting: [/home/travis/openjdk11/bin/java -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1 -Duser.language=en -Duser.country=US -XX:+UnlockDiagnosticVMOptions -XX:-VerifySharedSpaces -XX:SharedArchiveFile=/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/configure-support/classes.jsa -Xshare:auto -cp /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/jvmti jvmtiGen -IN /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/bytecodeInterpreterWithChecks.xml -XSL /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/bytecodeInterpreterWithChecks.xsl -OUT /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jvmtifiles/bytecodeInterpreterWithChecks.cpp] Exececuting: [/home/travis/openjdk11/bin/java -XX:+UseSerialGC -Xms32M -Xmx512M -XX:TieredStopAtLevel=1 -Duser.language=en -Duser.country=US -XX:+UnlockDiagnosticVMOptions -XX:-VerifySharedSpaces -XX:SharedArchiveFile=/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/configure-support/classes.jsa -Xshare:auto -cp /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/buildtools/tools_classes build.tools.jfr.GenerateJfrFiles /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/metadata/metadata.xml /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/metadata/metadata.xsd /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jfrfiles] Exececuting: [/usr/bin/g++ -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/adlc /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/adlparse.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/archDesc.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/arena.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/dfa.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/dict2.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/filebuff.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/forms.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/formsopt.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/formssel.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/main.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/opcodes.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/output_c.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/objs/output_h.o] Exececuting: [/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/tools/adlc/adlc -q -T -DLINUX=1 -D_GNU_SOURCE=1 -g -DAMD64=1 -D_LP64=1 /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/support/adlc/all-ad-src.ad -c/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/support/adlc/ad_x86.cpp -h/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/support/adlc/ad_x86.hpp -a/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/support/adlc/dfa_x86.cpp -v/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/support/adlc/adGlobals_x86.hpp] Creating support/modules_libs/java.base/server/libjvm.so from 980 file(s) Exececuting: [/usr/bin/gcc -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -x c++-header -c -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled/precompiled.hpp.gch.d /home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled/precompiled.hpp -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled/precompiled.hpp.gch] Exececuting: [/usr/bin/gcc -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -I/home/travis/build/forax/java-next/loom/test/fmw/gtest -I/home/travis/build/forax/java-next/loom/test/fmw/gtest/include -I/home/travis/build/forax/java-next/loom/test/hotspot/gtest -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -Wno-undef -O3 -x c++-header -c -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/gtest/objs/precompiled/precompiled.hpp.gch.d /home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled/precompiled.hpp -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/gtest/objs/precompiled/precompiled.hpp.gch] Creating hotspot/variant-server/libjvm/gtest/libjvm.so from 114 file(s) Creating hotspot/variant-server/libjvm/gtest/gtestLauncher from 1 file(s) Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/abstractCompiler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"abstractCompiler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/abstractCompiler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/abstractCompiler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/abstractInterpreter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"abstractInterpreter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/abstractInterpreter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/abstractInterpreter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/abstractInterpreter_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"abstractInterpreter_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/abstractInterpreter_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/abstractInterpreter_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/access.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"access.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/access.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/access.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/accessBackend.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"accessBackend.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/accessBackend.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/accessBackend.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/accessBarrierSupport.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"accessBarrierSupport.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/accessBarrierSupport.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/accessBarrierSupport.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/accessFlags.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"accessFlags.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/accessFlags.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/accessFlags.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ad_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_clone.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ad_x86_clone.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_clone.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_clone.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_expand.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ad_x86_expand.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_expand.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_expand.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_format.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ad_x86_format.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_format.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_format.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_gen.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ad_x86_gen.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_gen.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_gen.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_misc.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ad_x86_misc.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_misc.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_misc.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_peephole.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ad_x86_peephole.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_peephole.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_peephole.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_pipeline.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ad_x86_pipeline.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ad_x86_pipeline.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles/ad_x86_pipeline.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/adaptiveFreeList.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"adaptiveFreeList.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/adaptiveFreeList.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/adaptiveFreeList.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/adaptiveSizePolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"adaptiveSizePolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/adaptiveSizePolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/adaptiveSizePolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/addnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"addnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/addnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/addnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/adjoiningGenerations.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"adjoiningGenerations.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/adjoiningGenerations.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/adjoiningGenerations.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/adjoiningVirtualSpaces.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"adjoiningVirtualSpaces.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/adjoiningVirtualSpaces.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/adjoiningVirtualSpaces.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ageTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ageTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ageTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/ageTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ageTableTracer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ageTableTracer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ageTableTracer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/ageTableTracer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/allocTracer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"allocTracer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/allocTracer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/allocTracer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/allocation.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"allocation.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/allocation.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/allocation.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/allocationStats.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"allocationStats.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/allocationStats.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/allocationStats.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/altHashing.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"altHashing.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/altHashing.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/altHashing.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/annotations.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"annotations.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/annotations.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/annotations.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/aotCodeHeap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"aotCodeHeap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/aotCodeHeap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/aot/aotCodeHeap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/aotCompiledMethod.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"aotCompiledMethod.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/aotCompiledMethod.o /home/travis/build/forax/java-next/loom/src/hotspot/share/aot/aotCompiledMethod.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/aotLoader.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"aotLoader.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/aotLoader.o /home/travis/build/forax/java-next/loom/src/hotspot/share/aot/aotLoader.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arena.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"arena.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arena.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/arena.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arguments.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DVERSION_FEATURE=13 -DVERSION_INTERIM=0 -DVERSION_UPDATE=0 -DVERSION_PATCH=0 -DVERSION_EXTRA1=0 -DVERSION_EXTRA2=0 -DVERSION_EXTRA3=0 -DVERSION_PRE='"loom"' -DVERSION_BUILD=0 -DVERSION_OPT='"eeeb45c9ba8e"' -DVERSION_NUMBER='"13"' -DVERSION_STRING='"13-loom+0-eeeb45c9ba8e"' -DVERSION_SHORT='"13-loom"' -DVERSION_SPECIFICATION='"13"' -DVERSION_DATE='"2019-09-17"' -DVENDOR_VERSION_STRING='""' -DVERSION_CLASSFILE_MAJOR=57 -DVERSION_CLASSFILE_MINOR=0 -DVENDOR_URL='"https://openjdk.java.net/"' -DVENDOR_URL_BUG='"https://bugreport.java.com/bugreport/"' -DHOTSPOT_VERSION_STRING='"13-loom+0-eeeb45c9ba8e"' -DDEBUG_LEVEL='"release"' -DHOTSPOT_BUILD_USER='"travis"' -DHOTSPOT_VM_DISTRO='"OpenJDK"' -DCPU='"amd64"' -DTHIS_FILE='"arguments.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arguments.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/arguments.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arguments_ext.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"arguments_ext.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arguments_ext.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/arguments_ext.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arrayKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"arrayKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arrayKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/arrayKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arraycopynode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"arraycopynode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/arraycopynode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/arraycopynode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/asPSOldGen.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"asPSOldGen.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/asPSOldGen.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/asPSOldGen.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/asPSYoungGen.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"asPSYoungGen.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/asPSYoungGen.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/asPSYoungGen.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/assembler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"assembler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/assembler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/asm/assembler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/assembler_linux_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"assembler_linux_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/assembler_linux_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86/assembler_linux_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/assembler_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -Wno-maybe-uninitialized -DTHIS_FILE='"assembler_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/assembler_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/assembler_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/attachListener.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"attachListener.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/attachListener.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/attachListener.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/attachListener_linux.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"attachListener_linux.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/attachListener_linux.o /home/travis/build/forax/java-next/loom/src/hotspot/os/linux/attachListener_linux.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"barrierSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/barrierSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetAssembler_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"barrierSetAssembler_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetAssembler_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/gc/shared/barrierSetAssembler_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetC1.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"barrierSetC1.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetC1.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/c1/barrierSetC1.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetC2.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"barrierSetC2.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetC2.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/c2/barrierSetC2.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetNMethod.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"barrierSetNMethod.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetNMethod.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/barrierSetNMethod.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetNMethod_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"barrierSetNMethod_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/barrierSetNMethod_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/gc/shared/barrierSetNMethod_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/basicLock.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"basicLock.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/basicLock.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/basicLock.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bcEscapeAnalyzer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bcEscapeAnalyzer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bcEscapeAnalyzer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/bcEscapeAnalyzer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bfsClosure.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bfsClosure.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bfsClosure.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/biasedLocking.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"biasedLocking.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/biasedLocking.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/biasedLocking.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bitMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bitMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bitMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/bitMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bitset.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bitset.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bitset.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/chains/bitset.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/block.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"block.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/block.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/block.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/blockFreelist.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"blockFreelist.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/blockFreelist.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/blockFreelist.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/blockOffsetTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"blockOffsetTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/blockOffsetTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/blockOffsetTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/buildOopMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"buildOopMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/buildOopMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/buildOopMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bytecode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/bytecode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeAssembler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bytecodeAssembler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeAssembler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/bytecodeAssembler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeHistogram.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bytecodeHistogram.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeHistogram.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/bytecodeHistogram.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeInfo.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bytecodeInfo.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeInfo.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/bytecodeInfo.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeInterpreter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bytecodeInterpreter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeInterpreter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/bytecodeInterpreter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeInterpreterWithChecks.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bytecodeInterpreterWithChecks.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeInterpreterWithChecks.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jvmtifiles/bytecodeInterpreterWithChecks.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeStream.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bytecodeStream.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeStream.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/bytecodeStream.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeTracer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bytecodeTracer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodeTracer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/bytecodeTracer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodes.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"bytecodes.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/bytecodes.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/bytecodes.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_CFGPrinter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_CFGPrinter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_CFGPrinter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_CFGPrinter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Canonicalizer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_Canonicalizer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Canonicalizer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_Canonicalizer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_CodeStubs_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_CodeStubs_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_CodeStubs_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c1_CodeStubs_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Compilation.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_Compilation.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Compilation.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_Compilation.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Compiler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_Compiler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Compiler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_Compiler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Defs.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_Defs.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Defs.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_Defs.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_FpuStackSim_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_FpuStackSim_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_FpuStackSim_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c1_FpuStackSim_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_FrameMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_FrameMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_FrameMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_FrameMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_FrameMap_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_FrameMap_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_FrameMap_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c1_FrameMap_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_GraphBuilder.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_GraphBuilder.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_GraphBuilder.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_GraphBuilder.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_IR.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_IR.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_IR.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_IR.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Instruction.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_Instruction.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Instruction.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_Instruction.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_InstructionPrinter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_InstructionPrinter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_InstructionPrinter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_InstructionPrinter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIR.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_LIR.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIR.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_LIR.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIRAssembler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_LIRAssembler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIRAssembler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_LIRAssembler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIRAssembler_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_LIRAssembler_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIRAssembler_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIRGenerator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_LIRGenerator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIRGenerator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_LIRGenerator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIRGenerator_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_LIRGenerator_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIRGenerator_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIR_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_LIR_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LIR_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c1_LIR_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LinearScan.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_LinearScan.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LinearScan.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_LinearScan.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LinearScan_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_LinearScan_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_LinearScan_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c1_LinearScan_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_MacroAssembler_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_MacroAssembler_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_MacroAssembler_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c1_MacroAssembler_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Optimizer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_Optimizer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Optimizer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_Optimizer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_RangeCheckElimination.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_RangeCheckElimination.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_RangeCheckElimination.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_RangeCheckElimination.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Runtime1.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_Runtime1.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Runtime1.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_Runtime1.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Runtime1_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_Runtime1_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_Runtime1_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c1_Runtime1_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_ValueMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_ValueMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_ValueMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_ValueMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_ValueSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_ValueSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_ValueSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_ValueSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_ValueStack.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_ValueStack.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_ValueStack.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_ValueStack.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_ValueType.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_ValueType.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_ValueType.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_ValueType.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_globals.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c1_globals.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c1_globals.o /home/travis/build/forax/java-next/loom/src/hotspot/share/c1/c1_globals.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c2_globals.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c2_globals.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c2_globals.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/c2_globals.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c2_init_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c2_init_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c2_init_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/c2_init_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c2compiler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"c2compiler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/c2compiler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/c2compiler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cSpaceCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cSpaceCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cSpaceCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/serial/cSpaceCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/callGenerator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"callGenerator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/callGenerator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/callGenerator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/callnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"callnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/callnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/callnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardGeneration.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cardGeneration.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardGeneration.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/cardGeneration.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cardTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/cardTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableBarrierSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cardTableBarrierSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableBarrierSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/cardTableBarrierSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableBarrierSetAssembler_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -Wno-maybe-uninitialized -DTHIS_FILE='"cardTableBarrierSetAssembler_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableBarrierSetAssembler_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/gc/shared/cardTableBarrierSetAssembler_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableBarrierSetC1.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cardTableBarrierSetC1.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableBarrierSetC1.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/c1/cardTableBarrierSetC1.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableBarrierSetC2.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cardTableBarrierSetC2.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableBarrierSetC2.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableRS.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cardTableRS.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cardTableRS.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/cardTableRS.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/castnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"castnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/castnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/castnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cdsoffsets.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cdsoffsets.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cdsoffsets.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/cdsoffsets.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cfgnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cfgnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cfgnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/cfgnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/chaitin.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"chaitin.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/chaitin.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/chaitin.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/chunkManager.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"chunkManager.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/chunkManager.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/chunkManager.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciArray.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciArray.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciArray.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciArray.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciArrayKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciArrayKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciArrayKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciArrayKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciBaseObject.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciBaseObject.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciBaseObject.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciBaseObject.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciCallSite.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciCallSite.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciCallSite.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciCallSite.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciConstant.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciConstant.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciConstant.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciConstant.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciConstantPoolCache.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciConstantPoolCache.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciConstantPoolCache.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciConstantPoolCache.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciEnv.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciEnv.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciEnv.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciEnv.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciExceptionHandler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciExceptionHandler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciExceptionHandler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciExceptionHandler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciField.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciField.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciField.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciField.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciFlags.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciFlags.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciFlags.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciFlags.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciInstance.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciInstance.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciInstance.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciInstance.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciInstanceKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciInstanceKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciInstanceKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciInstanceKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMemberName.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciMemberName.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMemberName.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciMemberName.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMetadata.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciMetadata.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMetadata.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciMetadata.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethod.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciMethod.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethod.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciMethod.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethodBlocks.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciMethodBlocks.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethodBlocks.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciMethodBlocks.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethodData.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciMethodData.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethodData.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciMethodData.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethodHandle.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciMethodHandle.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethodHandle.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciMethodHandle.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethodType.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciMethodType.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciMethodType.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciMethodType.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciNullObject.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciNullObject.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciNullObject.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciNullObject.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciObjArray.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciObjArray.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciObjArray.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciObjArray.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciObjArrayKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciObjArrayKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciObjArrayKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciObjArrayKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciObject.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciObject.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciObject.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciObject.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciObjectFactory.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciObjectFactory.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciObjectFactory.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciObjectFactory.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciReplay.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciReplay.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciReplay.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciReplay.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciSignature.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciSignature.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciSignature.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciSignature.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciStreams.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciStreams.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciStreams.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciStreams.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciSymbol.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciSymbol.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciSymbol.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciSymbol.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciType.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciType.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciType.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciType.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciTypeArray.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciTypeArray.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciTypeArray.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciTypeArray.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciTypeArrayKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciTypeArrayKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciTypeArrayKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciTypeArrayKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciTypeFlow.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciTypeFlow.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciTypeFlow.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciTypeFlow.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciUtilities.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ciUtilities.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ciUtilities.o /home/travis/build/forax/java-next/loom/src/hotspot/share/ci/ciUtilities.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classFileError.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classFileError.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classFileError.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classFileError.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classFileParser.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classFileParser.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classFileParser.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classFileParser.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classFileStream.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classFileStream.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classFileStream.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classFileStream.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classListParser.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classListParser.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classListParser.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classListParser.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoader.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classLoader.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoader.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classLoader.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderData.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classLoaderData.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderData.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classLoaderData.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderDataGraph.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classLoaderDataGraph.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderDataGraph.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classLoaderDataGraph.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderExt.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classLoaderExt.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderExt.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classLoaderExt.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderHierarchyDCmd.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classLoaderHierarchyDCmd.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderHierarchyDCmd.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classLoaderHierarchyDCmd.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderStats.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classLoaderStats.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoaderStats.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/classLoaderStats.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoadingService.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classLoadingService.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classLoadingService.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/classLoadingService.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classes.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"classes.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/classes.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/classes.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsArguments.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cmsArguments.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsArguments.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/cmsArguments.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsCardTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cmsCardTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsCardTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/cmsCardTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsCollectorPolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cmsCollectorPolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsCollectorPolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/cmsCollectorPolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsGCStats.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cmsGCStats.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsGCStats.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/cmsGCStats.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsHeap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cmsHeap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsHeap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/cmsHeap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsLockVerifier.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cmsLockVerifier.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsLockVerifier.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/cmsLockVerifier.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsVMOperations.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cmsVMOperations.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cmsVMOperations.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/cmsVMOperations.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/coalesce.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"coalesce.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/coalesce.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/coalesce.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeBehaviours.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"codeBehaviours.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeBehaviours.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/codeBehaviours.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeBlob.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"codeBlob.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeBlob.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/codeBlob.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeBuffer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"codeBuffer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeBuffer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/asm/codeBuffer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeCache.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"codeCache.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeCache.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/codeCache.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeHeapState.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"codeHeapState.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/codeHeapState.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/codeHeapState.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/collectedHeap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"collectedHeap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/collectedHeap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/collectedHeap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/collectionSetChooser.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"collectionSetChooser.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/collectionSetChooser.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/collectionSetChooser.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/collectorCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"collectorCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/collectorCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/collectorCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/collectorPolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"collectorPolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/collectorPolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/collectorPolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compactHashtable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compactHashtable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compactHashtable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/compactHashtable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compactibleFreeListSpace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compactibleFreeListSpace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compactibleFreeListSpace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/compactibleFreeListSpace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilationPolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compilationPolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilationPolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/compilationPolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compile.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compile.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compile.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/compile.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compileBroker.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compileBroker.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compileBroker.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/compileBroker.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compileLog.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compileLog.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compileLog.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/compileLog.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compileTask.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compileTask.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compileTask.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/compileTask.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledIC.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compiledIC.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledIC.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/compiledIC.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledICHolder.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compiledICHolder.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledICHolder.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/compiledICHolder.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledIC_aot.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compiledIC_aot.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledIC_aot.o /home/travis/build/forax/java-next/loom/src/hotspot/share/aot/compiledIC_aot.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledIC_aot_x86_64.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compiledIC_aot_x86_64.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledIC_aot_x86_64.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/compiledIC_aot_x86_64.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledIC_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compiledIC_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledIC_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/compiledIC_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledMethod.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compiledMethod.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compiledMethod.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/compiledMethod.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilerDefinitions.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compilerDefinitions.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilerDefinitions.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/compilerDefinitions.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilerDirectives.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compilerDirectives.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilerDirectives.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/compilerDirectives.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilerOracle.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compilerOracle.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilerOracle.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/compilerOracle.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilerRuntime.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compilerRuntime.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compilerRuntime.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jvmci/compilerRuntime.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compressedStream.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"compressedStream.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/compressedStream.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/compressedStream.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/concurrentGCPhaseManager.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"concurrentGCPhaseManager.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/concurrentGCPhaseManager.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/concurrentGCPhaseManager.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/concurrentGCThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"concurrentGCThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/concurrentGCThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/concurrentGCThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/concurrentMarkSweepGeneration.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"concurrentMarkSweepGeneration.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/concurrentMarkSweepGeneration.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/concurrentMarkSweepGeneration.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/concurrentMarkSweepThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"concurrentMarkSweepThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/concurrentMarkSweepThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/concurrentMarkSweepThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/connode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"connode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/connode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/connode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/constMethod.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"constMethod.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/constMethod.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/constMethod.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/constantPool.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"constantPool.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/constantPool.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/constantPool.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/constantTag.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"constantTag.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/constantTag.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/constantTag.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/continuation.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"continuation.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/continuation.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/continuation.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/convertnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"convertnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/convertnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/convertnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/copy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"copy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/copy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/copy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/countbitsnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"countbitsnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/countbitsnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/countbitsnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cpCache.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cpCache.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cpCache.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/cpCache.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cppInterpreter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cppInterpreter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cppInterpreter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/cppInterpreter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cppInterpreterGenerator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"cppInterpreterGenerator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/cppInterpreterGenerator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/cppInterpreterGenerator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/debug.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"debug.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/debug.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/debug.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/debugInfo.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"debugInfo.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/debugInfo.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/debugInfo.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/debugInfoRec.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"debugInfoRec.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/debugInfoRec.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/debugInfoRec.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/decoder.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"decoder.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/decoder.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/decoder.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/decoder_elf.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"decoder_elf.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/decoder_elf.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/decoder_elf.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/decoder_linux.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"decoder_linux.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/decoder_linux.o /home/travis/build/forax/java-next/loom/src/hotspot/os/linux/decoder_linux.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/defNewGeneration.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"defNewGeneration.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/defNewGeneration.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/serial/defNewGeneration.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/defaultMethods.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"defaultMethods.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/defaultMethods.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/defaultMethods.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/deoptimization.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"deoptimization.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/deoptimization.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/deoptimization.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/depChecker_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"depChecker_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/depChecker_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/depChecker_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dependencies.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"dependencies.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dependencies.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/dependencies.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dependencyContext.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"dependencyContext.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dependencyContext.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/dependencyContext.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dfa_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"dfa_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dfa_x86.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles/dfa_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dfsClosure.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"dfsClosure.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dfsClosure.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/chains/dfsClosure.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/diagnosticArgument.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"diagnosticArgument.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/diagnosticArgument.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/diagnosticArgument.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/diagnosticCommand.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"diagnosticCommand.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/diagnosticCommand.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/diagnosticCommand.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/diagnosticFramework.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"diagnosticFramework.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/diagnosticFramework.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/diagnosticFramework.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dict.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"dict.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dict.o /home/travis/build/forax/java-next/loom/src/hotspot/share/libadt/dict.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dictionary.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"dictionary.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dictionary.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/dictionary.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/directivesParser.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"directivesParser.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/directivesParser.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/directivesParser.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dirtyCardQueue.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"dirtyCardQueue.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dirtyCardQueue.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/dirtyCardQueue.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/disassembler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"disassembler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/disassembler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/disassembler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/divnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"divnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/divnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/divnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/doCall.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"doCall.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/doCall.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/doCall.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/domgraph.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"domgraph.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/domgraph.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/domgraph.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dtraceAttacher.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"dtraceAttacher.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/dtraceAttacher.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/dtraceAttacher.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/edge.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"edge.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/edge.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/chains/edge.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/edgeQueue.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"edgeQueue.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/edgeQueue.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/chains/edgeQueue.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/edgeStore.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"edgeStore.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/edgeStore.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/chains/edgeStore.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/edgeUtils.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"edgeUtils.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/edgeUtils.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/chains/edgeUtils.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/elfFile.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"elfFile.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/elfFile.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/elfFile.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/elfFuncDescTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"elfFuncDescTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/elfFuncDescTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/elfFuncDescTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/elfStringTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"elfStringTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/elfStringTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/elfStringTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/elfSymbolTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"elfSymbolTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/elfSymbolTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/elfSymbolTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/emitEventOperation.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"emitEventOperation.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/emitEventOperation.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/emitEventOperation.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonArguments.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"epsilonArguments.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonArguments.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/epsilon/epsilonArguments.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonBarrierSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"epsilonBarrierSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonBarrierSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/epsilon/epsilonBarrierSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonHeap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"epsilonHeap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonHeap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/epsilon/epsilonHeap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonMemoryPool.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"epsilonMemoryPool.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonMemoryPool.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/epsilon/epsilonMemoryPool.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonMonitoringSupport.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"epsilonMonitoringSupport.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/epsilonMonitoringSupport.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/epsilon/epsilonMonitoringSupport.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/escape.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"escape.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/escape.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/escape.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/events.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"events.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/events.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/events.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/evmCompat.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"evmCompat.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/evmCompat.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/evmCompat.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/exceptionHandlerTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"exceptionHandlerTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/exceptionHandlerTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/exceptionHandlerTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/exceptions.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"exceptions.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/exceptions.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/exceptions.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/fieldDescriptor.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"fieldDescriptor.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/fieldDescriptor.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/fieldDescriptor.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/fieldType.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"fieldType.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/fieldType.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/fieldType.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/filemap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"filemap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/filemap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/filemap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/formatBuffer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"formatBuffer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/formatBuffer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/formatBuffer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/forte.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"forte.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/forte.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/forte.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/frame.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"frame.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/frame.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/frame.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/frame_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"frame_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/frame_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/frame_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/freeChunk.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"freeChunk.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/freeChunk.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/freeChunk.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1AllocRegion.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1AllocRegion.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1AllocRegion.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1AllocRegion.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1Allocator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1Allocator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1Allocator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1Allocator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1Analytics.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1Analytics.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1Analytics.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1Analytics.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1Arguments.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1Arguments.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1Arguments.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1Arguments.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1BarrierSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1BarrierSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSetAssembler_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1BarrierSetAssembler_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSetAssembler_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/gc/g1/g1BarrierSetAssembler_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSetC1.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1BarrierSetC1.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSetC1.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/c1/g1BarrierSetC1.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSetC2.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1BarrierSetC2.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSetC2.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSetRuntime.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1BarrierSetRuntime.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BarrierSetRuntime.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1BarrierSetRuntime.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BiasedArray.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1BiasedArray.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BiasedArray.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1BiasedArray.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BlockOffsetTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1BlockOffsetTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1BlockOffsetTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1BlockOffsetTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CardCounts.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1CardCounts.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CardCounts.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1CardCounts.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CardTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1CardTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CardTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1CardTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CodeBlobClosure.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1CodeBlobClosure.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CodeBlobClosure.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1CodeBlobClosure.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CodeCacheRemSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1CodeCacheRemSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CodeCacheRemSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1CodeCacheRemSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CollectedHeap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1CollectedHeap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CollectedHeap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1CollectedHeap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CollectionSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1CollectionSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CollectionSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1CollectionSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CollectorPolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1CollectorPolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1CollectorPolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1CollectorPolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentMark.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1ConcurrentMark.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentMark.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1ConcurrentMark.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentMarkBitMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1ConcurrentMarkBitMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentMarkBitMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1ConcurrentMarkBitMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentMarkObjArrayProcessor.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1ConcurrentMarkObjArrayProcessor.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentMarkObjArrayProcessor.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1ConcurrentMarkObjArrayProcessor.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentMarkThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1ConcurrentMarkThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentMarkThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1ConcurrentMarkThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentRefine.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1ConcurrentRefine.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentRefine.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1ConcurrentRefine.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentRefineThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1ConcurrentRefineThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ConcurrentRefineThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1ConcurrentRefineThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1EvacFailure.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1EvacFailure.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1EvacFailure.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1EvacFailure.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1EvacStats.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1EvacStats.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1EvacStats.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1EvacStats.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FromCardCache.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FromCardCache.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FromCardCache.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FromCardCache.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullCollector.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullCollector.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullCollector.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullCollector.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCAdjustTask.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCAdjustTask.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCAdjustTask.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCAdjustTask.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCCompactTask.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCCompactTask.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCCompactTask.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCCompactTask.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCCompactionPoint.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCCompactionPoint.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCCompactionPoint.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCCompactionPoint.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCMarkTask.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCMarkTask.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCMarkTask.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCMarkTask.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCMarker.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCMarker.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCMarker.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCMarker.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCOopClosures.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCOopClosures.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCOopClosures.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCOopClosures.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCPrepareTask.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCPrepareTask.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCPrepareTask.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCPrepareTask.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCReferenceProcessorExecutor.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCReferenceProcessorExecutor.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCReferenceProcessorExecutor.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCReferenceProcessorExecutor.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCScope.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCScope.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCScope.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCScope.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCTask.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1FullGCTask.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1FullGCTask.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1FullGCTask.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1GCPhaseTimes.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1GCPhaseTimes.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1GCPhaseTimes.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapRegionEventSender.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1HeapRegionEventSender.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapRegionEventSender.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1HeapRegionEventSender.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapSizingPolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1HeapSizingPolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapSizingPolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1HeapSizingPolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapSizingPolicy_ext.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1HeapSizingPolicy_ext.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapSizingPolicy_ext.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1HeapSizingPolicy_ext.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapTransition.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1HeapTransition.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapTransition.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1HeapTransition.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapVerifier.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1HeapVerifier.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HeapVerifier.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1HeapVerifier.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HotCardCache.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1HotCardCache.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1HotCardCache.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1HotCardCache.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1IHOPControl.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1IHOPControl.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1IHOPControl.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1IHOPControl.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1MMUTracker.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1MMUTracker.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1MMUTracker.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1MMUTracker.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1MemoryPool.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1MemoryPool.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1MemoryPool.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1MemoryPool.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1MonitoringSupport.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1MonitoringSupport.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1MonitoringSupport.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1MonitoringSupport.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1OopClosures.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1OopClosures.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1OopClosures.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1OopClosures.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1OopStarChunkedList.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1OopStarChunkedList.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1OopStarChunkedList.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1OopStarChunkedList.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1PageBasedVirtualSpace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1PageBasedVirtualSpace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1PageBasedVirtualSpace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1PageBasedVirtualSpace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ParScanThreadState.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1ParScanThreadState.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1ParScanThreadState.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1ParScanThreadState.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1Policy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1Policy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1Policy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1Policy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RegionMarkStatsCache.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1RegionMarkStatsCache.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RegionMarkStatsCache.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1RegionMarkStatsCache.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RegionToSpaceMapper.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1RegionToSpaceMapper.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RegionToSpaceMapper.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1RegionToSpaceMapper.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RemSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1RemSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RemSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1RemSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RemSetSummary.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1RemSetSummary.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RemSetSummary.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1RemSetSummary.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RemSetTrackingPolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1RemSetTrackingPolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RemSetTrackingPolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1RemSetTrackingPolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RootClosures.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1RootClosures.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RootClosures.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1RootClosures.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RootProcessor.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1RootProcessor.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1RootProcessor.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1RootProcessor.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1SATBMarkQueueSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1SATBMarkQueueSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1SATBMarkQueueSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1SATBMarkQueueSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1StringDedup.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1StringDedup.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1StringDedup.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1StringDedup.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1StringDedupQueue.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1StringDedupQueue.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1StringDedupQueue.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1StringDedupQueue.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1StringDedupStat.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1StringDedupStat.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1StringDedupStat.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1StringDedupStat.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1SurvivorRegions.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1SurvivorRegions.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1SurvivorRegions.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1SurvivorRegions.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1VMOperations.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1VMOperations.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1VMOperations.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1VMOperations.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1YoungGenSizer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1YoungGenSizer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1YoungGenSizer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1YoungGenSizer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1YoungRemSetSamplingThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"g1YoungRemSetSamplingThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/g1YoungRemSetSamplingThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gSpaceCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gSpaceCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gSpaceCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/gSpaceCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcAdaptivePolicyCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcAdaptivePolicyCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcAdaptivePolicyCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/gcAdaptivePolicyCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcArguments.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcArguments.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcArguments.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcArguments.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcBehaviours.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcBehaviours.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcBehaviours.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcBehaviours.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcCause.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcCause.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcCause.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcCause.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcConfig.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcConfig.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcConfig.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcConfig.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcConfiguration.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcConfiguration.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcConfiguration.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcConfiguration.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcId.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcId.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcId.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcId.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcLocker.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcLocker.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcLocker.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcLocker.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcNotifier.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcNotifier.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcNotifier.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/gcNotifier.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcPolicyCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcPolicyCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcPolicyCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcPolicyCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcStats.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcStats.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcStats.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcStats.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTaskManager.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcTaskManager.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTaskManager.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/gcTaskManager.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTaskThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcTaskThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTaskThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/gcTaskThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTimer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcTimer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTimer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcTimer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTrace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcTrace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTrace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcTrace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTraceSend.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcTraceSend.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTraceSend.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcTraceSend.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTraceTime.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcTraceTime.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcTraceTime.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcTraceTime.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcUtil.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcUtil.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcUtil.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcUtil.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcVMOperations.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcVMOperations.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcVMOperations.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/gcVMOperations.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcm.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"gcm.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/gcm.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/gcm.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/genCollectedHeap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"genCollectedHeap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/genCollectedHeap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/genCollectedHeap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/genMarkSweep.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"genMarkSweep.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/genMarkSweep.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/serial/genMarkSweep.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/genMemoryPools.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"genMemoryPools.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/genMemoryPools.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/genMemoryPools.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generateOopMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"generateOopMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generateOopMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/generateOopMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generateOptoStub.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"generateOptoStub.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generateOptoStub.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/generateOptoStub.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generation.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"generation.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generation.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/generation.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generationCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"generationCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generationCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/generationCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generationSizer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"generationSizer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generationSizer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/generationSizer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generationSpec.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"generationSpec.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/generationSpec.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/generationSpec.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/globalCounter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"globalCounter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/globalCounter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/globalCounter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/globalDefinitions.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"globalDefinitions.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/globalDefinitions.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/globalDefinitions.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/globals.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"globals.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/globals.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/globals.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/granularTimer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"granularTimer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/granularTimer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/utilities/granularTimer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/graphKit.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"graphKit.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/graphKit.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/graphKit.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/growableArray.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"growableArray.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/growableArray.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/growableArray.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/guardedMemory.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"guardedMemory.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/guardedMemory.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/guardedMemory.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/hSpaceCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"hSpaceCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/hSpaceCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/hSpaceCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/handles.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"handles.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/handles.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/handles.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/handshake.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"handshake.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/handshake.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/handshake.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/hashtable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"hashtable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/hashtable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/hashtable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/heap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapDumper.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heapDumper.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapDumper.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/heapDumper.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapInspection.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heapInspection.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapInspection.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/heapInspection.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegion.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heapRegion.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegion.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/heapRegion.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionManager.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heapRegionManager.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionManager.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/heapRegionManager.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionRemSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heapRegionRemSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionRemSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/heapRegionRemSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heapRegionSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/heapRegionSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionTracer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heapRegionTracer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionTracer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/heapRegionTracer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionType.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heapRegionType.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapRegionType.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/heapRegionType.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapShared.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"heapShared.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/heapShared.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/heapShared.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/histogram.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"histogram.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/histogram.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/histogram.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/icBuffer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"icBuffer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/icBuffer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/icBuffer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/icBuffer_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"icBuffer_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/icBuffer_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/icBuffer_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/icache.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"icache.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/icache.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/icache.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/icache_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"icache_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/icache_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/icache_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/idealGraphPrinter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"idealGraphPrinter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/idealGraphPrinter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/idealGraphPrinter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/idealKit.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"idealKit.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/idealKit.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/idealKit.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ifg.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ifg.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ifg.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/ifg.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ifnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ifnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ifnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/ifnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/immutableSpace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"immutableSpace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/immutableSpace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/immutableSpace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/indexSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"indexSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/indexSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/indexSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/init.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"init.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/init.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/init.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/instanceKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"instanceKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/instanceKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/instanceKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/instanceMirrorKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"instanceMirrorKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/instanceMirrorKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/instanceMirrorKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/instanceOop.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"instanceOop.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/instanceOop.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/instanceOop.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/instanceRefKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"instanceRefKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/instanceRefKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/instanceRefKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/intHisto.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"intHisto.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/intHisto.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/intHisto.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interfaceSupport.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"interfaceSupport.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interfaceSupport.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/interfaceSupport.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interp_masm_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -Wno-uninitialized -DTHIS_FILE='"interp_masm_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interp_masm_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/interp_masm_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interpreter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"interpreter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interpreter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/interpreter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interpreterRT_x86_64.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"interpreterRT_x86_64.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interpreterRT_x86_64.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/interpreterRT_x86_64.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interpreterRuntime.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"interpreterRuntime.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/interpreterRuntime.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/interpreterRuntime.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/intrinsicnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"intrinsicnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/intrinsicnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/intrinsicnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/invocationCounter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"invocationCounter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/invocationCounter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/invocationCounter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/iterator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"iterator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/iterator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/iterator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/java.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"java.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/java.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/java.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/javaAssertions.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"javaAssertions.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/javaAssertions.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/javaAssertions.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/javaCalls.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"javaCalls.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/javaCalls.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/javaCalls.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/javaClasses.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"javaClasses.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/javaClasses.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/javaClasses.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfr.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfr.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfr.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/jfr.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrAllocation.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrAllocation.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrAllocation.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/utilities/jfrAllocation.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrAllocationTracer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrAllocationTracer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrAllocationTracer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/support/jfrAllocationTracer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrBuffer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrBuffer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrBuffer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/storage/jfrBuffer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrCallTrace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrCallTrace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrCallTrace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/periodic/sampling/jfrCallTrace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrCheckpointBlob.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrCheckpointBlob.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrCheckpointBlob.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointBlob.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrCheckpointManager.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrCheckpointManager.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrCheckpointManager.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointManager.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrCheckpointWriter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrCheckpointWriter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrCheckpointWriter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointWriter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrChunkRotation.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrChunkRotation.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrChunkRotation.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/repository/jfrChunkRotation.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrChunkState.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrChunkState.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrChunkState.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/repository/jfrChunkState.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrChunkWriter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrChunkWriter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrChunkWriter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/repository/jfrChunkWriter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrDcmds.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrDcmds.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrDcmds.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/dcmd/jfrDcmds.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEmergencyDump.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrEmergencyDump.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEmergencyDump.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/repository/jfrEmergencyDump.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEvent.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrEvent.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEvent.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/service/jfrEvent.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEventClass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrEventClass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEventClass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/support/jfrEventClass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEventClassTransformer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrEventClassTransformer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEventClassTransformer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEventSetting.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrEventSetting.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrEventSetting.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/jfrEventSetting.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrFlush.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrFlush.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrFlush.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/support/jfrFlush.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrGetAllEventClasses.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrGetAllEventClasses.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrGetAllEventClasses.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/jni/jfrGetAllEventClasses.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJavaCall.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrJavaCall.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJavaCall.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/jni/jfrJavaCall.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJavaEventWriter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrJavaEventWriter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJavaEventWriter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/writers/jfrJavaEventWriter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJavaLog.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrJavaLog.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJavaLog.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/utilities/jfrJavaLog.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJavaSupport.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrJavaSupport.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJavaSupport.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/jni/jfrJavaSupport.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJniMethod.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrJniMethod.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJniMethod.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/jni/jfrJniMethod.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJniMethodRegistration.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrJniMethodRegistration.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJniMethodRegistration.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/jni/jfrJniMethodRegistration.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJvmtiAgent.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrJvmtiAgent.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrJvmtiAgent.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/instrumentation/jfrJvmtiAgent.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrMemorySizer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrMemorySizer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrMemorySizer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/service/jfrMemorySizer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrMetadataEvent.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrMetadataEvent.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrMetadataEvent.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/jfrMetadataEvent.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrModuleEvent.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrModuleEvent.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrModuleEvent.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/periodic/jfrModuleEvent.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrNetworkUtilization.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrNetworkUtilization.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrNetworkUtilization.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/periodic/jfrNetworkUtilization.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrOSInterface.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrOSInterface.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrOSInterface.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/periodic/jfrOSInterface.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrOptionSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrOptionSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrOptionSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/service/jfrOptionSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrPeriodic.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrPeriodic.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrPeriodic.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/periodic/jfrPeriodic.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrPostBox.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrPostBox.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrPostBox.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/service/jfrPostBox.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRecorder.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrRecorder.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRecorder.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/jfrRecorder.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRecorderService.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrRecorderService.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRecorderService.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/service/jfrRecorderService.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRecorderThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrRecorderThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRecorderThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/service/jfrRecorderThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRecorderThreadLoop.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrRecorderThreadLoop.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRecorderThreadLoop.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/service/jfrRecorderThreadLoop.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRepository.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrRepository.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrRepository.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/repository/jfrRepository.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStackTraceMark.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrStackTraceMark.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStackTraceMark.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/support/jfrStackTraceMark.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStackTraceRepository.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrStackTraceRepository.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStackTraceRepository.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/stacktrace/jfrStackTraceRepository.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStorage.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrStorage.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStorage.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/storage/jfrStorage.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStorageControl.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrStorageControl.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStorageControl.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/storage/jfrStorageControl.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStringPool.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrStringPool.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStringPool.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/stringpool/jfrStringPool.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStringPoolBuffer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrStringPoolBuffer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStringPoolBuffer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/stringpool/jfrStringPoolBuffer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStringPoolWriter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrStringPoolWriter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrStringPoolWriter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/stringpool/jfrStringPoolWriter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadCPULoadEvent.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrThreadCPULoadEvent.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadCPULoadEvent.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/periodic/jfrThreadCPULoadEvent.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadDumpEvent.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrThreadDumpEvent.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadDumpEvent.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/periodic/jfrThreadDumpEvent.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadGroup.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrThreadGroup.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadGroup.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadGroup.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadLocal.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrThreadLocal.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadLocal.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/support/jfrThreadLocal.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadSampler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrThreadSampler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadSampler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/periodic/sampling/jfrThreadSampler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadState.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrThreadState.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrThreadState.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadState.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTime.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrTime.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTime.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/utilities/jfrTime.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTimeConverter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrTimeConverter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTimeConverter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/utilities/jfrTimeConverter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTraceId.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrTraceId.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTraceId.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceId.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTraceIdEpoch.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrTraceIdEpoch.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTraceIdEpoch.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdEpoch.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrType.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrType.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrType.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/types/jfrType.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTypeManager.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrTypeManager.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTypeManager.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeManager.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTypeSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrTypeSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTypeSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTypeSetUtils.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrTypeSetUtils.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrTypeSetUtils.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSetUtils.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrUpcalls.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrUpcalls.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrUpcalls.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/jni/jfrUpcalls.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrVirtualMemory.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jfrVirtualMemory.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jfrVirtualMemory.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/recorder/storage/jfrVirtualMemory.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jni.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jni.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jni.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jni.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniCheck.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jniCheck.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniCheck.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jniCheck.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniFastGetField.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jniFastGetField.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniFastGetField.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jniFastGetField.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniFastGetField_x86_64.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jniFastGetField_x86_64.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniFastGetField_x86_64.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/jniFastGetField_x86_64.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniHandles.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jniHandles.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniHandles.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/jniHandles.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniPeriodicChecker.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jniPeriodicChecker.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jniPeriodicChecker.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/jniPeriodicChecker.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/json.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"json.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/json.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/json.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvm.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvm.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvm.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvm.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlag.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlag.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlag.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/flags/jvmFlag.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintList.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlagConstraintList.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintList.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/flags/jvmFlagConstraintList.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsCMS.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlagConstraintsCMS.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsCMS.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/jvmFlagConstraintsCMS.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsCompiler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlagConstraintsCompiler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsCompiler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/flags/jvmFlagConstraintsCompiler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsG1.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlagConstraintsG1.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsG1.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/g1/jvmFlagConstraintsG1.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsGC.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlagConstraintsGC.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsGC.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/jvmFlagConstraintsGC.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsParallel.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlagConstraintsParallel.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsParallel.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/jvmFlagConstraintsParallel.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsRuntime.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlagConstraintsRuntime.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagConstraintsRuntime.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/flags/jvmFlagConstraintsRuntime.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagRangeList.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlagRangeList.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagRangeList.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/flags/jvmFlagRangeList.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagWriteableList.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmFlagWriteableList.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmFlagWriteableList.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/flags/jvmFlagWriteableList.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvm_posix.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvm_posix.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvm_posix.o /home/travis/build/forax/java-next/loom/src/hotspot/os/posix/jvm_posix.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCodeInstaller.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmciCodeInstaller.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCodeInstaller.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jvmci/jvmciCodeInstaller.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCodeInstaller_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmciCodeInstaller_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCodeInstaller_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/jvmciCodeInstaller_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCompiler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmciCompiler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCompiler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jvmci/jvmciCompiler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCompilerToVM.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -fno-var-tracking-assignments -DTHIS_FILE='"jvmciCompilerToVM.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCompilerToVM.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jvmci/jvmciCompilerToVM.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCompilerToVMInit.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -fno-var-tracking-assignments -DTHIS_FILE='"jvmciCompilerToVMInit.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciCompilerToVMInit.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jvmci/jvmciCompilerToVMInit.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciEnv.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmciEnv.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciEnv.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jvmci/jvmciEnv.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciJavaClasses.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmciJavaClasses.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciJavaClasses.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jvmci/jvmciJavaClasses.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciRuntime.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmciRuntime.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmciRuntime.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jvmci/jvmciRuntime.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmci_globals.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmci_globals.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmci_globals.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jvmci/jvmci_globals.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiClassFileReconstituter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiClassFileReconstituter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiClassFileReconstituter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiClassFileReconstituter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiCodeBlobEvents.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiCodeBlobEvents.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiCodeBlobEvents.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiCodeBlobEvents.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiEnter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnter.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnterTrace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiEnterTrace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnterTrace.o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnterTrace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnv.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiEnv.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnv.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiEnv.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnvBase.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiEnvBase.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnvBase.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiEnvBase.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnvThreadState.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiEnvThreadState.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEnvThreadState.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiEnvThreadState.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEventController.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiEventController.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiEventController.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiEventController.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiExport.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiExport.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiExport.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiExport.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiExtensions.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiExtensions.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiExtensions.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiExtensions.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiGetLoadedClasses.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiGetLoadedClasses.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiGetLoadedClasses.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiGetLoadedClasses.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiImpl.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiImpl.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiImpl.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiImpl.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiManageCapabilities.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiManageCapabilities.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiManageCapabilities.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiManageCapabilities.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiRawMonitor.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiRawMonitor.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiRawMonitor.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiRawMonitor.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiRedefineClasses.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiRedefineClasses.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiRedefineClasses.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiRedefineClasses.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiTagMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiTagMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiTagMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiTagMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiThreadState.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiThreadState.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiThreadState.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiThreadState.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiTrace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiTrace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiTrace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiTrace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiUtil.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"jvmtiUtil.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/jvmtiUtil.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/jvmtiUtil.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/klass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"klass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/klass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/klass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/klassFactory.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"klassFactory.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/klassFactory.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/klassFactory.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/klassVtable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"klassVtable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/klassVtable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/klassVtable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/lcm.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"lcm.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/lcm.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/lcm.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/leakProfiler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"leakProfiler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/leakProfiler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/leakProfiler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/library_call.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"library_call.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/library_call.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/library_call.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/linkResolver.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"linkResolver.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/linkResolver.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/linkResolver.cpp] Exececuting: [/usr/bin/gcc -c -m64 -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/linux_x86_64.o /home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86/linux_x86_64.s] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/live.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"live.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/live.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/live.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loaderConstraints.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"loaderConstraints.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loaderConstraints.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/loaderConstraints.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/location.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"location.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/location.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/location.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/locknode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"locknode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/locknode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/locknode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logConfiguration.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logConfiguration.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logConfiguration.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logConfiguration.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logDecorations.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logDecorations.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logDecorations.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logDecorations.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logDecorators.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logDecorators.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logDecorators.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logDecorators.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logDiagnosticCommand.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logDiagnosticCommand.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logDiagnosticCommand.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logDiagnosticCommand.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logFileOutput.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -D_FILE_OFFSET_BITS=64 -DTHIS_FILE='"logFileOutput.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logFileOutput.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logFileOutput.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logFileStreamOutput.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logFileStreamOutput.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logFileStreamOutput.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logFileStreamOutput.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logLevel.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logLevel.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logLevel.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logLevel.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logMessageBuffer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logMessageBuffer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logMessageBuffer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logMessageBuffer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logOutput.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logOutput.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logOutput.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logOutput.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logOutputList.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logOutputList.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logOutputList.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logOutputList.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logSelection.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logSelection.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logSelection.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logSelection.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logSelectionList.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logSelectionList.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logSelectionList.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logSelectionList.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logStream.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logStream.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logStream.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logStream.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logTag.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logTag.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logTag.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logTag.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logTagSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logTagSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logTagSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logTagSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logTagSetDescriptions.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"logTagSetDescriptions.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/logTagSetDescriptions.o /home/travis/build/forax/java-next/loom/src/hotspot/share/logging/logTagSetDescriptions.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopPredicate.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"loopPredicate.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopPredicate.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/loopPredicate.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopTransform.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"loopTransform.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopTransform.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/loopTransform.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopUnswitch.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"loopUnswitch.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopUnswitch.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/loopUnswitch.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"loopnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/loopnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopopts.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"loopopts.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/loopopts.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/loopopts.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/lowMemoryDetector.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"lowMemoryDetector.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/lowMemoryDetector.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/lowMemoryDetector.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/machnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"machnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/machnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/machnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macro.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macro.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macro.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/macro.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroArrayCopy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroArrayCopy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroArrayCopy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/macroArrayCopy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_aes.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86_aes.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_aes.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86_aes.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_cos.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86_cos.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_cos.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86_cos.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_exp.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86_exp.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_exp.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86_exp.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_log.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86_log.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_log.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86_log.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_log10.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86_log10.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_log10.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86_log10.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_pow.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86_pow.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_pow.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86_pow.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_sha.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86_sha.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_sha.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86_sha.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_sin.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86_sin.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_sin.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86_sin.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_tan.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"macroAssembler_x86_tan.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/macroAssembler_x86_tan.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/macroAssembler_x86_tan.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mallocSiteTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"mallocSiteTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mallocSiteTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/mallocSiteTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mallocTracker.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"mallocTracker.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mallocTracker.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/mallocTracker.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/management.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"management.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/management.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/management.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/markBitMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"markBitMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/markBitMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/markBitMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/markOop.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"markOop.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/markOop.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/markOop.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/markSweep.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"markSweep.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/markSweep.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/serial/markSweep.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/matcher.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"matcher.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/matcher.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/matcher.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mathexactnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"mathexactnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mathexactnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/mathexactnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memAllocator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memAllocator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memAllocator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memBaseline.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memBaseline.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memBaseline.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/memBaseline.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memRegion.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memRegion.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memRegion.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/memRegion.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memReporter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memReporter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memReporter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/memReporter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memTracker.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memTracker.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memTracker.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/memTracker.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/memnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memoryManager.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memoryManager.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memoryManager.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/memoryManager.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memoryPool.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memoryPool.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memoryPool.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/memoryPool.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memoryService.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memoryService.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memoryService.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/memoryService.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memprofiler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"memprofiler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/memprofiler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/memprofiler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaDebug.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metaDebug.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaDebug.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/metaDebug.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metachunk.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metachunk.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metachunk.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/metachunk.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metadata.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metadata.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metadata.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/metadata.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metadataOnStackMark.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metadataOnStackMark.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metadataOnStackMark.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/metadataOnStackMark.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metaspace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceClosure.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metaspaceClosure.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceClosure.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspaceClosure.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceCommon.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metaspaceCommon.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceCommon.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/metaspaceCommon.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metaspaceCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspaceCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceDCmd.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metaspaceDCmd.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceDCmd.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/metaspaceDCmd.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceShared.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metaspaceShared.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceShared.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspaceShared.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceStatistics.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metaspaceStatistics.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceStatistics.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/metaspaceStatistics.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceTracer.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"metaspaceTracer.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/metaspaceTracer.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspaceTracer.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/method.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"method.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/method.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/method.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodComparator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"methodComparator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodComparator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/methodComparator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"methodCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/methodCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodData.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"methodData.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodData.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/methodData.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodHandles.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"methodHandles.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodHandles.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/methodHandles.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodHandles_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"methodHandles_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodHandles_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/methodHandles_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodLiveness.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"methodLiveness.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodLiveness.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/methodLiveness.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodMatcher.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"methodMatcher.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/methodMatcher.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/methodMatcher.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/modRefBarrierSetAssembler_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"modRefBarrierSetAssembler_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/modRefBarrierSetAssembler_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/gc/shared/modRefBarrierSetAssembler_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/modRefBarrierSetC1.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"modRefBarrierSetC1.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/modRefBarrierSetC1.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/c1/modRefBarrierSetC1.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/modRefBarrierSetC2.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"modRefBarrierSetC2.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/modRefBarrierSetC2.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/c2/modRefBarrierSetC2.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/moduleEntry.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"moduleEntry.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/moduleEntry.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/moduleEntry.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/modules.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"modules.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/modules.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/modules.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/monitorChunk.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"monitorChunk.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/monitorChunk.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/monitorChunk.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/movenode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"movenode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/movenode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/movenode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mulnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"mulnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mulnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/mulnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/multnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"multnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/multnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/multnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mutableNUMASpace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"mutableNUMASpace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mutableNUMASpace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/mutableNUMASpace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mutableSpace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"mutableSpace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mutableSpace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/mutableSpace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mutex.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"mutex.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mutex.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/mutex.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mutexLocker.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"mutexLocker.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/mutexLocker.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/mutexLocker.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/narrowptrnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"narrowptrnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/narrowptrnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/narrowptrnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nativeCallStack.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"nativeCallStack.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nativeCallStack.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/nativeCallStack.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nativeInst_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"nativeInst_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nativeInst_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/nativeInst_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nativeLookup.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"nativeLookup.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nativeLookup.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/nativeLookup.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nmethod.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"nmethod.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nmethod.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/nmethod.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nmtCommon.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"nmtCommon.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nmtCommon.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/nmtCommon.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nmtDCmd.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"nmtDCmd.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/nmtDCmd.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/nmtDCmd.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/node.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"node.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/node.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/node.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/numberSeq.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"numberSeq.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/numberSeq.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/numberSeq.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objArrayKlass.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"objArrayKlass.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objArrayKlass.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/objArrayKlass.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objArrayOop.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"objArrayOop.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objArrayOop.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/objArrayOop.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectCountEventSender.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"objectCountEventSender.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectCountEventSender.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/objectCountEventSender.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectMonitor.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"objectMonitor.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectMonitor.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/objectMonitor.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectSampleCheckpoint.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"objectSampleCheckpoint.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectSampleCheckpoint.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleCheckpoint.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectSampleDescription.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"objectSampleDescription.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectSampleDescription.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleDescription.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectSampleWriter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"objectSampleWriter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectSampleWriter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleWriter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectSampler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"objectSampler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectSampler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/sampling/objectSampler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectStartArray.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"objectStartArray.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/objectStartArray.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/objectStartArray.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/occupancyMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"occupancyMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/occupancyMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/occupancyMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oop.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"oop.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oop.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/oop.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopFactory.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"oopFactory.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopFactory.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/oopFactory.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"oopMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/compiler/oopMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopMapCache.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"oopMapCache.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopMapCache.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/oopMapCache.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopRecorder.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"oopRecorder.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopRecorder.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/oopRecorder.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopStorage.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"oopStorage.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopStorage.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/oopStorage.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopsHierarchy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"oopsHierarchy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/oopsHierarchy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/oopsHierarchy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/opaquenode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"opaquenode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/opaquenode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/opaquenode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/opcodes.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"opcodes.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/opcodes.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/opcodes.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/operator_new.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"operator_new.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/operator_new.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/operator_new.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/orderAccess.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"orderAccess.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/orderAccess.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/orderAccess.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"os.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/os.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/osContainer_linux.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"osContainer_linux.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/osContainer_linux.o /home/travis/build/forax/java-next/loom/src/hotspot/os/linux/osContainer_linux.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/osThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"osThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/osThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/osThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/osThread_linux.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"osThread_linux.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/osThread_linux.o /home/travis/build/forax/java-next/loom/src/hotspot/os/linux/osThread_linux.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os_linux.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"os_linux.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os_linux.o /home/travis/build/forax/java-next/loom/src/hotspot/os/linux/os_linux.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os_linux_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"os_linux_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os_linux_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86/os_linux_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os_perf_linux.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"os_perf_linux.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os_perf_linux.o /home/travis/build/forax/java-next/loom/src/hotspot/os/linux/os_perf_linux.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os_posix.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"os_posix.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/os_posix.o /home/travis/build/forax/java-next/loom/src/hotspot/os/posix/os_posix.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ostream.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -D_FILE_OFFSET_BITS=64 -DTHIS_FILE='"ostream.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ostream.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/ostream.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/output.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"output.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/output.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/output.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/owstTaskTerminator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"owstTaskTerminator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/owstTaskTerminator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/owstTaskTerminator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/packageEntry.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"packageEntry.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/packageEntry.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/packageEntry.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parMarkBitMap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parMarkBitMap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parMarkBitMap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/parMarkBitMap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parNewGeneration.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parNewGeneration.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parNewGeneration.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/parNewGeneration.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parallelArguments.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parallelArguments.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parallelArguments.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/parallelArguments.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parallelCleaning.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parallelCleaning.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parallelCleaning.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/parallelCleaning.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parallelScavengeHeap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parallelScavengeHeap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parallelScavengeHeap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/park.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"park.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/park.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/park.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parse1.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parse1.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parse1.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/parse1.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parse2.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parse2.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parse2.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/parse2.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parse3.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parse3.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parse3.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/parse3.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parseHelper.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parseHelper.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parseHelper.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/parseHelper.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parserTests.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"parserTests.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/parserTests.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/wbtestmethods/parserTests.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/pcDesc.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"pcDesc.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/pcDesc.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/pcDesc.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/pcTasks.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"pcTasks.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/pcTasks.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/pcTasks.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/perf.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"perf.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/perf.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/perf.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/perfData.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"perfData.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/perfData.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/perfData.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/perfMemory.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"perfMemory.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/perfMemory.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/perfMemory.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/perfMemory_linux.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"perfMemory_linux.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/perfMemory_linux.o /home/travis/build/forax/java-next/loom/src/hotspot/os/linux/perfMemory_linux.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/phase.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"phase.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/phase.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/phase.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/phaseX.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"phaseX.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/phaseX.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/phaseX.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/plab.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"plab.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/plab.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/plab.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/placeholders.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"placeholders.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/placeholders.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/placeholders.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/postaloc.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"postaloc.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/postaloc.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/postaloc.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/preserveException.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"preserveException.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/preserveException.o /home/travis/build/forax/java-next/loom/src/hotspot/share/utilities/preserveException.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/preservedMarks.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"preservedMarks.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/preservedMarks.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/preservedMarks.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/printCLDMetaspaceInfoClosure.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"printCLDMetaspaceInfoClosure.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/printCLDMetaspaceInfoClosure.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/printCLDMetaspaceInfoClosure.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/printMetaspaceInfoKlassClosure.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"printMetaspaceInfoKlassClosure.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/printMetaspaceInfoKlassClosure.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/metaspace/printMetaspaceInfoKlassClosure.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/promotionInfo.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"promotionInfo.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/promotionInfo.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/cms/promotionInfo.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/protectionDomainCache.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"protectionDomainCache.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/protectionDomainCache.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/protectionDomainCache.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psAdaptiveSizePolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psAdaptiveSizePolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psAdaptiveSizePolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psCardTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psCardTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psCardTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psCardTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psCompactionManager.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psCompactionManager.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psCompactionManager.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psCompactionManager.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psGCAdaptivePolicyCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psGCAdaptivePolicyCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psGCAdaptivePolicyCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psGCAdaptivePolicyCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psGenerationCounters.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psGenerationCounters.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psGenerationCounters.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psGenerationCounters.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psMarkSweep.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psMarkSweep.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psMarkSweep.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psMarkSweep.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psMarkSweepDecorator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psMarkSweepDecorator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psMarkSweepDecorator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psMarkSweepDecorator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psMemoryPool.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psMemoryPool.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psMemoryPool.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psMemoryPool.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psOldGen.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psOldGen.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psOldGen.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psOldGen.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psParallelCompact.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psParallelCompact.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psParallelCompact.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psParallelCompact.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psPromotionLAB.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psPromotionLAB.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psPromotionLAB.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psPromotionLAB.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psPromotionManager.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psPromotionManager.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psPromotionManager.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psPromotionManager.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psScavenge.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psScavenge.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psScavenge.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psScavenge.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psTasks.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psTasks.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psTasks.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psTasks.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psVMOperations.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psVMOperations.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psVMOperations.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psVMOperations.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psVirtualspace.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psVirtualspace.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psVirtualspace.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psVirtualspace.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psYoungGen.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"psYoungGen.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/psYoungGen.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/parallel/psYoungGen.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ptrQueue.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"ptrQueue.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/ptrQueue.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/ptrQueue.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rdtsc_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"rdtsc_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rdtsc_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/rdtsc_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/referencePolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"referencePolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/referencePolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/referencePolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/referenceProcessor.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"referenceProcessor.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/referenceProcessor.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/referenceProcessor.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/referenceProcessorPhaseTimes.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"referenceProcessorPhaseTimes.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/referenceProcessorPhaseTimes.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/referenceProcessorPhaseTimes.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/reflection.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"reflection.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/reflection.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/reflection.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/reflectionAccessorImplKlassHelper.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"reflectionAccessorImplKlassHelper.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/reflectionAccessorImplKlassHelper.o /home/travis/build/forax/java-next/loom/src/hotspot/share/oops/reflectionAccessorImplKlassHelper.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/reflectionUtils.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"reflectionUtils.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/reflectionUtils.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/reflectionUtils.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/reg_split.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"reg_split.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/reg_split.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/reg_split.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/regalloc.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"regalloc.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/regalloc.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/regalloc.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/register.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"register.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/register.o /home/travis/build/forax/java-next/loom/src/hotspot/share/asm/register.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/registerMap_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"registerMap_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/registerMap_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/registerMap_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/register_definitions_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"register_definitions_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/register_definitions_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/register_definitions_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/register_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"register_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/register_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/register_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/regmask.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"regmask.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/regmask.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/regmask.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/relocInfo.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"relocInfo.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/relocInfo.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/relocInfo.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/relocInfo_ext.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"relocInfo_ext.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/relocInfo_ext.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/relocInfo_ext.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/relocInfo_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"relocInfo_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/relocInfo_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/relocInfo_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/relocator.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"relocator.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/relocator.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/relocator.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/replacednodes.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"replacednodes.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/replacednodes.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/replacednodes.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/resolutionErrors.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"resolutionErrors.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/resolutionErrors.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/resolutionErrors.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/resolvedMethodTable.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"resolvedMethodTable.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/resolvedMethodTable.o /home/travis/build/forax/java-next/loom/src/hotspot/share/prims/resolvedMethodTable.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/resourceArea.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"resourceArea.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/resourceArea.o /home/travis/build/forax/java-next/loom/src/hotspot/share/memory/resourceArea.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rewriter.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"rewriter.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rewriter.o /home/travis/build/forax/java-next/loom/src/hotspot/share/interpreter/rewriter.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rframe.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"rframe.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rframe.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/rframe.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rootResolver.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"rootResolver.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rootResolver.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/checkpoint/rootResolver.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rootSetClosure.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"rootSetClosure.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rootSetClosure.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/chains/rootSetClosure.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rootnode.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"rootnode.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rootnode.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/rootnode.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rtmLocking.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"rtmLocking.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/rtmLocking.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/rtmLocking.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/runtime.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"runtime.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/runtime.o /home/travis/build/forax/java-next/loom/src/hotspot/share/opto/runtime.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/runtimeService.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"runtimeService.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/runtimeService.o /home/travis/build/forax/java-next/loom/src/hotspot/share/services/runtimeService.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/runtime_x86_64.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"runtime_x86_64.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/runtime_x86_64.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/runtime_x86_64.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/safepoint.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"safepoint.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/safepoint.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/safepoint.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/safepointMechanism.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"safepointMechanism.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/safepointMechanism.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/safepointMechanism.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/safepointVerifiers.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"safepointVerifiers.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/safepointVerifiers.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/safepointVerifiers.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sampleList.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"sampleList.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sampleList.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/sampling/sampleList.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/samplePriorityQueue.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"samplePriorityQueue.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/samplePriorityQueue.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/sampling/samplePriorityQueue.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/satbMarkQueue.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"satbMarkQueue.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/satbMarkQueue.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/satbMarkQueue.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/saveRestore.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"saveRestore.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/saveRestore.o /home/travis/build/forax/java-next/loom/src/hotspot/share/jfr/leakprofiler/utilities/saveRestore.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/scopeDesc.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"scopeDesc.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/scopeDesc.o /home/travis/build/forax/java-next/loom/src/hotspot/share/code/scopeDesc.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/semaphore_posix.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"semaphore_posix.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/semaphore_posix.o /home/travis/build/forax/java-next/loom/src/hotspot/os/posix/semaphore_posix.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/serialArguments.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"serialArguments.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/serialArguments.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/serial/serialArguments.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/serialHeap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"serialHeap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/serialHeap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/serial/serialHeap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/serviceThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"serviceThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/serviceThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/serviceThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/set.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"set.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/set.o /home/travis/build/forax/java-next/loom/src/hotspot/share/libadt/set.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedPathsMiscInfo.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"sharedPathsMiscInfo.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedPathsMiscInfo.o /home/travis/build/forax/java-next/loom/src/hotspot/share/classfile/sharedPathsMiscInfo.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntime.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"sharedRuntime.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntime.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/sharedRuntime.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntimeTrans.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DNO_PCH -ffp-contract=off -O2 -DTHIS_FILE='"sharedRuntimeTrans.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntimeTrans.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/sharedRuntimeTrans.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntimeTrig.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DNO_PCH -ffp-contract=off -O2 -DTHIS_FILE='"sharedRuntimeTrig.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntimeTrig.o /home/travis/build/forax/java-next/loom/src/hotspot/share/runtime/sharedRuntimeTrig.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntime_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"sharedRuntime_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntime_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/sharedRuntime_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntime_x86_64.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"sharedRuntime_x86_64.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/sharedRuntime_x86_64.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahAdaptiveHeuristics.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahAdaptiveHeuristics.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahAdaptiveHeuristics.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahAggressiveHeuristics.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahAggressiveHeuristics.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahAggressiveHeuristics.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/heuristics/shenandoahAggressiveHeuristics.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahAllocTracker.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahAllocTracker.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahAllocTracker.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahAllocTracker.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahArguments.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahArguments.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahArguments.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahArguments.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahAsserts.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahAsserts.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahAsserts.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahAsserts.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahBarrierSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahBarrierSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSetAssembler_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahBarrierSetAssembler_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSetAssembler_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetAssembler_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSetC1.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahBarrierSetC1.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSetC1.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/c1/shenandoahBarrierSetC1.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSetC1_x86.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahBarrierSetC1_x86.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSetC1_x86.o /home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetC1_x86.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSetC2.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahBarrierSetC2.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahBarrierSetC2.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahCodeRoots.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahCodeRoots.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahCodeRoots.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahCodeRoots.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahCollectionSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahCollectionSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahCollectionSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahCollectionSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahCollectorPolicy.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahCollectorPolicy.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahCollectorPolicy.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahCollectorPolicy.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahCompactHeuristics.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahCompactHeuristics.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahCompactHeuristics.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/heuristics/shenandoahCompactHeuristics.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahConcurrentMark.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 --param inline-unit-growth=1000 -DTHIS_FILE='"shenandoahConcurrentMark.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahConcurrentMark.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahControlThread.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahControlThread.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahControlThread.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahControlThread.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahEvacOOMHandler.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahEvacOOMHandler.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahEvacOOMHandler.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahEvacOOMHandler.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahFreeSet.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahFreeSet.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahFreeSet.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahFreeSet.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahHeap.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahHeap.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahHeap.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp] Exececuting: [/usr/bin/g++ -MMD -MF /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahHeapRegion.d -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/precompiled -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_GNU_SOURCE -D_REENTRANT -pipe -fno-rtti -fno-exceptions -fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer -fcheck-new -std=gnu++98 -DSUPPORTS_CLOCK_MONOTONIC -DLINUX -Wall -Wextra -Wformat=2 -Wpointer-arith -Wsign-compare -Wunused-function -Wundef -Wunused-value -Wreturn-type -Woverloaded-virtual -Wreorder -fPIC -DVM_LITTLE_ENDIAN -D_LP64=1 -Wno-format-zero-length -Wtype-limits -Wuninitialized -m64 -DPRODUCT -DTARGET_ARCH_x86 -DINCLUDE_SUFFIX_OS=_linux -DINCLUDE_SUFFIX_CPU=_x86 -DINCLUDE_SUFFIX_COMPILER=_gcc -DTARGET_COMPILER_gcc -DAMD64 -DHOTSPOT_LIB_ARCH='"amd64"' -DCOMPILER1 -DCOMPILER2 -DSUPPORT_BARRIER_ON_PRIMITIVES -DSUPPORT_NOT_TO_SPACE_INVARIANT -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc/adfiles -I/home/travis/build/forax/java-next/loom/src/hotspot/share -I/home/travis/build/forax/java-next/loom/src/hotspot/os/linux -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix -I/home/travis/build/forax/java-next/loom/src/hotspot/cpu/x86 -I/home/travis/build/forax/java-next/loom/src/hotspot/os_cpu/linux_x86 -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/gensrc -I/home/travis/build/forax/java-next/loom/src/hotspot/share/precompiled -I/home/travis/build/forax/java-next/loom/src/hotspot/share/include -I/home/travis/build/forax/java-next/loom/src/hotspot/os/posix/include -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base -I/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/support/modules_include/java.base/linux -I/home/travis/build/forax/java-next/loom/src/java.base/share/native/libjimage -m64 -Wno-unused-parameter -Wno-unused -Wno-extra -Wno-parentheses -Wno-comment -Wno-unknown-pragmas -Wno-address -Wno-delete-non-virtual-dtor -Wno-char-subscripts -Wno-array-bounds -Wno-int-in-bool-context -Wno-ignored-qualifiers -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-empty-body -Wno-strict-overflow -Wno-sequence-point -Wno-maybe-uninitialized -Wno-misleading-indentation -O3 -DTHIS_FILE='"shenandoahHeapRegion.cpp"' -c -o /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahHeapRegion.o /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.cpp] In file included from /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:29:0: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: warning: ???virtual HeapWord* MemAllocator::mem_allocate(MemAllocator::Allocation&, bool) const??? was hidden [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const; ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:781:21: warning: by ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation) const { ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp: In member function ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const???: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: error: no matching function for call to ???ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? HeapWord* result = MemAllocator::mem_allocate(allocation); ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: note: candidate is: In file included from /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:29:0: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: note: virtual HeapWord* MemAllocator::mem_allocate(MemAllocator::Allocation&, bool) const virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const; ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: note: candidate expects 2 arguments, 1 provided At global scope: cc1plus: warning: unrecognized command line option "-Wno-misleading-indentation" [enabled by default] cc1plus: warning: unrecognized command line option "-Wno-implicit-fallthrough" [enabled by default] cc1plus: warning: unrecognized command line option "-Wno-int-in-bool-context" [enabled by default] make[3]: *** [/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahHeap.o] Error 1 make[3]: *** Waiting for unfinished jobs.... make[2]: *** [hotspot-server-libs] Error 1 ERROR: Build failed for target 'hotspot' in configuration 'linux-x86_64-server-release' (exit code 2) === Output from failing command(s) repeated here === * For target hotspot_variant-server_libjvm_objs_shenandoahHeap.o: In file included from /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:29:0: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: warning: ???virtual HeapWord* MemAllocator::mem_allocate(MemAllocator::Allocation&, bool) const??? was hidden [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const; ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:781:21: warning: by ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation) const { ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp: In member function ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const???: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: error: no matching function for call to ???ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? HeapWord* result = MemAllocator::mem_allocate(allocation); ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: note: candidate is: ... (rest of output omitted) * All command lines available in /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/make-support/failure-logs. === End of repeated output === No indication of failed target found. Hint: Try searching the build log for '] Error'. Hint: See doc/building.html#troubleshooting for assistance. make[1]: *** [main] Error 1 make: *** [hotspot] Error 2 make Building target 'default (exploded-image)' in configuration 'linux-x86_64-server-release' Compiling 8 files for BUILD_TOOLS_LANGTOOLS Warning: No SCM configuration present and no .src-rev Parsing 2 properties into enum-like class for jdk.compiler Compiling 19 properties into resource bundles for jdk.compiler Compiling 13 properties into resource bundles for jdk.javadoc In file included from /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:29:0: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: warning: ???virtual HeapWord* MemAllocator::mem_allocate(MemAllocator::Allocation&, bool) const??? was hidden [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const; ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:781:21: warning: by ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation) const { ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp: In member function ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const???: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: error: no matching function for call to ???ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? HeapWord* result = MemAllocator::mem_allocate(allocation); ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: note: candidate is: In file included from /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:29:0: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: note: virtual HeapWord* MemAllocator::mem_allocate(MemAllocator::Allocation&, bool) const virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const; ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: note: candidate expects 2 arguments, 1 provided Compiling 12 properties into resource bundles for jdk.jdeps Compiling 7 properties into resource bundles for jdk.jshell At global scope: cc1plus: warning: unrecognized command line option "-Wno-misleading-indentation" [enabled by default] cc1plus: warning: unrecognized command line option "-Wno-implicit-fallthrough" [enabled by default] cc1plus: warning: unrecognized command line option "-Wno-int-in-bool-context" [enabled by default] make[3]: *** [/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahHeap.o] Error 1 make[2]: *** [hotspot-server-libs] Error 1 make[2]: *** Waiting for unfinished jobs.... Compiling 117 files for BUILD_java.compiler.interim Compiling 396 files for BUILD_jdk.compiler.interim Compiling 304 files for BUILD_jdk.javadoc.interim ERROR: Build failed for target 'default (exploded-image)' in configuration 'linux-x86_64-server-release' (exit code 2) === Output from failing command(s) repeated here === * For target hotspot_variant-server_libjvm_objs_shenandoahHeap.o: In file included from /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:29:0: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: warning: ???virtual HeapWord* MemAllocator::mem_allocate(MemAllocator::Allocation&, bool) const??? was hidden [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const; ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:781:21: warning: by ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation) const { ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp: In member function ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const???: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: error: no matching function for call to ???ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? HeapWord* result = MemAllocator::mem_allocate(allocation); ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: note: candidate is: ... (rest of output omitted) * All command lines available in /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/make-support/failure-logs. === End of repeated output === No indication of failed target found. Hint: Try searching the build log for '] Error'. Hint: See doc/building.html#troubleshooting for assistance. make[1]: *** [main] Error 1 make: *** [default] Error 2 make images Building target 'images' in configuration 'linux-x86_64-server-release' Warning: No SCM configuration present and no .src-rev Compiling 162 files for BUILD_TOOLS_JDK In file included from /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:29:0: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: warning: ???virtual HeapWord* MemAllocator::mem_allocate(MemAllocator::Allocation&, bool) const??? was hidden [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const; ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:781:21: warning: by ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation) const { ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp: In member function ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const???: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: error: no matching function for call to ???ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? HeapWord* result = MemAllocator::mem_allocate(allocation); ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: note: candidate is: In file included from /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:29:0: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: note: virtual HeapWord* MemAllocator::mem_allocate(MemAllocator::Allocation&, bool) const virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const; ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: note: candidate expects 2 arguments, 1 provided At global scope: cc1plus: warning: unrecognized command line option "-Wno-misleading-indentation" [enabled by default] cc1plus: warning: unrecognized command line option "-Wno-implicit-fallthrough" [enabled by default] cc1plus: warning: unrecognized command line option "-Wno-int-in-bool-context" [enabled by default] make[3]: *** [/home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/hotspot/variant-server/libjvm/objs/shenandoahHeap.o] Error 1 make[2]: *** [hotspot-server-libs] Error 1 make[2]: *** Waiting for unfinished jobs.... Compiling 2 files for COMPILE_DEPEND Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. ERROR: Build failed for target 'images' in configuration 'linux-x86_64-server-release' (exit code 2) Stopping sjavac server === Output from failing command(s) repeated here === * For target hotspot_variant-server_libjvm_objs_shenandoahHeap.o: In file included from /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:29:0: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shared/memAllocator.hpp:70:21: warning: ???virtual HeapWord* MemAllocator::mem_allocate(MemAllocator::Allocation&, bool) const??? was hidden [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const; ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:781:21: warning: by ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? [-Woverloaded-virtual] virtual HeapWord* mem_allocate(Allocation& allocation) const { ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp: In member function ???virtual HeapWord* ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const???: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: error: no matching function for call to ???ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? HeapWord* result = MemAllocator::mem_allocate(allocation); ^ /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: note: candidate is: ... (rest of output omitted) * All command lines available in /home/travis/build/forax/java-next/loom/build/linux-x86_64-server-release/make-support/failure-logs. === End of repeated output === No indication of failed target found. Hint: Try searching the build log for '] Error'. Hint: See doc/building.html#troubleshooting for assistance. make[1]: *** [main] Error 1 make: *** [images] Error 2 cp: cannot stat ???loom/build/linux-x86_64-normal-server-release/images/jdk/???: No such file or directory cp: cannot stat ???loom/build/linux-x86_64-server-release/images/jdk/???: No such file or directory cp: cannot stat ???loom/build/macosx-x86_64-normal-server-release/images/jdk/???: No such file or directory cp: cannot stat ???loom/build/macosx-x86_64-server-release/images/jdk/???: No such file or directory travis_time:end:03ba527a:start=1545486242133039105,finish=1545486972042674346,duration=729909635241 The command "./build.sh" exited with 1. Done. Your build exited with 1. From shade at redhat.com Sat Dec 22 16:58:48 2018 From: shade at redhat.com (Aleksey Shipilev) Date: Sat, 22 Dec 2018 17:58:48 +0100 Subject: loom fiber branch doesn't build In-Reply-To: <935242747.1270510.1545493042853.JavaMail.zimbra@u-pem.fr> References: <935242747.1270510.1545493042853.JavaMail.zimbra@u-pem.fr> Message-ID: <1a2f2561-a45c-3057-6838-10080b593fe7@redhat.com> (re-sending from the proper email) Hi Remi, On 12/22/18 4:37 PM, Remi Forax wrote: > Hi all, > the branch fibers of loom (eeeb45c9ba8e) doesn't build anymore. > > https://travis-ci.org/forax/java-next/jobs/471336518 My CI failed with the same: https://builds.shipilev.net/openjdk-loom/openjdk-loom-b33-20181222-jdk-12+24-linux-x86_64-release.build.log Okay. So, fibers branch has these changes: https://builds.shipilev.net/patch-openjdk-loom-fibers/latest/src/hotspot/share/gc/shared/memAllocator.hpp.udiff.html https://builds.shipilev.net/patch-openjdk-loom-fibers/latest/src/hotspot/share/gc/shared/memAllocator.cpp.udiff.html ...which come from this changeset: http://hg.openjdk.java.net/loom/loom/rev/259c05b297e4 changeset: 51685:259c05b297e4 branch: cont parent: 51683:604f34b6c6cf user: rbackman date: Thu Sep 13 14:21:01 2018 +0200 summary: Stack and refStack allocation in native Obviously, after this change, we have to also match the definitions for those changes in Shenandoah, otherwise, we get: /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: error: no matching function for call to ???ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? HeapWord* result = MemAllocator::mem_allocate(allocation); The minimal fix is: diff -r eeeb45c9ba8e src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp --- a/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp Thu Dec 20 13:15:58 2018 +0000 +++ b/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp Sat Dec 22 17:52:04 2018 +0100 @@ -778,8 +778,8 @@ _initializer(initializer) {} protected: - virtual HeapWord* mem_allocate(Allocation& allocation) const { - HeapWord* result = MemAllocator::mem_allocate(allocation); + virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const { + HeapWord* result = MemAllocator::mem_allocate(allocation, try_tlab); // Initialize brooks-pointer if (result != NULL) { result += ShenandoahBrooksPointer::word_size(); Loom maintainers, please push this where appropriate. Separately, I _think_ this build failure was not caught during the merge, because Oracle decides not to build Shenandoah by default, and Alan (or whoever does the actual merge chore at Oracle side) cannot see the failure in their builds: https://twitter.com/shipilev/status/1072210769448706048 -Aleksey From chris.plummer at oracle.com Sat Dec 22 21:32:43 2018 From: chris.plummer at oracle.com (Chris Plummer) Date: Sat, 22 Dec 2018 13:32:43 -0800 Subject: loom fiber branch doesn't build In-Reply-To: <1a2f2561-a45c-3057-6838-10080b593fe7@redhat.com> References: <935242747.1270510.1545493042853.JavaMail.zimbra@u-pem.fr> <1a2f2561-a45c-3057-6838-10080b593fe7@redhat.com> Message-ID: I think you need --with-jvm-features=-shenandoahgc now when running configure. Alan can clarify. Chris On 12/22/18 8:58 AM, Aleksey Shipilev wrote: > (re-sending from the proper email) > > Hi Remi, > > On 12/22/18 4:37 PM, Remi Forax wrote: >> Hi all, >> the branch fibers of loom (eeeb45c9ba8e) doesn't build anymore. >> >> https://travis-ci.org/forax/java-next/jobs/471336518 > My CI failed with the same: > https://builds.shipilev.net/openjdk-loom/openjdk-loom-b33-20181222-jdk-12+24-linux-x86_64-release.build.log > > Okay. So, fibers branch has these changes: > > https://builds.shipilev.net/patch-openjdk-loom-fibers/latest/src/hotspot/share/gc/shared/memAllocator.hpp.udiff.html > https://builds.shipilev.net/patch-openjdk-loom-fibers/latest/src/hotspot/share/gc/shared/memAllocator.cpp.udiff.html > > ...which come from this changeset: > http://hg.openjdk.java.net/loom/loom/rev/259c05b297e4 > > changeset: 51685:259c05b297e4 > branch: cont > parent: 51683:604f34b6c6cf > user: rbackman > date: Thu Sep 13 14:21:01 2018 +0200 > summary: Stack and refStack allocation in native > > Obviously, after this change, we have to also match the definitions for those changes in Shenandoah, > otherwise, we get: > > /home/travis/build/forax/java-next/loom/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp:782:61: > error: no matching function for call to > ???ShenandoahMemAllocator::mem_allocate(MemAllocator::Allocation&) const??? > HeapWord* result = MemAllocator::mem_allocate(allocation); > > The minimal fix is: > > diff -r eeeb45c9ba8e src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp > --- a/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp Thu Dec 20 13:15:58 2018 +0000 > +++ b/src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp Sat Dec 22 17:52:04 2018 +0100 > @@ -778,8 +778,8 @@ > _initializer(initializer) {} > > protected: > - virtual HeapWord* mem_allocate(Allocation& allocation) const { > - HeapWord* result = MemAllocator::mem_allocate(allocation); > + virtual HeapWord* mem_allocate(Allocation& allocation, bool try_tlab) const { > + HeapWord* result = MemAllocator::mem_allocate(allocation, try_tlab); > // Initialize brooks-pointer > if (result != NULL) { > result += ShenandoahBrooksPointer::word_size(); > > Loom maintainers, please push this where appropriate. > > Separately, I _think_ this build failure was not caught during the merge, because Oracle decides not > to build Shenandoah by default, and Alan (or whoever does the actual merge chore at Oracle side) > cannot see the failure in their builds: > https://twitter.com/shipilev/status/1072210769448706048 > > -Aleksey > From alan.bateman at oracle.com Mon Dec 31 07:49:27 2018 From: alan.bateman at oracle.com (alan.bateman at oracle.com) Date: Mon, 31 Dec 2018 07:49:27 +0000 Subject: hg: loom/loom: 2 new changesets Message-ID: <201812310749.wBV7nSOf008083@aojmv0008.oracle.com> Changeset: 0c0cafdaad34 Author: alanb Date: 2018-12-30 08:13 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/0c0cafdaad34 Allow building with ShenandoahGC Contributed-by: ashipile at redhat.com ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp Changeset: 69489b45d379 Author: alanb Date: 2018-12-30 08:14 +0000 URL: http://hg.openjdk.java.net/loom/loom/rev/69489b45d379 Merge From Alan.Bateman at oracle.com Mon Dec 31 08:08:29 2018 From: Alan.Bateman at oracle.com (Alan Bateman) Date: Mon, 31 Dec 2018 08:08:29 +0000 Subject: loom fiber branch doesn't build In-Reply-To: <1a2f2561-a45c-3057-6838-10080b593fe7@redhat.com> References: <935242747.1270510.1545493042853.JavaMail.zimbra@u-pem.fr> <1a2f2561-a45c-3057-6838-10080b593fe7@redhat.com> Message-ID: <55b59776-6836-5cd2-ec42-7d0b945b8c25@oracle.com> On 22/12/2018 16:58, Aleksey Shipilev wrote: > : > Loom maintainers, please push this where appropriate. > > Separately, I _think_ this build failure was not caught during the merge, because Oracle decides not > to build Shenandoah by default, and Alan (or whoever does the actual merge chore at Oracle side) > cannot see the failure in their builds: > I've pushed your change to allowing building with Shenandoah again - thanks. I had to exclude it with --with-jvm-features=-shenandoahgc at the last merge while sorting out other issues (unrelated to JEP 189) that arose when trying to sync up the cont branch. Aside from MemAllocator, there aren't any other GC changes at this time. -Alan From forax at univ-mlv.fr Mon Dec 31 13:01:09 2018 From: forax at univ-mlv.fr (forax at univ-mlv.fr) Date: Mon, 31 Dec 2018 14:01:09 +0100 (CET) Subject: loom fiber branch doesn't build In-Reply-To: <55b59776-6836-5cd2-ec42-7d0b945b8c25@oracle.com> References: <935242747.1270510.1545493042853.JavaMail.zimbra@u-pem.fr> <1a2f2561-a45c-3057-6838-10080b593fe7@redhat.com> <55b59776-6836-5cd2-ec42-7d0b945b8c25@oracle.com> Message-ID: <445409623.33288.1546261269423.JavaMail.zimbra@u-pem.fr> I can confirm that the build is now fine, thanks Alan & Aleksey. R?mi ----- Mail original ----- > De: "Alan Bateman" > ?: "Aleksey Shipilev" , "Remi Forax" , "loom-dev" > Envoy?: Lundi 31 D?cembre 2018 09:08:29 > Objet: Re: loom fiber branch doesn't build > On 22/12/2018 16:58, Aleksey Shipilev wrote: >> : >> Loom maintainers, please push this where appropriate. >> >> Separately, I _think_ this build failure was not caught during the merge, >> because Oracle decides not >> to build Shenandoah by default, and Alan (or whoever does the actual merge chore >> at Oracle side) >> cannot see the failure in their builds: >> > I've pushed your change to allowing building with Shenandoah again - > thanks. I had to exclude it with --with-jvm-features=-shenandoahgc at > the last merge while sorting out other issues (unrelated to JEP 189) > that arose when trying to sync up the cont branch. Aside from > MemAllocator, there aren't any other GC changes at this time. > > -Alan From forax at univ-mlv.fr Mon Dec 31 13:06:36 2018 From: forax at univ-mlv.fr (forax at univ-mlv.fr) Date: Mon, 31 Dec 2018 14:06:36 +0100 (CET) Subject: Cold vs Hot co-routine In-Reply-To: References: <318350236.6936.1544395173460.JavaMail.zimbra@u-pem.fr> Message-ID: <822747180.33613.1546261596476.JavaMail.zimbra@u-pem.fr> The issue i see is that this model drift away from the thread model where the creation and the execution are two separated phases so it's less easy to convert a code that use a Thread to use a Fiber instead. R?mi ----- Mail original ----- > De: "Alan Bateman" > ?: "Remi Forax" , "loom-dev" > Envoy?: Lundi 10 D?cembre 2018 09:26:26 > Objet: Re: Cold vs Hot co-routine > On 09/12/2018 22:39, Remi Forax wrote: >> The latest API doesn't allow to create a Fiber without starting it, >> so the model is now closer to what C# does than to what F# does. >> >> What is the rationale to not offer the choice to schedule or not the fiber when >> you create it ? >> > Nothing discussed or decided on this yet. For now the API is minimal, > the implementation leaves it open until we get there. > > -Alan