Home | History | Annotate | Download | only in ppc64

Lines Matching refs:BF

165 static void _test_dcmpo(int BF, int x __attribute__((unused)))
167 if (BF < 0 || BF > 7) {
168 fprintf(stderr, "Invalid input to asm test: a=%d\n", BF);
171 switch (BF) {
201 static void _test_dcmpu(int BF, int x __attribute__((unused)))
203 if (BF < 0 || BF > 7) {
204 fprintf(stderr, "Invalid input to asm test: a=%d\n", BF);
207 switch (BF) {
320 static void _test_dcmpoq(int BF, int x __attribute__((unused)))
322 if (BF < 0 || BF > 7) {
323 fprintf(stderr, "Invalid input to asm test: a=%d\n", BF );
326 switch (BF) {
356 static void _test_dcmpuq(int BF, int x __attribute__((unused)))
358 if (BF < 0 || BF > 7) {
359 fprintf(stderr, "Invalid input to asm test: a=%d\n", BF);
362 switch (BF) {
1158 /* BF is a 3-bit instruction field that indicates the CR field in which the
1160 * 8 possible BF values since storing compare results to a given field is
1161 * a well-tested mechanism in VEX. But we will test two BF values, just as
1164 int k = 0, BF;
1174 BF = 0;
1203 (*func)(BF, 0);
1206 condreg = ((flags >> (4 * (7-BF)))) & 0xf;
1209 printf(" %s %016llx => %x (BF=%d)\n",
1210 test_def.op, u1, condreg, BF);
1212 printf(" %016llx %s %016llx %016llx ==> %x (BF=%d)\n",
1214 condreg, BF);
1219 BF = 5;