Home
last modified time | relevance | path

Searched refs:ReadULeb128 (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/runtime_core/libpandafile/
Dcode_data_accessor.cpp23 type_idx_ = helpers::ReadULeb128(&sp) - 1; in CatchBlock()
24 handler_pc_ = helpers::ReadULeb128(&sp); in CatchBlock()
25 code_size_ = helpers::ReadULeb128(&sp); in CatchBlock()
31 start_pc_ = helpers::ReadULeb128(&data); in TryBlock()
32 length_ = helpers::ReadULeb128(&data); in TryBlock()
33 num_catches_ = helpers::ReadULeb128(&data); in TryBlock()
42 num_vregs_ = helpers::ReadULeb128(&sp); in CodeDataAccessor()
43 num_args_ = helpers::ReadULeb128(&sp); in CodeDataAccessor()
44 code_size_ = helpers::ReadULeb128(&sp); in CodeDataAccessor()
45 tries_size_ = helpers::ReadULeb128(&sp); in CodeDataAccessor()
Dline_number_program.h94 uint32_t ReadULeb128() in ReadULeb128() function
96 return panda_file::helpers::ReadULeb128(&constant_pool_); in ReadULeb128()
223 auto pc_diff = state_->ReadULeb128(); in HandleAdvancePc()
229 return handler_->HandleSetFile(state_->ReadULeb128()); in HandleSetFile()
234 return handler_->HandleSetSourceCode(state_->ReadULeb128()); in HandleSetSourceCode()
250 auto name_index = state_->ReadULeb128(); in HandleStartLocal()
251 auto type_index = state_->ReadULeb128(); in HandleStartLocal()
258 auto name_index = state_->ReadULeb128(); in HandleStartLocalExtended()
259 auto type_index = state_->ReadULeb128(); in HandleStartLocalExtended()
260 auto type_signature_index = state_->ReadULeb128(); in HandleStartLocalExtended()
[all …]
Dclass_data_accessor.cpp28 name_.utf16_length = helpers::ReadULeb128(&sp); in ClassDataAccessor()
37 access_flags_ = helpers::ReadULeb128(&sp); in ClassDataAccessor()
38 num_fields_ = helpers::ReadULeb128(&sp); in ClassDataAccessor()
39 num_methods_ = helpers::ReadULeb128(&sp); in ClassDataAccessor()
49 num_ifaces_ = helpers::ReadULeb128(&sp); in ClassDataAccessor()
Ddebug_data_accessor-inl.h30 File::EntityId id(helpers::ReadULeb128(&sp)); in EnumerateParameters()
50 uint32_t size = helpers::ReadULeb128(&sp); in GetConstantPool()
68 uint32_t index = helpers::ReadULeb128(&sp); in GetLineNumberProgram()
Ddebug_data_accessor.cpp25 line_start_ = helpers::ReadULeb128(&sp); in DebugInfoDataAccessor()
26 num_params_ = helpers::ReadULeb128(&sp); in DebugInfoDataAccessor()
Dcode_data_accessor-inl.h66 num_vregs_ = helpers::ReadULeb128(&sp); in GetNumVregs()
74 *vregs = helpers::ReadULeb128(&sp); in GetInstructions()
Dfile-inl.h30 auto tag_utf16_length = panda_file::helpers::ReadULeb128(&sp); in GetStringData()
Dmethod_handle_data_accessor.cpp27 offset_ = helpers::ReadULeb128(&sp); in MethodHandleDataAccessor()
Dmethod_data_accessor.cpp32 access_flags_ = helpers::ReadULeb128(&sp); in MethodDataAccessor()
Dindex_accessor.h31 access_flags_ = helpers::ReadULeb128(&sp); in IndexAccessor()
Dfile_reader.cpp1077 auto name_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfoDependecies()
1081 auto type_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfoDependecies()
1098 auto name_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfoDependecies()
1102 auto type_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfoDependecies()
1110 auto type_signature_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfoDependecies()
1126 auto source_file_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfoDependecies()
1132 auto source_code_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfoDependecies()
1159 lnp_item->EmitAdvancePc(debug_info_item->GetConstantPool(), state.ReadULeb128()); in UpdateDebugInfo()
1171 auto name_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfo()
1175 auto type_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfo()
[all …]
Dfield_data_accessor.cpp38 access_flags_ = helpers::ReadULeb128(&sp); in FieldDataAccessor()
Dvalue.h77 count_ = helpers::ReadULeb128(&sp); in ArrayValue()
Dhelpers.h120 inline uint32_t ReadULeb128(Span<const uint8_t> *sp) in ReadULeb128() function
/arkcompiler/runtime_core/libpandafile/tests/
Dfile_item_container_test.cpp673 EXPECT_EQ(helpers::ReadULeb128(&cp), source_code_item->GetOffset()); in __anon97c8f9171102()
674 EXPECT_EQ(helpers::ReadULeb128(&cp), source_file_item->GetOffset()); in __anon97c8f9171102()
675 EXPECT_EQ(helpers::ReadULeb128(&cp), 10U); in __anon97c8f9171102()