Facebook reported crash in C2 in Parse::catch_inline_exceptions(). See attached hs_err file.
It looks like very old problem.
The problem happened during compilation of HiveMetastoreApiStats$1::call() method:
 public V call() throws Exception {
    try (TimeStat.BlockTimer timer = time.time()) {
        return callable.call();
    }
    catch (Exception e) {
        if (e instanceof MetaException) {
            metastoreExceptions.update(1);
        }
        else if (e instanceof TException) {
            thriftExceptions.update(1);
        }
        totalFailures.update(1);
        throw e;
    }
}