Lines Matching full:do
75 #define PPC_LBZ_OFFS(r, base, i) do { if ((i) < 32768) PPC_LBZ(r, base, i); \
79 #define PPC_LD_OFFS(r, base, i) do { if ((i) < 32768) PPC_LD(r, base, i); \
83 #define PPC_LWZ_OFFS(r, base, i) do { if ((i) < 32768) PPC_LWZ(r, base, i); \
87 #define PPC_LHZ_OFFS(r, base, i) do { if ((i) < 32768) PPC_LHZ(r, base, i); \
92 #define PPC_LL_OFFS(r, base, i) do { PPC_LD_OFFS(r, base, i); } while(0)
94 #define PPC_LL_OFFS(r, base, i) do { PPC_LWZ_OFFS(r, base, i); } while(0)
100 do { BUILD_BUG_ON(FIELD_SIZEOF(struct paca_struct, paca_index) != 2); \
105 do { BUILD_BUG_ON(FIELD_SIZEOF(struct task_struct, cpu) != 4); \
110 #define PPC_BPF_LOAD_CPU(r) do { PPC_LI(r, 0); } while(0)
114 do { PPC_LI32(r, i); PPC_LHBRX(r, r, base); } while(0)
121 #define PPC_BPF_LL(r, base, i) do { PPC_LWZ(r, base, i); } while(0)
122 #define PPC_BPF_STL(r, base, i) do { PPC_STW(r, base, i); } while(0)
123 #define PPC_BPF_STLU(r, base, i) do { PPC_STWU(r, base, i); } while(0)