Home
last modified time | relevance | path

Searched refs:headerSize (Results 1 - 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
H A Dnative_area_allocator.cpp26 size_t headerSize = sizeof(Area); in AllocateArea() local
27 if (capacity < headerSize) { // LOCV_EXCL_BR_LINE in AllocateArea()
51 uintptr_t begin = reinterpret_cast<uintptr_t>(mem) + headerSize; in AllocateArea()
52 capacity -= headerSize; in AllocateArea()
H A Dnative_area_allocator.h193 size_t headerSize = sizeof(Area); in AllocateSpace() local
194 if (capacity < headerSize) { in AllocateSpace()
205 uintptr_t begin = reinterpret_cast<uintptr_t>(mem) + headerSize; in AllocateSpace()
206 capacity -= headerSize; in AllocateSpace()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/
H A Dassembler.h282 static void GetFrameCompletionPos(uint64_t &headerSize, uint64_t &tailSize, uint64_t &entryDuration) in GetFrameCompletionPos() argument
285 headerSize = FrameCompletionPos::X64CppToAsmInterp; in GetFrameCompletionPos()
289 headerSize = FrameCompletionPos::ARM64CppToAsmInterp; in GetFrameCompletionPos()
293 headerSize = 0; in GetFrameCompletionPos()
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/
H A Dcpu_profiler.cpp469 bool CpuProfiler::InHeaderOrTail(uint64_t pc, uint64_t entryBegin, uint64_t entryDuration, uint64_t headerSize, in InHeaderOrTail() argument
473 if (pc >= entryBegin && pc <= (entryBegin + headerSize)) { in InHeaderOrTail()
484 uint64_t headerSize = 0; in IsEntryFrameHeaderOrTail() local
487 Assembler::GetFrameCompletionPos(headerSize, tailSize, entryDuration); in IsEntryFrameHeaderOrTail()
489 bool inAsmInterpreterEntry = InHeaderOrTail(pc, entryBegin, entryDuration, headerSize, tailSize); in IsEntryFrameHeaderOrTail()
491 bool inGeneratorReEnterAsmInterp = InHeaderOrTail(pc, entryBegin, entryDuration, headerSize, tailSize); in IsEntryFrameHeaderOrTail()
H A Dcpu_profiler.h98 bool InHeaderOrTail(uint64_t pc, uint64_t entryBegin, uint64_t entryDuration, uint64_t headerSize,
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
H A Dsnapshot.cpp268 uint8_t headerSize = JSTaggedValue::TaggedTypeSize(); in WriteToFile() local
270 writer.write(reinterpret_cast<char *>(&indexHeader), headerSize); in WriteToFile() local
271 writer.write(reinterpret_cast<char *>(str) + headerSize, strSize - headerSize); in WriteToFile()

Completed in 4 milliseconds