Home
last modified time | relevance | path

Searched refs:stackArgs_ (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/arch/
Dhelpers.h293 : gprArgs_(gprArgs), fprArgs_(fprArgs), stackArgs_(stackArgs)
314 stackArgs_ = AlignPtr<T>(stackArgs_);
315 const T *v = reinterpret_cast<const T *>(stackArgs_);
316 stackArgs_ += READ_BYTES; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
331 stackArgs_ = AlignPtr<T>(stackArgs_);
332 const T *v = reinterpret_cast<const T *>(stackArgs_);
333 stackArgs_ += READ_BYTES; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
341 const uint8_t *stackArgs_;
354 : gprArgs_(gprArgs), fprArgs_(fprArgs), stackArgs_(stackArgs)
386 stackArgs_ = WriteToMem(v, stackArgs_) + WRITE_BYTES;
[all …]
/arkcompiler/ets_runtime/ecmascript/
Decma_runtime_call_info.h228 return stackArgs_; in GetArgs()
237 return reinterpret_cast<uintptr_t>(&stackArgs_[idx]); in GetArgAddress()
258 …__extension__ alignas(sizeof(JSTaggedType)) JSTaggedType stackArgs_[0]; // NOLINT(modernize-avoid… member
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h1048 return reinterpret_cast<uintptr_t>(&stackArgs_[idx]); in GetArgAddress()
1056 __extension__ alignas(sizeof(JSTaggedType)) JSTaggedType stackArgs_[0]; variable