Searched refs:array_types (Results 1 – 4 of 4) sorted by relevance
| /arkcompiler/ets_frontend/merge_abc/src/ |
| D | assemblyProgramProto.cpp | 46 for (const auto &type : program.array_types) { in Serialize() 90 program.array_types.insert(std::move(arrayType)); in Deserialize()
|
| /arkcompiler/runtime_core/assembler/ |
| D | assembly-emitter.cpp | 623 ASSERT(program.array_types.find(Type("u1", 1)) != program.array_types.end()); in MakeLiteralItems() 629 ASSERT(program.array_types.find(Type("u8", 1)) != program.array_types.end()); in MakeLiteralItems() 635 ASSERT(program.array_types.find(Type("i8", 1)) != program.array_types.end()); in MakeLiteralItems() 641 ASSERT(program.array_types.find(Type("u16", 1)) != program.array_types.end()); in MakeLiteralItems() 647 ASSERT(program.array_types.find(Type("i16", 1)) != program.array_types.end()); in MakeLiteralItems() 653 ASSERT(program.array_types.find(Type("u32", 1)) != program.array_types.end()); in MakeLiteralItems() 659 ASSERT(program.array_types.find(Type("i32", 1)) != program.array_types.end()); in MakeLiteralItems() 665 ASSERT(program.array_types.find(Type("u64", 1)) != program.array_types.end()); in MakeLiteralItems() 671 ASSERT(program.array_types.find(Type("i64", 1)) != program.array_types.end()); in MakeLiteralItems() 677 ASSERT(program.array_types.find(Type("f32", 1)) != program.array_types.end()); in MakeLiteralItems() [all …]
|
| D | assembly-program.h | 39 std::unordered_set<Type> array_types; member
|
| D | assembly-parser.cpp | 137 program_.array_types.insert(*type); in ParseType() 394 if (program_.array_types.find(type) == program_.array_types.end()) { in ParseArrayElementType() 395 program_.array_types.emplace(type, 1); in ParseArrayElementType() 399 if (program_.array_types.find(type_with_slash) == program_.array_types.end()) { in ParseArrayElementType() 400 program_.array_types.emplace(type_with_slash, 1); in ParseArrayElementType()
|