Lines Matching full:funcid
52 bool patchFunctionEntry(const bool Enable, uint32_t FuncId, in patchFunctionEntry() argument
57 // lis 0, FuncId[16..32] in patchFunctionEntry()
58 // li 0, FuncId[0..15] in patchFunctionEntry()
60 (0x3c000000ull + (FuncId >> 16)) + in patchFunctionEntry()
61 ((0x60000000ull + (FuncId & 0xffff)) << 32); in patchFunctionEntry()
71 bool patchFunctionExit(const bool Enable, uint32_t FuncId, in patchFunctionExit() argument
75 // lis 0, FuncId[16..32] in patchFunctionExit()
76 // li 0, FuncId[0..15] in patchFunctionExit()
78 (0x3c000000ull + (FuncId >> 16)) + in patchFunctionExit()
79 ((0x60000000ull + (FuncId & 0xffff)) << 32); in patchFunctionExit()
89 bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId, in patchFunctionTailExit() argument
91 return patchFunctionExit(Enable, FuncId, Sled); in patchFunctionTailExit()
97 bool patchCustomEvent(const bool Enable, const uint32_t FuncId, in patchCustomEvent() argument
103 bool patchTypedEvent(const bool Enable, const uint32_t FuncId, in patchTypedEvent() argument