This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Thread Rating:
  • 8 Vote(s) - 3.38 Average
  • 1
  • 2
  • 3
  • 4
  • 5
The 3rd Birthday - ULUS10567
#73
(07-12-2012, 11:28 PM)hyakki Wrote: r2612
On this one level (I have yet to test it on other levels) if you stand still long enough you will fall through the map, I actually noticed this bug alittle while ago but I forgot to report it :\
It only seems to happen when she changes into the idle or relaxed position

Here is a log and profile.txt with aya falling for about 1 minute.

I tried changing the method size thinking it might of been related to that but same result.
To exclude a compiler bug, could you try the following:
- delete the file Compiler.xml (or rename it to something else): this will disable the Java native code sequences.
- replace the compile method from jpcsp.Allegrex.compiler.CodeInstruction (lines 165-181) with the following:
Code:
public void compile(CompilerContext context, MethodVisitor mv) {
        startCompile(context, mv);

        if (isBranching()) {
            compileBranch(context, mv);
        } else if (insn == Instructions.JR) {
            compileJr(context, mv);
        } else if (insn == Instructions.JALR) {
            compileJalr(context, mv);
        } else if ("VFPU".equals(insn.category())) {
            context.compileInterpreterInstruction();
        } else {
            insn.compile(context, getOpcode());
        }

        context.endInstruction();
    }
This is just a ugly hack (only 2 lines added) to disable the compilation of all VFPU instructions. The VFPU instructions will be interpreted.
Always include a complete log file at INFO level in your reports. Thanks! How to post a log
Reply


Messages In This Thread
The 3rd Birthday - ULUS10567 - by hyakki - 03-29-2011, 08:55 PM
RE: The 3rd Birthday - ULUS10567 [Encrypted] - by gid15 - 07-13-2012, 11:33 AM
RE: The 3rd Birthday - ULUS10567 - by hope - 10-27-2013, 08:55 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)