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

  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 80 /// Directive - Abstract class representing a parsed verify directive.
82 class Directive {
84 static Directive* Create(bool RegexKind, const SourceLocation &Location,
94 virtual ~Directive() { }
96 // Returns true if directive text is valid.
104 Directive(const SourceLocation &Location, const std::string &Text,
109 Directive(const Directive&); // DO NOT IMPLEMENT
110 void operator=(const Directive&); // DO NOT IMPLEMEN
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 457 unsigned Directive = Subtarget.getDarwinDirective();
458 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
459 Directive = PPC::DIR_970;
460 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
461 Directive = PPC::DIR_7400;
462 if (Subtarget.isPPC64() && Directive < PPC::DIR_64)
463 Directive = PPC::DIR_64;
464 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
468 OutStreamer.EmitRawText("\t.machine " + Twine(CPUDirectives[Directive]));
    [all...]
PPCInstrInfo.cpp 52 unsigned Directive = TM->getSubtarget<PPCSubtarget>().getDarwinDirective();
53 if (Directive == PPC::DIR_440 || Directive == PPC::DIR_A2) {
66 unsigned Directive = TM.getSubtarget<PPCSubtarget>().getDarwinDirective();
69 if (Directive != PPC::DIR_440 && Directive != PPC::DIR_A2) {
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PTX/
PTXMCAsmStreamer.cpp 363 const char *Directive = 0;
366 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
367 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
368 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
370 Directive = MAI.getData64bitsDirective(AddrSpace);
372 if (Directive) break;
386 assert(Directive && "Invalid size for machine code value!");
387 OS << Directive << *Value;
  /external/clang/lib/Lex/
PPDirectives.cpp 1 //===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===//
10 // This file implements # directive processing for the Preprocessor.
29 // Utility Methods for Preprocessor Directive Handling.
91 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
98 /// this is due to a a #define, 2 if #undef directive, 0 if it is something
173 // There should be no tokens after the directive, but we allow them as an
180 // or if this is a macro-style preprocessing directive, because it is more
194 /// SkipExcludedConditionalBlock - We just read a #if or related directive and
198 /// this #if directive, so #else/#elif blocks should never be entered. If ElseOk
200 /// so a #else directive is a duplicate. When this returns, the caller can le
    [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 517 // Note: a .zerofill directive does not switch sections.
520 // This is a mach-o specific directive.
539 // This is a mach-o specific directive and section.
618 const char *Directive = 0;
621 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
622 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
623 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
625 Directive = MAI.getData64bitsDirective(AddrSpace);
627 if (Directive) break;
641 assert(Directive && "Invalid size for machine code value!")
    [all...]

Completed in 135 milliseconds