Jimmy K

Results 59 comments of Jimmy K

That's unexpected. Under `-Xint` the test passed for me on Linux on Power. I didn't try AIX. I forget exactly how many times I tried it, but it was quite...

I reran the test on Power including the fix in https://github.com/eclipse-openj9/openj9/pull/15824 The old failure is gone and the test in general passes under `-Xint`. But, I still get a failure...

I tried using the Xjit option `-Xjit:"exclude={*java/lang/Thread.currentCarrierThread*}"` to exclude the compilation but the test still fails. This time it fails inside `java/lang/Object.()V`. The `init` function does not make a JNI...

@gacholio Do you have any thoughts on why the value in `r16` does not seem to be set correctly before calling out to JIT'd code?

I tried modifying `openj9/runtime/vm/pcinterp.m4` to crash if there is an attempt to store 0x0 to `JIT_GPR_SAVE_SLOT(16)`. Basically it compares r3 to 0x0 and crashes if it is 0x0. However, my...

To confirm, you are referring to this location?: https://github.com/IBMJimmyk/openj9/blob/pinningSupport/runtime/oti/phelpers.m4#L828 I tried adding a check for 0 there as well and it never triggers. I didn't try explicitly adding checks to...

Is there a reason for `-Xjit:` (with the colon) to give an error? Is it possible to just treat it the same as `-Xjit` (no colon)?