8234391: C2: Generic vector operands

Reviewed-by: vlivanov, sviswanathan, thartmann, jrose
This commit is contained in:
Jatin Bhateja 2019-12-05 12:56:46 +03:00
parent f33e2e9c54
commit 979cd452ab
16 changed files with 1123 additions and 929 deletions

View file

@ -2466,7 +2466,11 @@ void Compile::Code_Gen() {
{
TracePhase tp("matcher", &timers[_t_matcher]);
matcher.match();
if (failing()) {
return;
}
}
// In debug mode can dump m._nodes.dump() for mapping of ideal to machine
// nodes. Mapping is only valid at the root of each matched subtree.
NOT_PRODUCT( verify_graph_edges(); )