Searched refs:__pc (Results 1 – 4 of 4) sorted by relevance
/linux-4.1.27/arch/alpha/include/asm/ |
D | processor.h | 16 ({ void *__pc; __asm__ ("br %0,.+4" : "=r"(__pc)); __pc; })
|
/linux-4.1.27/arch/c6x/include/asm/ |
D | processor.h | 26 void *__pc; \ 27 asm("mvc .S2 pce1,%0\n" : "=b"(__pc)); \ 28 __pc; \
|
/linux-4.1.27/arch/mn10300/include/asm/ |
D | processor.h | 34 void *__pc; \ 35 asm("mov pc,%0" : "=a"(__pc)); \ 36 __pc; \
|
/linux-4.1.27/kernel/ |
D | profile.c | 281 static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) in do_profile_hits() argument 283 unsigned long primary, secondary, flags, pc = (unsigned long)__pc; in do_profile_hits() 393 static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) in do_profile_hits() argument 396 pc = ((unsigned long)__pc - (unsigned long)_stext) >> prof_shift; in do_profile_hits() 401 void profile_hits(int type, void *__pc, unsigned int nr_hits) in profile_hits() argument 405 do_profile_hits(type, __pc, nr_hits); in profile_hits()
|