Home
last modified time | relevance | path

Searched refs:type_id (Results 1 – 20 of 20) sorted by relevance

/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_builder-inl.h28 uint32_t type_id; in BuildLoadFromPool() local
34type_id = GetRuntime()->ResolveOffsetByIndex(GetGraph()->GetMethod(), bc_inst->GetId(0).AsIndex()); in BuildLoadFromPool()
36 inst->SetTypeId(type_id); in BuildLoadFromPool()
Dir_builder.h42 uint32_t type_id {};
Dir_builder.cpp181 … tbb->EnumerateCatchHandlers([this](BasicBlock *catch_handler, [[maybe_unused]] size_t type_id) { in ProcessThrowableInstructions() argument
512 try_inst->AppendCatchTypeId(catch_block.type_id, try_begin->GetSuccBlockIndex(catch_begin)); in ConnectTryCodeBlock()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dir_constructor.h632 IrConstructor &TypeId(uint32_t type_id) in TypeId() argument
637 inst->CastToCall()->SetCallMethodId(type_id); in TypeId()
640 inst->CastToLoadString()->SetTypeId(type_id); in TypeId()
643 inst->CastToLoadType()->SetTypeId(type_id); in TypeId()
646 inst->CastToUnresolvedLoadType()->SetTypeId(type_id); in TypeId()
649 inst->CastToStoreStatic()->SetTypeId(type_id); in TypeId()
652 inst->CastToUnresolvedStoreStatic()->SetTypeId(type_id); in TypeId()
655 inst->CastToLoadStatic()->SetTypeId(type_id); in TypeId()
658 inst->CastToUnresolvedLoadStatic()->SetTypeId(type_id); in TypeId()
661 inst->CastToLoadObject()->SetTypeId(type_id); in TypeId()
[all …]
Ddump.cpp167 void DumpTypedFieldOpcode(std::ostream *out, Opcode opcode, uint32_t type_id, const ArenaString &fi… in DumpTypedFieldOpcode() argument
173 ArenaString id(IdToString(type_id, allocator), adapter); in DumpTypedFieldOpcode()
177 void DumpTypedOpcode(std::ostream *out, Opcode opcode, uint32_t type_id, ArenaAllocator *allocator) in DumpTypedOpcode() argument
181 ArenaString id(IdToString(type_id, allocator), allocator->Adapter()); in DumpTypedOpcode()
/arkcompiler/runtime_core/libpandafile/
Ddebug_helpers.h92 [[maybe_unused]] uint32_t type_id) const in HandleStartLocal() argument
98 … [[maybe_unused]] uint32_t type_id, [[maybe_unused]] uint32_t type_signature_id) const in HandleStartLocalExtended() argument
Ddebug_info_extractor.cpp92 bool HandleStartLocal(int32_t reg_number, uint32_t name_id, uint32_t type_id) in HandleStartLocal() argument
95 const char *type = GetStringFromConstantPool(state_->GetPandaFile(), type_id); in HandleStartLocal()
100 …bool HandleStartLocalExtended(int32_t reg_number, uint32_t name_id, uint32_t type_id, uint32_t typ… in HandleStartLocalExtended() argument
103 const char *type = GetStringFromConstantPool(state_->GetPandaFile(), type_id); in HandleStartLocalExtended()
Dfile_reader.cpp733 File::EntityId type_id(field_acc.GetType()); in CreateFieldItem() local
734 if (file_->IsExternal(type_id)) { in CreateFieldItem()
735 field_type_item = CreateForeignClassItem(type_id); in CreateFieldItem()
737 field_type_item = CreateClassItem(type_id); in CreateFieldItem()
860 File::EntityId type_id(field_acc.GetType()); in CreateForeignFieldItem() local
861 if (file_->IsExternal(type_id)) { in CreateForeignFieldItem()
862 field_type_item = CreateForeignClassItem(type_id); in CreateForeignFieldItem()
864 field_type_item = CreateClassItem(type_id); in CreateForeignFieldItem()
1081 auto type_id = File::EntityId(state.ReadULeb128()); in UpdateDebugInfoDependecies() local
1082 std::string type_name = utf::Mutf8AsCString(file_->GetStringData(type_id).data); in UpdateDebugInfoDependecies()
[all …]
Dfile_items.h380 …explicit TypeItem(Type::TypeId type_id, ItemContainer *container) : IndexedItem(container), type_( in TypeItem() argument
405 …explicit PrimitiveTypeItem(Type::TypeId type_id, ItemContainer *container) : TypeItem(type_id, con… in PrimitiveTypeItem() argument
/arkcompiler/runtime_core/assembler/templates/
Disa.h.erb22 % pretty_format.gsub!('ID', 'TYPE') if insn.properties.include?('type_id')
34 % flags << "InstFlags::TYPE_ID" if insn.properties.include? 'type_id'
Doperand_types_print.h.erb32 % if properties.include?('type_id')
Dopcode_parsing.h.erb95 % if properties.include?("type_id")
/arkcompiler/runtime_core/assembler/tests/
Demitter_test.cpp154 panda_file::Type::TypeId type_id; in TEST() member
169 ASSERT_EQ(fda.GetType(), panda_file::Type(fields[i].type_id).GetFieldEncoding()); in TEST()
326 panda_file::File::EntityId type_id; in TEST() member
339 EXPECT_EQ(id, catch_infos[i].type_id); in TEST()
534 panda_file::Type::TypeId type_id; in TEST() member
576 panda_file::Type type(field_data.type_id); in TEST()
586 switch (field_data.type_id) { in TEST()
Dassembler_emitter_test.cpp186 panda_file::Type::TypeId type_id; member
201 EXPECT_EQ(fda.GetType(), panda_file::Type(fields[i].type_id).GetFieldEncoding()); in __anon654af7a10602()
385 panda_file::File::EntityId type_id; in __anon654af7a10a02() member
612 panda_file::Type::TypeId type_id; member
660 panda_file::Type type(field_data.type_id); in __anon654af7a11002()
668 switch (field_data.type_id) { in __anon654af7a11002()
/arkcompiler/runtime_core/bytecode_optimizer/
Dcodegen.cpp38 void BytecodeGen::AppendCatchBlock(uint32_t type_id, const compiler::BasicBlock *try_begin, in AppendCatchBlock() argument
43 if (type_id != 0) { in AppendCatchBlock()
44 cb.exception_record = ir_interface_->GetTypeIdByOffset(type_id); in AppendCatchBlock()
61 bb->EnumerateCatchHandlers([&, bb, try_end](BasicBlock *catch_handler, size_t type_id) { in VisitTryBegin() argument
62 AppendCatchBlock(type_id, bb, try_end, catch_handler); in VisitTryBegin()
Dbytecode_optimizer_isapi.rb256 def type_id method
Dcodegen.h133 …void AppendCatchBlock(uint32_t type_id, const compiler::BasicBlock *try_begin, const compiler::Bas…
/arkcompiler/runtime_core/compiler/docs/
Dvn_doc.md20 … information: opcode, type, `vn` of instruction inputs, advanced properties(for example type_id).
/arkcompiler/ets_frontend/es2panda/compiler/templates/
Disa.h.erb112 % if %i[method_id type_id field_id string_id stringId callsite_id literalarray_id].include?(nam…
/arkcompiler/ets_frontend/ts2panda/templates/
Dirnodes.ts.erb72 % if %i[method_id type_id field_id string_id literalarray_id callsite_id].include?(name)