Lines Matching refs:acc
133 #define SAVE_ACC() (GET_FRAME(sp)->acc = acc) // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
135 #define RESTORE_ACC() (acc = GET_FRAME(sp)->acc) // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
142 #define GET_ACC() (acc) // NOLINT(cppcoreguidelines-macro-usage)
143 #define SET_ACC(val) (acc = val) // NOLINT(cppcoreguidelines-macro-usage)
244 * reasons of set acc with hole:
245 * 1. acc will become illegal when new error
246 * 2. debugger logic will save acc, so illegal acc will set to frame
247 * 3. when debugger trigger gc, will mark an invalid acc and crash
248 * 4. acc will set to exception later, so it can set to hole template
283 funcTagged = acc.GetRawData(); \
284 JSTaggedValue funcValue = acc; \
545 #define UPDATE_HOTNESS_COUNTER_NON_ACC(offset) (UpdateHotnessCounter(thread, sp, acc, offset))
549 if (UpdateHotnessCounter(thread, sp, acc, offset)) { \