Home
last modified time | relevance | path

Searched refs:shorty (Results 1 - 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/tests/
H A Di2c_bridge_test.cpp68 uint16_t *MakeShorty(const std::initializer_list<TypeId> &shorty) in MakeShorty() argument
75 for (const TypeId &typeId : shorty) { in MakeShorty()
144 uint16_t *shorty = MakeShorty({TypeId::VOID}); in TEST_F() local
145 Method callee(nullptr, nullptr, panda_file::File::EntityId(), panda_file::File::EntityId(), ACC_STATIC, 0, shorty); in TEST_F()
173 uint16_t *shorty = MakeShorty({TypeId::VOID}); in TEST_F() local
174 Method callee(nullptr, nullptr, panda_file::File::EntityId(), panda_file::File::EntityId(), 0, 1, shorty); in TEST_F()
210 uint16_t *shorty = MakeShorty({TypeId::U8}); in TEST_F() local
211 Method callee(nullptr, nullptr, panda_file::File::EntityId(), panda_file::File::EntityId(), ACC_STATIC, 0, shorty); in TEST_F()
245 uint16_t *shorty = MakeShorty({TypeId::I8}); in TEST_F() local
246 Method callee(nullptr, nullptr, panda_file::File::EntityId(), panda_file::File::EntityId(), ACC_STATIC, 0, shorty); in TEST_F()
280 uint16_t *shorty = MakeShorty({TypeId::U1}); TEST_F() local
308 uint16_t *shorty = MakeShorty({TypeId::U16}); TEST_F() local
336 uint16_t *shorty = MakeShorty({TypeId::I16}); TEST_F() local
364 uint16_t *shorty = MakeShorty({TypeId::I32}); TEST_F() local
392 uint16_t *shorty = MakeShorty({TypeId::I64}); TEST_F() local
420 uint16_t *shorty = MakeShorty({TypeId::F64}); TEST_F() local
448 uint16_t *shorty = MakeShorty({TypeId::REFERENCE}); TEST_F() local
475 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32}); TEST_F() local
513 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32}); TEST_F() local
554 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::TAGGED}); TEST_F() local
592 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32, TypeId::TAGGED}); TEST_F() local
633 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32, TypeId::I32, TypeId::I32}); TEST_F() local
674 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32, TypeId::I32, TypeId::I64, TypeId::I32}); TEST_F() local
716 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I64}); TEST_F() local
748 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::F64}); TEST_F() local
780 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32}); TEST_F() local
822 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I64, TypeId::I64}); TEST_F() local
855 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::F64}); TEST_F() local
887 uint16_t *shorty = MakeShorty( TEST_F() local
923 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TEST_F() local
983 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TEST_F() local
1019 uint16_t *shorty = MakeShorty( TEST_F() local
1054 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TEST_F() local
1092 uint16_t *shorty = MakeShorty({TypeId::VOID, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TypeId::I32, TEST_F() local
[all...]
H A Dc2i_bridge_test.cpp163 Method *MakeCheckArgsMethod(const std::initializer_list<TypeId> &shorty, const std::initializer_list<int64_t> args, in MakeCheckArgsMethod() argument
181 auto shortyIt = shorty.begin(); in MakeCheckArgsMethod()
184 while (shortyIt != shorty.end()) { in MakeCheckArgsMethod()
H A Dinterpreter_test.cpp114 Class *klass, uint32_t accessFlags, uint32_t nargs, uint32_t nregs, uint16_t *shorty, in CreateMethod()
150 accessFlags | ACC_PUBLIC | ACC_STATIC, nargs, shorty); in CreateMethod()
113 CreateMethod( Class *klass, uint32_t accessFlags, uint32_t nargs, uint32_t nregs, uint16_t *shorty, const std::vector<uint8_t> &bytecode) CreateMethod() argument
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
H A Dets_method.cpp78 auto &shorty = proto.GetShorty(); in GetNumArgSlots() local
79 auto shortyEnd = shorty.end(); in GetNumArgSlots()
81 auto shortyIt = shorty.begin() + 1; in GetNumArgSlots()
149 auto &shorty = proto.GetShorty(); in GetMethodSignature() local
153 panda_file::Type returnType = shorty[0]; in GetMethodSignature()
158 auto shortyEnd = shorty.end(); in GetMethodSignature()
159 auto shortyIt = shorty.begin() + 1; in GetMethodSignature()
/arkcompiler/runtime_core/static_core/runtime/
H A Dmethod.cpp145 auto &shorty = GetShorty(); in GetSignature() local
149 panda_file::Type returnType = shorty[0]; in GetSignature()
153 auto shortyEnd = shorty.end(); in GetSignature()
154 auto shortyIt = shorty.begin() + 1; in GetSignature()
195 panda_file::File::EntityId codeId, uint32_t accessFlags, uint32_t numArgs, const uint16_t *shorty) in Method()
206 shorty_(shorty)
194 Method(Class *klass, const panda_file::File *pf, panda_file::File::EntityId fileId, panda_file::File::EntityId codeId, uint32_t accessFlags, uint32_t numArgs, const uint16_t *shorty) Method() argument
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dcframe_iterators.h124 CFrameStaticNativeMethodIterator(uint32_t vregIndex, uint32_t vregNum, const uint16_t *shorty, in CFrameStaticNativeMethodIterator() argument
129 shortyIt_(shorty), in CFrameStaticNativeMethodIterator()
298 CFrameStaticNativeMethodIterator(uint32_t vregIndex, uint32_t vregNum, const uint16_t *shorty, in CFrameStaticNativeMethodIterator() argument
303 shortyIt_(shorty), in CFrameStaticNativeMethodIterator()
H A Dmethod.h92 Proto(ShortyVector shorty, RefTypeVector refTypes) : shorty_(std::move(shorty)), refTypes_(std::move(refTypes)) in Proto() argument
176 const uint16_t *shorty);
/arkcompiler/runtime_core/static_core/static_linker/
H A Dlinker_context.cpp547 auto &shorty = p->GetShorty(); in BreakProto() local
550 ret.reserve(panda_file::SHORTY_ELEM_PER16 * shorty.size()); in BreakProto()
555 auto fetch = [idx = size_t(0), &shorty]() mutable { in BreakProto()
556 ASSERT(idx < shorty.size()); in BreakProto()
557 return shorty[idx++]; in BreakProto()

Completed in 16 milliseconds