/arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
D | inst_builder-inl.h | 28 uint32_t type_id; in BuildLoadFromPool() local 34 …type_id = GetRuntime()->ResolveOffsetByIndex(GetGraph()->GetMethod(), bc_inst->GetId(0).AsIndex()); in BuildLoadFromPool() 36 inst->SetTypeId(type_id); in BuildLoadFromPool()
|
D | ir_builder.h | 42 uint32_t type_id {};
|
D | ir_builder.cpp | 181 … 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/ |
D | ir_constructor.h | 632 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 …]
|
D | dump.cpp | 167 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/ |
D | debug_helpers.h | 92 [[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
|
D | debug_info_extractor.cpp | 92 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()
|
D | file_reader.cpp | 733 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 …]
|
D | file_items.h | 380 …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/ |
D | isa.h.erb | 22 % pretty_format.gsub!('ID', 'TYPE') if insn.properties.include?('type_id') 34 % flags << "InstFlags::TYPE_ID" if insn.properties.include? 'type_id'
|
D | operand_types_print.h.erb | 32 % if properties.include?('type_id')
|
D | opcode_parsing.h.erb | 95 % if properties.include?("type_id")
|
/arkcompiler/runtime_core/assembler/tests/ |
D | emitter_test.cpp | 154 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()
|
D | assembler_emitter_test.cpp | 186 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/ |
D | codegen.cpp | 38 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()
|
D | bytecode_optimizer_isapi.rb | 256 def type_id method
|
D | codegen.h | 133 …void AppendCatchBlock(uint32_t type_id, const compiler::BasicBlock *try_begin, const compiler::Bas…
|
/arkcompiler/runtime_core/compiler/docs/ |
D | vn_doc.md | 20 … information: opcode, type, `vn` of instruction inputs, advanced properties(for example type_id).
|
/arkcompiler/ets_frontend/es2panda/compiler/templates/ |
D | isa.h.erb | 112 % if %i[method_id type_id field_id string_id stringId callsite_id literalarray_id].include?(nam…
|
/arkcompiler/ets_frontend/ts2panda/templates/ |
D | irnodes.ts.erb | 72 % if %i[method_id type_id field_id string_id literalarray_id callsite_id].include?(name)
|