Is there an analogue of visitLdcInsn for loading objects (not constant)?
问题 We wrote a simple PostScript interpreter in Java and want to optimize it by generating bytecode directly for specific parts of source code. For this we need to load the object from the context of the Java bytecode context. Specify such object in the signature of the generated bytecode method is not good, because they may be in a large amount in our case. In Java Asm we have method public void visitLdcInsn(Object cst) It visits a LDC instruction. Parameter cst - the constant to be loaded on