Home | History | Annotate | Download | only in PowerPC

Lines Matching defs:Directive

797 /// directive.
837 unsigned Directive = Subtarget.getDarwinDirective();
838 if (Subtarget.hasMFOCRF() && Directive < PPC::DIR_970)
839 Directive = PPC::DIR_970;
840 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
841 Directive = PPC::DIR_7400;
842 if (Subtarget.isPPC64() && Directive < PPC::DIR_64)
843 Directive = PPC::DIR_64;
844 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
848 assert(Directive < sizeof(CPUDirectives) / sizeof(*CPUDirectives) &&
850 OutStreamer.EmitRawText("\t.machine " + Twine(CPUDirectives[Directive]));
1051 // Switch with ".non_lazy_symbol_pointer" directive.