Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Handle Unable to pack method, jump in aspectj

2013/9/13 Krishna Jasty <krishna.jasty@xxxxxxx>
Thanks Frank for the update,
//The byte code instructions are defined by the JVM specifications, it's not something AspectJ can change. SeeĀ http://en.wikipedia.org/wiki/Java_bytecode_instruction_listings.
The given specification is for 32bit jvm or 64bit jvm, If any change exists in 64 bit jvm. Let me know.

The bytecode does not depend on the JVM (remember WORA: Write Once, Run Anywhere), it's a general specification. Whether the JVM is 32-bit or 64-bit only influences how the JVM interprets or compiles the bytecode, not the bytecode itself; otherwise it wouldn't be bytecode but native instructions.

Frank

Back to the top