Home
last modified time | relevance | path

Searched defs:MethodLiteral (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.h31 struct PUBLIC_API MethodLiteral : public base::AlignedStruct<sizeof(uint64_t), struct
40 MethodLiteral(const JSPandaFile *jsPandaFile, EntityId methodId); argument
45 MethodLiteral &operator=(const MethodLiteral &) = delete; argument
46 MethodLiteral &operator=(MethodLiteral &&) = delete; argument
48 static constexpr size_t VREGS_ARGS_NUM_BITS = 28; // 28: maximum 268,435,455
49 using HaveThisBit = BitField<bool, 0, 1>; // offset 0
50 using HaveNewTargetBit = HaveThisBit::NextFlag; // offset 1
51 using HaveExtraBit = HaveNewTargetBit::NextFlag; // offset 2
52 using HaveFuncBit = HaveExtraBit::NextFlag; // offset 3
53 using NumVregsBits = HaveFuncBit::NextField<uint32_t, VREGS_ARGS_NUM_BITS>; // offset 4-31
[all …]
Dmethod_literal.cpp25 MethodLiteral::MethodLiteral(const JSPandaFile *jsPandaFile, EntityId methodId) in MethodLiteral() function in panda::ecmascript::MethodLiteral