Home
last modified time | relevance | path

Searched refs:HaveThisBit (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.h49 using HaveThisBit = BitField<bool, 0, 1>; // offset 0 member
50 using HaveNewTargetBit = HaveThisBit::NextFlag; // offset 1
135 return HaveThisBit::Decode(callField); in HaveThisWithCallField()
Dmethod_literal.cpp79 - HaveThisBit::Decode(callType)); // exclude this in Initialize()
/arkcompiler/ets_runtime/ecmascript/
Dmethod.h57 return HaveThisBit::Decode(callField); in HaveThisWithCallField()
422 using HaveThisBit = BitField<bool, 0, 1>; // offset 0 variable
423 using HaveNewTargetBit = HaveThisBit::NextFlag; // offset 1
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub-inl.h444 …GateRef haveThis = Int64NotEqual(Int64And(Int64LSR(callField, Int64(MethodLiteral::HaveThisBit::ST… in GetStartIdxAndNumArgs()
445 Int64((1LLU << MethodLiteral::HaveThisBit::SIZE) - 1)), Int64(0)); in GetStartIdxAndNumArgs()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Dasm_interpreter_call.cpp626 __ Testq(MethodLiteral::HaveThisBit::Mask(), callFieldRegister); in PushCallThis()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Dasm_interpreter_call.cpp999 __ Tbz(callFieldRegister, MethodLiteral::HaveThisBit::START_BIT, &pushNewTarget); in PushCallThis()