HomeSort by relevance Sort by last modified time
    Searched defs:Directive (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 150 unsigned Directive = ST->getDarwinDirective();
153 if (Directive == PPC::DIR_440)
158 if (Directive == PPC::DIR_A2)
162 if (Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500)
PPCInstrInfo.cpp 51 unsigned Directive = TM->getSubtarget<PPCSubtarget>().getDarwinDirective();
52 if (Directive == PPC::DIR_440 || Directive == PPC::DIR_A2 ||
53 Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500) {
66 unsigned Directive = TM.getSubtarget<PPCSubtarget>().getDarwinDirective();
69 if (Directive != PPC::DIR_440 && Directive != PPC::DIR_A2 &&
70 Directive != PPC::DIR_E500mc && Directive != PPC::DIR_E5500)
    [all...]
PPCAsmPrinter.cpp 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.")
    [all...]
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 117 /// VerifyDiagnosticConsumer expects at least one expected-* directive to
119 /// following directive can be used to indicate this:
128 /// Directive - Abstract class representing a parsed verify directive.
130 class Directive {
132 static Directive *create(bool RegexKind, SourceLocation DirectiveLoc,
144 virtual ~Directive() { }
146 // Returns true if directive text is valid.
154 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc,
163 Directive(const Directive &) LLVM_DELETED_FUNCTION
    [all...]
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 26 typedef VerifyDiagnosticConsumer::Directive Directive;
156 /// StandardDirective - Directive with string matching.
158 class StandardDirective : public Directive {
162 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max) { }
174 /// RegexDirective - Directive with regular-expression matching.
176 class RegexDirective : public Directive {
180 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max), Regex(Text) { }
277 /// diagnostics. If so, then put them in the appropriate directive list.
322 // If a directive has been found but we're not intereste
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 1 //===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===//
11 /// \brief Implements # directive processing for the Preprocessor.
31 // Utility Methods for Preprocessor Directive Handling.
95 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
104 /// this is due to a a \#define, 2 if \#undef directive, 0 if it is something
179 // There should be no tokens after the directive, but we allow them as an
186 // or if this is a macro-style preprocessing directive, because it is more
200 /// SkipExcludedConditionalBlock - We just read a \#if or related directive and
204 /// this \#if directive, so \#else/\#elif blocks should never be entered.
206 /// already seen one so a \#else directive is a duplicate. When this returns
    [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 576 // Note: a .zerofill directive does not switch sections.
579 // This is a mach-o specific directive.
598 // This is a mach-o specific directive and section.
677 const char *Directive = 0;
680 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
681 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
682 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
684 Directive = MAI.getData64bitsDirective(AddrSpace);
686 if (Directive) break;
700 assert(Directive && "Invalid size for machine code value!")
    [all...]

Completed in 282 milliseconds