Dubbo请求数据的发送过程
调用过程(IMAF FLADR HHAANN) (3invoke + doInvoke)*2+3request+3send+write
Proxy0#sayHello(String)
Java 8
1 | !/bin/sh |
-verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps
-XX:+PrintGCApplicationStoppedTime -XX:+PrintTenuringDistribution
-Xloggc:/tmp/logs/gc_%p.log -XX:+HeapDumpOnOutOfMemoryError
-XX:HeapDumpPath=/tmp/logs -XX:ErrorFile=/tmp/logs/hs_error_pid%p.log
-XX:-OmitStackTraceInFastThrow
| 指令码 | 操作码(助记符) | 操作数 | 描述(栈指操作数栈) |
|---|---|---|---|
| 0x01 | aconst_null | null值入栈 | |
| 0x02 | iconst_m1 | -1(int)值入栈 | |
| 0x03 | iconst_0 | 0(int)值入栈 | |
| 0x04 | iconst_1 | 1(int)值入栈 | |
| 0x05 | iconst_2 | 2(int)值入栈 | |
| 0x06 | iconst_3 | 3(int)值入栈 | |
| 0x07 | iconst_4 | 4(int)值入栈 | |
| 0x08 | iconst_5 | 5(int)值入栈 | |
| 0x09 | lconst_0 | 0(long)值入栈 | |
| 0x0a | lconst_1 | 1(long)值入栈 | |
| 0x0b | fconst_0 | 0(float)值入栈 | |
| 0x0c | fconst_1 | 1(float)值入栈 | |
| 0x0d | fconst_2 | 2(float)值入栈 | |
| 0x0e | dconst_0 | 0(double)值入栈 | |
| 0x0f | dconst_1 | 1(double)值入栈 | |
| 0x10 | bipush | valuebyte | valuebyte值带符号扩展成int值入栈 |
| 0x11 | sipush | valuebyte1 valuebyte2 | (valuebyte1 << 8)|valuebyte2 值带符号扩展成int值入栈。 |
| 0x12 | ldc | indexbyte1 | 常量池中的常量值 (int, float, string reference, object reference)入栈。 |
| 0x13 | ldc_w | indexbyte1 indexbyte2 | 常量池中常量 (int, float, string reference, object reference)入栈。 |
| 0x14 | ldc2_2 | indexbyte1 indexbyte2 | 常量池中常量(long, double)入栈。 |