Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_hclass.h295 using CallableBit = ObjectTypeBits::NextFlag; variable
296 using ConstructorBit = CallableBit::NextFlag; // 10
420 CallableBit::Set<uint32_t>(flag, GetBitFieldAddr()); in SetCallable()
1145 return CallableBit::Decode(bits); in IsCallable()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_builder-inl.h847 Int32And(Int32LSR(bitfield, Int32(JSHClass::CallableBit::START_BIT)), in IsCallableFromBitField()
848 Int32((1LU << JSHClass::CallableBit::SIZE) - 1)), in IsCallableFromBitField()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Doptimized_call.cpp536 __ Btl(JSHClass::CallableBit::START_BIT, rax); // IsCallable in JSCallCheck()
Dasm_interpreter_call.cpp154 __ Testq(static_cast<int64_t>(1ULL << JSHClass::CallableBit::START_BIT), bitFieldRegister); in AsmInterpEntryDispatch()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Doptimized_call.cpp550 __ Tbz(bitfield, JSHClass::CallableBit::START_BIT, nonCallable); in JSCallCheck()
Dasm_interpreter_call.cpp96 …LogicalImmediate::Create(static_cast<int64_t>(1ULL << JSHClass::CallableBit::START_BIT), RegXSize)… in AsmInterpEntryDispatch()