Home
last modified time | relevance | path

Searched refs:endOffset (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Ddebug_info_extractor.cpp61 if (iter->endOffset == 0) { in ProcessEnd()
62 iter->endOffset = state_->GetAddress(); in ProcessEnd()
106 uint32_t endOffset = 0; in HandleStartLocal() local
108 lvt_.push_back({name, regNumber, startOffset, endOffset}); in HandleStartLocal()
116 uint32_t endOffset = 0; in HandleStartLocalExtended() local
118 lvt_.push_back({name, regNumber, startOffset, endOffset}); in HandleStartLocalExtended()
126 if (iter->regNumber == regNumber && iter->endOffset == 0) { in HandleEndLocal()
127 iter->endOffset = state_->GetAddress(); in HandleEndLocal()
Ddebug_info_extractor.h72 uint32_t endOffset; member
/arkcompiler/ets_runtime/ecmascript/
Decma_macros.h64 #define ACCESSORS(name, offset, endOffset) … argument
65 …static constexpr size_t endOffset = (offset) + JSTaggedValue::TaggedTypeSize(); …
103 #define ACCESSORS_FIXED_SIZE_FIELD(name, type, sizeType, offset, endOffset) \ argument
105 static constexpr size_t endOffset = (offset) + sizeof(sizeType); \
116 #define ACCESSORS_NATIVE_FIELD(name, type, offset, endOffset) \ argument
117 ACCESSORS_FIXED_SIZE_FIELD(name, type *, type *, offset, endOffset)
120 #define ACCESSORS_PRIMITIVE_FIELD(name, type, offset, endOffset) \ argument
121 ACCESSORS_FIXED_SIZE_FIELD(name, type, type, offset, endOffset)
124 #define ACCESSORS_BIT_FIELD(name, offset, endOffset) \ argument
125 ACCESSORS_FIXED_SIZE_FIELD(name, uint32_t, uint32_t, offset, endOffset) \
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dntype_mcr_lowering.cpp166 size_t endOffset = TaggedArray::DATA_OFFSET + length * JSTaggedValue::TaggedTypeSize(); in NewTaggedArray() local
168 …for (size_t offset = TaggedArray::DATA_OFFSET; offset < endOffset; offset += JSTaggedValue::Tagged… in NewTaggedArray()
Dnew_object_stub_builder.cpp339 auto endOffset = JSThread::GlueData::GetNewSpaceAllocationEndAddressOffset(env->Is32Bit()); in AllocateInYoung() local
341 auto endAddress = Load(VariableType::NATIVE_POINTER(), glue_, IntPtr(endOffset)); in AllocateInYoung()
398 auto endOffset = Int32Add(offset, Int32(TaggedArray::DATA_OFFSET)); in InitializeTaggedArrayWithSpeicalValue() local
399 InitializeWithSpeicalValue(exit, array, value, dataOffset, endOffset); in InitializeTaggedArrayWithSpeicalValue()
Dlcr_lowering.cpp582 size_t endOffset = JSThread::GlueData::GetNewSpaceAllocationEndAddressOffset(false); in HeapAllocateInYoung() local
584 …eRef endAddress = builder_.Load(VariableType::NATIVE_POINTER(), glue_, builder_.IntPtr(endOffset)); in HeapAllocateInYoung()
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_type.h24 #define ACCESSORS_ATTACHED_TYPEREF(name, offset, endOffset) \ argument
25 ACCESSORS_PRIMITIVE_FIELD(name##RawData, uint32_t, offset, endOffset) \
/arkcompiler/toolchain/tooling/test/
Ddebugger_types_test.cpp2285 "startOffset":0,"endOffset":13,"count":13}})"; in HWTEST_F_L0()
2302 "startOffset":0,"endOffset":13,"count":13}})"; in HWTEST_F_L0()
2347 …"functionName":"Create0","ranges":[{"startOffset":0,"endOffset":13,"count":13}],"isBlockCoverage":… in HWTEST_F_L0()
2368 …"functionName":"Create0","ranges":[{"startOffset":0,"endOffset":13,"count":13}],"isBlockCoverage":… in HWTEST_F_L0()
2417 "ranges":[{"startOffset":0, "endOffset":13, "count":13}], in HWTEST_F_L0()
2440 "ranges": [{"startOffset":0, "endOffset":13, "count":13}], in HWTEST_F_L0()
Ddebugger_events_test.cpp395 "ranges":[{"startOffset":0, "endOffset":13, "count":13}], in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/base/
Dpt_types.h2322 Coverage &SetEndOffset(int32_t endOffset) in SetEndOffset() argument
2324 endOffset_ = endOffset; in SetEndOffset()
Dpt_types.cpp2729 int32_t endOffset; in Create() local
2730 ret = params.GetInt("endOffset", &endOffset); in Create()
2732 coverage->endOffset_ = endOffset; in Create()
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp1276 return bcOffset >= localVariableInfo.startOffset && bcOffset < localVariableInfo.endOffset; in IsWithinVariableScope()