Home
last modified time | relevance | path

Searched refs:uleb128 (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/arkts-utils/
H A Darkts-bytecode-file-format.md18 | `uleb128` | leb128编码的无符号整数。 |
105 | `index_data` | `uleb128` | 方法的[MethodIndexData](#methodindexdata)数据。 |
172 | `reserved` | `uleb128` | 方舟字节码文件内部使用的保留字段。 |
205 | `index_data` | `uleb128` | 方法的[MethodIndexData](#methodindexdata)数据。 |
256 | `num_vregs` | `uleb128` | 寄存器的数量,存放入参和默认参数的寄存器不计算在内。 |
258 | `code_size` | `uleb128` | 所有指令的总大小,以字节为单位。 |
259 | `tries_size` | `uleb128` | `try_blocks`数组的长度,即[TryBlock](#tryblock)的数量。 |
273 | `num_catches` | `uleb128` | 与TryBlock关联的[CatchBlock](#catchblock)的数量,值为1。 |
284 | `type_idx` | `uleb128` | 值是0,表示此CatchBlock块捕获了所有类型的异常。 |
285 | `handler_pc` | `uleb128` | 异常处理逻辑的第一条指令的程序计数器。 |
[all …]
/ohos5.0/docs/en/application-dev/arkts-utils/
H A Darkts-bytecode-file-format.md18 | `uleb128` | Leb128-encoded unsigned integer. |
105 | `index_data` | `uleb128` | [MethodIndexData](#methodindexdata) data of the method.|
132 | `num_fields` | `uleb128` | Number of fields of **Class**. …
133 | `num_methods` | `uleb128` | Number of methods of **Class**. …
205 | `index_data` | `uleb128` | [MethodIndexData](#methodindexdata) data of the method.|
257 | `num_args` | `uleb128` | Total number of input and default parameters. …
258 | `code_size` | `uleb128` | Total size of all instructions, in bytes. …
284 | `type_idx` | `uleb128` | If the value is **0**, the **CatchBlock** captures all type…
285 | `handler_pc` | `uleb128` | Program counter of the first instruction for handling the e…
286 | `code_size` | `uleb128` | Size of the **CatchBlock**, in bytes. |
[all …]
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/
H A Darm_exidx_instructions.txt15 10110010 uleb128 vsp = vsp + 0x204+ (uleb128 << 2) (for vsp increments of 0x104-0x200, use 00xxxxxx…
H A Darm_exidx.cpp530 uint32_t uleb128 = 0; in Decode10110010uleb128() local
535 uleb128 |= (curOp_ & 0x7f) << shift; in Decode10110010uleb128()
538 uint32_t offset = 0x204 + (uleb128 << TWO_BIT_OFFSET); in Decode10110010uleb128()