Home
last modified time | relevance | path

Searched defs:offset (Results 1 – 25 of 165) sorted by relevance

1234567

/arkcompiler/ets_runtime/ecmascript/compiler/
Dtyped_array_stub_builder.h39 GateRef offset = IntPtr(JSTypedArray::VIEWED_ARRAY_BUFFER_OFFSET); in GetViewedArrayBuffer() local
45 GateRef offset = IntPtr(JSTypedArray::ARRAY_LENGTH_OFFSET); in GetArrayLength() local
51 GateRef offset = IntPtr(JSTypedArray::BYTE_OFFSET_OFFSET); in GetByteOffset() local
57 GateRef offset = IntPtr(JSArrayBuffer::DATA_OFFSET); in GetArrayBufferData() local
63 GateRef offset = IntPtr(JSArrayBuffer::BYTE_LENGTH_OFFSET); in GetArrayBufferByteLength() local
69 GateRef offset = IntPtr(JSNativePointer::POINTER_OFFSET); in GetExternalPointer() local
Dprofiler_stub_builder.cpp65 GateRef offset = TruncPtrToInt32(PtrSub(pc, firstPC)); in ProfileOpType() local
100 GateRef offset = TruncPtrToInt32(PtrSub(pc, firstPC)); in ProfileOpType() local
118 GateRef offset = TruncPtrToInt32(PtrSub(pc, firstPC)); in ProfileDefineClass() local
161 GateRef offset = TruncPtrToInt32(PtrSub(pc, firstPC)); in ProfileCreateObject() local
182 GateRef offset = TruncPtrToInt32(PtrSub(pc, firstPC)); in ProfileObjLayout() local
212 GateRef offset = TruncPtrToInt32(PtrSub(pc, firstPC)); in ProfileCall() local
/arkcompiler/runtime_core/bytecode_optimizer/
Dir_interface.h36 virtual std::string GetMethodIdByOffset(uint32_t offset) const in GetMethodIdByOffset()
44 virtual std::string GetStringIdByOffset(uint32_t offset) const in GetStringIdByOffset()
52 virtual std::string GetLiteralArrayByOffset(uint32_t offset) const in GetLiteralArrayByOffset()
60 std::optional<std::string> GetLiteralArrayIdByOffset(uint32_t offset) const in GetLiteralArrayIdByOffset()
72 virtual std::string GetTypeIdByOffset(uint32_t offset) const in GetTypeIdByOffset()
80 virtual std::string GetFieldIdByOffset(uint32_t offset) const in GetFieldIdByOffset()
/arkcompiler/ets_runtime/ecmascript/mem/
Ddyn_chunk.h87 inline uint32_t GetU32(size_t offset) const in GetU32()
93 inline void PutU32(size_t offset, uint32_t data) const in PutU32()
99 inline uint32_t GetU16(size_t offset) const in GetU16()
105 inline void PutU16(size_t offset, uint16_t data) const in PutU16()
111 inline uint32_t GetU8(size_t offset) const in GetU8()
117 inline void PutU8(size_t offset, uint8_t data) const in PutU8()
Dbarriers.h29 static inline void SetPrimitive(void *obj, size_t offset, T value) in SetPrimitive()
37 static inline bool AtomicSetPrimitive(volatile void *obj, size_t offset, T oldValue, T value) in AtomicSetPrimitive()
50 static inline T GetValue(const void *obj, size_t offset) in GetValue()
Dbarriers-inl.h26 static ARK_INLINE void WriteBarrier(void *obj, size_t offset, JSTaggedType value) in WriteBarrier()
52 inline void Barriers::SetObject([[maybe_unused]] const JSThread *thread, void *obj, size_t offset, … in SetObject()
Dgc_bitset.h90 void ClearBit(uintptr_t offset) in ClearBit()
115 bool TestBit(uintptr_t offset) const in TestBit()
173 size_t IndexInWord(uintptr_t offset) const in IndexInWord()
178 size_t Index(uintptr_t offset) const in Index()
/arkcompiler/ets_runtime/ecmascript/jspandafile/bytecode_inst/
Dinstruction.h36 const uint8_t *GetPointer(int32_t offset) const in GetPointer()
63 T Read(size_t offset) const in Read()
69 void Write(uint32_t value, uint32_t offset, uint32_t width) in Write()
77 uint8_t ReadByte(size_t offset) const in ReadByte()
83 inline auto ReadHelper(size_t byteoffset, size_t bytecount, size_t offset, size_t width) const in ReadHelper()
122 inline auto Read64(size_t offset, size_t width) const in Read64()
/arkcompiler/runtime_core/libpandabase/utils/
Dbit_memory_region.h53 Iterator(const BitMemoryRegion &region, uint32_t offset) : region_(region), bit_(offset) in Iterator()
129 bool Read(size_t offset) in Read()
138 void Write(bool value, size_t offset) in Write()
152 Read(size_t offset, size_t length) const in Read()
183 bool ReadBit(size_t offset) const in ReadBit()
201 void Write(uint32_t value, size_t offset, size_t length) in Write()
226 BitMemoryRegion Subregion(size_t offset, size_t length) in Subregion()
233 BitMemoryRegion Subregion(size_t offset, size_t length) const in Subregion()
/arkcompiler/runtime_core/libpandafile/
Dbytecode_instruction.h95 const uint8_t *GetPointer(int32_t offset) const in GetPointer()
112 T Read(size_t offset) const in Read()
118 void Write(uint32_t value, uint32_t offset, uint32_t width) in Write()
126 uint8_t ReadByte(size_t offset) const in ReadByte()
146 const uint8_t *GetPointer(int32_t offset) const in GetPointer()
158 const uint8_t *GetPointer(int32_t offset, size_t size) const in GetPointer()
197 T Read(size_t offset) const in Read()
354 uint8_t ReadByte(size_t offset) const in ReadByte()
Dbytecode_instruction-inl.h26 inline auto BytecodeInst<Mode>::ReadHelper(size_t byteoffset, size_t bytecount, size_t offset, size… in ReadHelper()
67 inline auto BytecodeInst<Mode>::Read64(size_t offset, size_t width) const in Read64()
Dfield_data_accessor.cpp71 auto offset = static_cast<uint32_t>(helpers::Read<sizeof(uint32_t)>(&sp)); in GetValueInternal() local
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/x64/
Dassembler_x64.cpp304 void AssemblerX64::EmitJmp(int32_t offset) in EmitJmp()
318 void AssemblerX64::EmitJa(int32_t offset) in EmitJa()
334 void AssemblerX64::EmitJb(int32_t offset) in EmitJb()
350 void AssemblerX64::EmitJz(int32_t offset) in EmitJz()
366 void AssemblerX64::EmitJne(int32_t offset) in EmitJne()
382 void AssemblerX64::EmitJbe(int32_t offset) in EmitJbe()
398 void AssemblerX64::EmitJnz(int32_t offset) in EmitJnz()
414 void AssemblerX64::EmitJle(int32_t offset) in EmitJle()
430 void AssemblerX64::EmitJae(int32_t offset) in EmitJae()
446 void AssemblerX64::EmitJg(int32_t offset) in EmitJg()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/base/
Dbit_set.h61 bool TestBit(size_t offset) const in TestBit()
70 void SetBit(size_t offset) in SetBit()
79 void ClearBit(size_t offset) in ClearBit()
146 size_t IndexInWord(size_t offset) const in IndexInWord()
151 size_t Index(size_t offset) const in Index()
/arkcompiler/ets_runtime/ecmascript/
Dbyte_array.cpp22 …yteArray::Set(JSThread* thread, uint32_t idx, DataViewType type, JSTaggedType val, uint32_t offset) in Set()
30 JSTaggedValue ByteArray::Get(JSThread *thread, uint32_t idx, DataViewType type, uint32_t offset) in Get()
Dtagged_array-inl.h30 size_t offset = JSTaggedValue::TaggedTypeSize() * idx; in Get() local
56 size_t offset = JSTaggedValue::TaggedTypeSize() * idx; in Set() local
70 size_t offset = JSTaggedValue::TaggedTypeSize() * idx; in Set() local
146 size_t offset = JSTaggedValue::TaggedTypeSize() * i; in InitializeWithSpecialValue() local
177 size_t offset = taggedTypeSize * index; in RemoveElementByIndex() local
201 size_t offset = taggedTypeSize * effectiveLength; in InsertElementByIndex() local
Decma_macros.h49 #define GET_VALUE(addr, offset) Barriers::GetValue<JSTaggedType>((addr), (offset)) argument
52 #define SET_VALUE_WITH_BARRIER(thread, addr, offset, value) \ argument
60 #define SET_VALUE_PRIMITIVE(addr, offset, value) \ argument
64 #define ACCESSORS(name, offset, endOffset) … argument
99 #define DEFINE_ALIGN_SIZE(offset) \ argument
103 #define ACCESSORS_FIXED_SIZE_FIELD(name, type, sizeType, offset, endOffset) \ argument
116 #define ACCESSORS_NATIVE_FIELD(name, type, offset, endOffset) \ argument
120 #define ACCESSORS_PRIMITIVE_FIELD(name, type, offset, endOffset) \ argument
124 #define ACCESSORS_BIT_FIELD(name, offset, endOffset) \ argument
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/
Dassembler.h206 void PutI8(size_t offset, int8_t data) in PutI8()
211 void PutI32(size_t offset, int32_t data) in PutI32()
216 uint32_t GetU32(size_t offset) const in GetU32()
221 int8_t GetI8(size_t offset) const in GetI8()
226 uint8_t GetU8(size_t offset) const in GetU8()
/arkcompiler/ets_runtime/ecmascript/stackmap/
Dllvm_stackmap_type.cpp19 DwarfRegType reg, OffsetType offset, Triple triple) in EncodeRegAndOffset()
37 … LLVMStackMapType::DecodeRegAndOffset(SLeb128Type regOffset, DwarfRegType &reg, OffsetType &offset) in DecodeRegAndOffset()
/arkcompiler/ets_frontend/es2panda/compiler/core/
DinlineCache.cpp29 uint32_t offset = size_ + slotSize; in Offset() local
/arkcompiler/runtime_core/libpandabase/tests/
Dbit_memory_region_test.cpp23 static void CompareData(uint8_t *data, size_t offset, size_t length, uint32_t value, uint8_t fill_v… in CompareData()
39 for (size_t offset = 0; offset < MAX_BITS_COUNT; offset++) { in TEST() local
64 for (size_t offset = 0; offset < MAX_BITS_COUNT; offset++) { in TEST() local
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dspill_fills_resolver.cpp91 …atic void MarkRegWrite(Location location, ArenaVector<bool> *reg_write, bool paired, size_t offset) in MarkRegWrite()
101 static bool IsRegWrite(Location location, ArenaVector<bool> *reg_write, bool paired, size_t offset) in IsRegWrite()
108 static void MarkStackWrite(Location location, ArenaVector<bool> *stack_write, size_t offset) in MarkStackWrite()
115 static bool IsStackWrite(Location location, ArenaVector<bool> *stack_write, size_t offset) in IsStackWrite()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Ddebug_info_extractor.h35 uint32_t offset; member
45 uint32_t offset; member
165 … bool MatchLineWithOffset(const Callback &cb, panda_file::File::EntityId methodId, uint32_t offset) in MatchLineWithOffset()
177 …ool MatchColumnWithOffset(const Callback &cb, panda_file::File::EntityId methodId, uint32_t offset) in MatchColumnWithOffset()
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Dbinary_buffer_parser.cpp32 void BinaryBufferParser::ParseBuffer(void *dst, uint32_t count, uint32_t offset) in ParseBuffer()
/arkcompiler/runtime_core/libpandabase/os/
Dstacktrace.cpp44 uintptr_t offset; // NOLINT(misc-non-private-member-variables-in-classes) member
131 uintptr_t offset = 0; in PrintFrame() local
163 void PrintFrame(const std::string &function, uintptr_t offset, std::ostream &out) in PrintFrame()
171 bool ReadSymbol(uintptr_t pc, std::string *function, uintptr_t *offset) in ReadSymbol()
245 std::string offset = tokenizer.Next(); in ScanVma() local

1234567