Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:CPU

1467 ///  ::= .machine [ cpu | "push" | "pop" ]
1475 StringRef CPU = Parser.getTok().getIdentifier();
1483 if (CPU != "any" && CPU != "push" && CPU != "pop") {
1495 TStreamer.emitMachine(CPU);
1501 /// ::= .machine cpu
1509 StringRef CPU = Parser.getTok().getIdentifier();
1512 // FIXME: this is only the 'default' set of cpu variants.
1515 if (CPU != "ppc7400" && CPU != "ppc" && CPU != "ppc64") {
1516 Error(L, "unrecognized cpu type");
1520 if (isPPC64() && (CPU == "ppc7400" || CPU == "ppc")) {
1521 Error(L, "wrong cpu type specified for 64bit");
1524 if (!isPPC64() && CPU == "ppc64") {
1525 Error(L, "wrong cpu type specified for 32bit");