HomeSort by relevance Sort by last modified time
    Searched refs:Directive (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 66 /// the diagnostic will appear, rather than placing the expected-* directive in
115 /// including regexes wrapped in double curly braces in the directive, such as:
133 /// VerifyDiagnosticConsumer expects at least one expected-* directive to
135 /// following directive can be used to indicate this:
144 /// Directive - Abstract class representing a parsed verify directive.
146 class Directive {
148 static std::unique_ptr<Directive> create(bool RegexKind,
164 virtual ~Directive() { }
166 // Returns true if directive text is valid
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 35 StringRef Directive,
38 return (Obj->*Handler)(Directive, DirectiveLoc);
MCAsmParser.h 84 virtual void addDirectiveHandler(StringRef Directive,
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 162 unsigned Directive =
165 if (Directive == PPC::DIR_PWR6 || Directive == PPC::DIR_PWR7 ||
166 Directive == PPC::DIR_PWR8 )
222 unsigned Directive =
226 if (Directive == PPC::DIR_PWR6 || Directive == PPC::DIR_PWR7 ||
227 Directive == PPC::DIR_PWR8 || CurSlots == 6) {
PPCTargetTransformInfo.cpp 219 unsigned Directive = ST->getDarwinDirective();
222 if (Directive == PPC::DIR_440)
227 if (Directive == PPC::DIR_A2)
231 if (Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500)
236 if (Directive == PPC::DIR_PWR7 ||
237 Directive == PPC::DIR_PWR8)
PPCSubtarget.cpp 157 static bool needsAggressiveScheduling(unsigned Directive) {
158 switch (Directive) {
PPCAsmPrinter.cpp     [all...]
PPCInstrInfo.cpp 71 unsigned Directive =
73 if (Directive == PPC::DIR_440 || Directive == PPC::DIR_A2 ||
74 Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500) {
88 unsigned Directive =
91 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8)
95 if (Directive != PPC::DIR_440 && Directive != PPC::DIR_A2 &
    [all...]
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 26 typedef VerifyDiagnosticConsumer::Directive Directive;
159 /// StandardDirective - Directive with string matching.
161 class StandardDirective : public Directive {
166 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max) { }
178 /// RegexDirective - Directive with regular-expression matching.
180 class RegexDirective : public Directive {
185 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max),
307 /// diagnostics. If so, then put them in the appropriate directive list.
356 // If a directive has been found but we're not intereste
    [all...]
  /external/llvm/test/MC/COFF/
comm-align.s 56 # CHECK: Directive(s): -aligncomm:"_s_2",1 -aligncomm:"_s_4",2 -aligncomm:"_s_8",3 -aligncomm:"_small_but_overaligned",3
  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 203 SmallString<128> Directive;
204 raw_svector_ostream OS(Directive);
213 EmitBytes(Directive);
MCAsmStreamer.cpp 550 // Note: a .zerofill directive does not switch sections.
553 // This is a mach-o specific directive.
574 // This is a mach-o specific directive and section.
654 const char *Directive = nullptr;
657 case 1: Directive = MAI->getData8bitsDirective(); break;
658 case 2: Directive = MAI->getData16bitsDirective(); break;
659 case 4: Directive = MAI->getData32bitsDirective(); break;
660 case 8: Directive = MAI->getData64bitsDirective(); break;
663 if (!Directive) {
699 assert(Directive && "Invalid size for machine code value!")
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 27 /// \brief Implementation of directive handling which is shared across all
31 void addDirectiveHandler(StringRef Directive) {
34 getParser().addDirectiveHandler(Directive, Handler);
189 // Named Section Directive
359 // Darwin silently ignores the .ident directive.
378 return TokError("unexpected token in section switching directive");
392 // section, then just issuing the section switch directive will not realign
407 return TokError("expected identifier in directive");
413 return TokError("unexpected token in '.desc' directive");
421 return TokError("unexpected token in '.desc' directive");
    [all...]
COFFAsmParser.cpp 29 void addDirectiveHandler(StringRef Directive) {
32 getParser().addDirectiveHandler(Directive, Handler);
141 bool ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc);
263 bool COFFAsmParser::ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc) {
264 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
267 assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!");
273 return TokError("expected identifier in directive");
283 return TokError("unexpected token in directive");
304 return TokError("unexpected token in section switching directive");
340 return TokError("expected identifier in directive");
    [all...]
ELFAsmParser.cpp 27 void addDirectiveHandler(StringRef Directive) {
31 getParser().addDirectiveHandler(Directive, Handler);
161 bool ELFAsmParser::ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc) {
162 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
169 assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!");
175 return TokError("expected identifier in directive");
185 return TokError("unexpected token in directive");
211 return TokError("expected identifier in directive");
215 return TokError("unexpected token in directive");
223 return TokError("unexpected token in directive");
    [all...]
AsmParser.cpp 133 /// \brief maps directive names to handler methods in parser
182 void addDirectiveHandler(StringRef Directive,
184 ExtensionDirectiveMap[Directive] = Handler;
298 /// \brief Process the specified file for the .incbin directive.
328 // Generic (target and platform independent) directive parsing.
358 /// \brief Maps directive name --> DirectiveKind enum, for
404 bool parseDirectiveExitMacro(StringRef Directive);
405 bool parseDirectiveEndMacro(StringRef Directive);
407 bool parseDirectiveMacrosOnOff(StringRef Directive);
422 /// \brief Parse a directive like ".globl" whic
    [all...]
  /external/clang/lib/Parse/
ParseOpenMP.cpp 61 /// threadprivate-directive:
65 assert(Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP directive!");
122 /// threadprivate-directive:
126 /// executable-directive:
136 assert(Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP directive!");
146 // Name of critical directive.
148 StmtResult Directive = StmtError();
165 Directive = Actions.ActOnDeclStmt(Res, Loc, Tok.getLocation());
203 // Parse directive name of the 'critical' directive if any
    [all...]
  /external/llvm/lib/Target/X86/
X86AsmPrinter.cpp 578 SmallString<128> Directive;
579 raw_svector_ostream OS(Directive);
602 OutStreamer.EmitBytes(Directive);
  /external/clang/lib/Lex/
PPDirectives.cpp 1 //===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===//
11 /// \brief Implements # directive processing for the Preprocessor.
33 // Utility Methods for Preprocessor Directive Handling.
99 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
266 // There should be no tokens after the directive, but we allow them as an
273 // or if this is a macro-style preprocessing directive, because it is more
287 /// SkipExcludedConditionalBlock - We just read a \#if or related directive and
291 /// this \#if directive, so \#else/\#elif blocks should never be entered.
293 /// already seen one so a \#else directive is a duplicate. When this returns,
339 // If this token is not a preprocessor directive, just skip it
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 639 // DATA, __common section with the .zerofill directive.
643 // Put zero initialized globals with local linkage in __DATA,__bss directive
644 // with the .zerofill directive (aka .lcomm).
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp 37 /// \brief Default data sharing attributes, which can be applied to directive.
91 OpenMPDirectiveKind Directive;
100 Directive(DKind), DirectiveName(std::move(Name)), CurScope(CurScope),
104 Directive(OMPD_unknown), DirectiveName(), CurScope(nullptr),
149 /// match specified \a CPred predicate in any directive which matches \a DPred
155 /// match specified \a CPred predicate in any innermost directive which
161 /// \brief Finds a directive which matches specified \a DPred predicate.
165 /// \brief Returns currently analyzed directive.
167 return Stack.back().Directive;
169 /// \brief Returns parent directive
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 178 /// \brief True if we are currently preprocessing a #if or #elif directive
389 /// For each IdentifierInfo used in a \#pragma push_macro directive,
533 /// \brief True if we are currently preprocessing a #if or #elif directive
632 /// \brief Add a directive to the macro directive history for this identifier.
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 112 // directive.
248 StringRef Directive);
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/
org.apache.felix.bundlerepository-1.6.6.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/pmd/pmd/5.1.1/
pmd-5.1.1.jar 

Completed in 1785 milliseconds

1 2