Home
last modified time | relevance | path

Searched refs:Directive (Results 1 – 25 of 89) sorted by relevance

1234

/netbsd-src/sys/external/bsd/acpica/dist/compiler/
H A Dprscan.c79 char *Directive);
83 int Directive,
457 int Directive; in PrDoDirective() local
466 Directive = PrMatchDirective (DirectiveToken); in PrDoDirective()
467 if (Directive == ASL_DIRECTIVE_NOT_FOUND) in PrDoDirective()
486 AslGbl_DirectiveInfo[Directive].Name); in PrDoDirective()
495 switch (Directive) in PrDoDirective()
503 PrDbgPrint ("Ignoring", AslGbl_DirectiveInfo[Directive].Name); in PrDoDirective()
518 switch (Directive) in PrDoDirective()
529 Directive = PR_DIRECTIVE_IF; in PrDoDirective()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td13 include "llvm/Frontend/Directive/DirectiveBase.td"
343 def OMP_ThreadPrivate : Directive<"threadprivate"> {}
344 def OMP_Parallel : Directive<"parallel"> {
360 def OMP_Task : Directive<"task"> {
380 def OMP_Simd : Directive<"simd"> {
398 def OMP_Tile : Directive<"tile"> {
403 def OMP_For : Directive<"for"> {
418 def OMP_Do : Directive<"do"> {
433 def OMP_Sections : Directive<"sections"> {
443 def OMP_Section : Directive<"section"> {}
[all …]
H A DOMPIRBuilder.h72 omp::Directive DK;
174 InsertPointTy createBarrier(const LocationDescription &Loc, omp::Directive DK,
186 omp::Directive CanceledDirective);
535 omp::Directive CanceledDirective);
547 omp::Directive DK, bool ForceSimpleCall,
562 bool isLastFinalizationInfoCancellable(omp::Directive DK) { in isLastFinalizationInfoCancellable()
817 InsertPointTy emitCommonDirectiveEntry(omp::Directive OMPD, Value *EntryCall,
831 InsertPointTy emitCommonDirectiveExit(omp::Directive OMPD,
854 EmitOMPInlinedRegion(omp::Directive OMPD, Instruction *EntryCall,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenACC/
H A DACC.td13 include "llvm/Frontend/Directive/DirectiveBase.td"
261 def ACC_Atomic : Directive<"atomic"> {}
264 def ACC_Data : Directive<"data"> {
283 def ACC_Declare : Directive<"declare"> {
297 def ACC_Kernels : Directive<"kernels"> {
322 def ACC_Parallel : Directive<"parallel"> {
350 def ACC_Serial : Directive<"serial"> {
377 def ACC_Loop : Directive<"loop"> {
398 def ACC_Cache : Directive<"cache"> {}
401 def ACC_Init : Directive<"init"> {
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h191 class Directive {
193 static std::unique_ptr<Directive>
209 Directive(const Directive &) = delete;
210 Directive &operator=(const Directive &) = delete;
211 virtual ~Directive() = default;
221 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc, in Directive() function
233 using DirectiveList = std::vector<std::unique_ptr<Directive>>;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DCOFFMasmParser.cpp37 void addDirectiveHandler(StringRef Directive) { in addDirectiveHandler() argument
40 getParser().addDirectiveHandler(Directive, Handler); in addDirectiveHandler()
254 bool COFFMasmParser::ParseDirectiveSegment(StringRef Directive, SMLoc Loc) { in ParseDirectiveSegment() argument
283 bool COFFMasmParser::ParseDirectiveSegmentEnd(StringRef Directive, SMLoc Loc) { in ParseDirectiveSegmentEnd() argument
296 bool COFFMasmParser::ParseDirectiveIncludelib(StringRef Directive, SMLoc Loc) { in ParseDirectiveIncludelib() argument
318 bool COFFMasmParser::ParseDirectiveProc(StringRef Directive, SMLoc Loc) { in ParseDirectiveProc() argument
354 bool COFFMasmParser::ParseDirectiveEndProc(StringRef Directive, SMLoc Loc) { in ParseDirectiveEndProc() argument
374 bool COFFMasmParser::ParseDirectiveAlias(StringRef Directive, SMLoc Loc) { in ParseDirectiveAlias() argument
380 return addErrorSuffix(" in " + Directive + " directive"); in ParseDirectiveAlias()
393 bool COFFMasmParser::ParseSEHDirectiveAllocStack(StringRef Directive, in ParseSEHDirectiveAllocStack() argument
[all …]
H A DDarwinAsmParser.cpp47 void addDirectiveHandler(StringRef Directive) { in addDirectiveHandler() argument
50 getParser().addDirectiveHandler(Directive, Handler); in addDirectiveHandler()
447 bool parseWatchOSVersionMin(StringRef Directive, SMLoc Loc) { in parseWatchOSVersionMin() argument
448 return parseVersionMin(Directive, Loc, MCVM_WatchOSVersionMin); in parseWatchOSVersionMin()
450 bool parseTvOSVersionMin(StringRef Directive, SMLoc Loc) { in parseTvOSVersionMin() argument
451 return parseVersionMin(Directive, Loc, MCVM_TvOSVersionMin); in parseTvOSVersionMin()
453 bool parseIOSVersionMin(StringRef Directive, SMLoc Loc) { in parseIOSVersionMin() argument
454 return parseVersionMin(Directive, Loc, MCVM_IOSVersionMin); in parseIOSVersionMin()
456 bool parseMacOSXVersionMin(StringRef Directive, SMLoc Loc) { in parseMacOSXVersionMin() argument
457 return parseVersionMin(Directive, Loc, MCVM_OSXVersionMin); in parseMacOSXVersionMin()
[all …]
H A DWasmAsmParser.cpp39 void addDirectiveHandler(StringRef Directive) { in addDirectiveHandler() argument
43 getParser().addDirectiveHandler(Directive, Handler); in addDirectiveHandler()
269 bool ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc) { in ParseDirectiveSymbolAttribute() argument
270 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive) in ParseDirectiveSymbolAttribute()
H A DCOFFAsmParser.cpp36 void addDirectiveHandler(StringRef Directive) { in addDirectiveHandler() argument
39 getParser().addDirectiveHandler(Directive, Handler); in addDirectiveHandler()
145 bool ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc);
277 bool COFFAsmParser::ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc) { in ParseDirectiveSymbolAttribute() argument
278 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive) in ParseDirectiveSymbolAttribute()
H A DMasmParser.cpp456 void addDirectiveHandler(StringRef Directive, in addDirectiveHandler() argument
458 ExtensionDirectiveMap[Directive] = Handler; in addDirectiveHandler()
459 if (DirectiveKindMap.find(Directive) == DirectiveKindMap.end()) { in addDirectiveHandler()
460 DirectiveKindMap[Directive] = DK_HANDLER_DIRECTIVE; in addDirectiveHandler()
464 void addAliasForDirective(StringRef Directive, StringRef Alias) override { in addAliasForDirective() argument
465 DirectiveKindMap[Directive] = DirectiveKindMap[Alias]; in addAliasForDirective()
861 StringRef Directive, SMLoc DirLoc);
863 StringRef Directive, SMLoc DirLoc,
918 bool parseDirectiveExitMacro(SMLoc DirectiveLoc, StringRef Directive,
920 bool parseDirectiveEndMacro(StringRef Directive);
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp160 unsigned Directive = in PreEmitNoops() local
164 if (Directive == PPC::DIR_PWR6 || Directive == PPC::DIR_PWR7 || in PreEmitNoops()
165 Directive == PPC::DIR_PWR8 || Directive == PPC::DIR_PWR9) in PreEmitNoops()
220 unsigned Directive = in EmitNoop() local
225 if (Directive == PPC::DIR_PWR6 || Directive == PPC::DIR_PWR7 || in EmitNoop()
226 Directive == PPC::DIR_PWR8 || Directive == PPC::DIR_PWR9 || in EmitNoop()
H A DPPCTargetTransformInfo.cpp895 unsigned Directive = ST->getCPUDirective(); in getCacheLineSize() local
897 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8 || in getCacheLineSize()
898 Directive == PPC::DIR_PWR9 || Directive == PPC::DIR_PWR10 || in getCacheLineSize()
899 Directive == PPC::DIR_PWR_FUTURE) in getCacheLineSize()
911 unsigned Directive = ST->getCPUDirective(); in getMaxInterleaveFactor() local
914 if (Directive == PPC::DIR_440) in getMaxInterleaveFactor()
919 if (Directive == PPC::DIR_A2) in getMaxInterleaveFactor()
923 if (Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500) in getMaxInterleaveFactor()
931 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8 || in getMaxInterleaveFactor()
932 Directive == PPC::DIR_PWR9 || Directive == PPC::DIR_PWR10 || in getMaxInterleaveFactor()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXTargetStreamer.cpp38 void NVPTXTargetStreamer::emitDwarfFileDirective(StringRef Directive) { in emitDwarfFileDirective() argument
39 DwarfFiles.emplace_back(Directive); in emitDwarfFileDirective()
112 const char *Directive = MAI->getData8bitsDirective(); in emitRawBytes()
122 const char *Label = Directive; in emitRawBytes()
129 if (Label == Directive) in emitRawBytes()
H A DNVPTXTargetStreamer.h44 void emitDwarfFileDirective(StringRef Directive) override;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp49 using Directive = VerifyDiagnosticConsumer::Directive; typedef
89 class StandardDirective : public Directive {
94 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyFileAndLine, in StandardDirective()
108 class RegexDirective : public Directive {
113 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyFileAndLine, in RegexDirective()
303 std::unique_ptr<Directive> D = Directive::create( in attachDirective()
590 D.Max = Directive::MaxCount; in ParseDirective()
605 D.Max = Directive::MaxCount; in ParseDirective()
891 std::vector<Directive *> &DL, const char *Kind) { in PrintExpected()
942 std::vector<Directive *> LeftOnly; in CheckLists()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DExtensions.rst74 ``.linkonce`` Directive
111 ``.section`` Directive
212 ``.section`` Directive
425 ``.cv_file`` Directive
430 ``.cv_func_id`` Directive
437 ``.cv_inline_site_id`` Directive
446 ``.cv_loc`` Directive
456 ``.cv_linetable`` Directive
461 ``.cv_inline_linetable`` Directive
466 ``.cv_def_range`` Directive
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DDependencyDirectivesSourceMinimizer.cpp67 LLVM_NODISCARD bool lexDefault(TokenKind Kind, StringRef Directive,
782 bool Minimizer::lexDefault(TokenKind Kind, StringRef Directive, in lexDefault() argument
785 put('#').append(Directive).put(' '); in lexDefault()
904 struct Directive { in computeSkippedRanges() struct
912 llvm::SmallVector<Directive, 32> Offsets; in computeSkippedRanges()
918 Offsets.push_back({T.Offset, Directive::If}); in computeSkippedRanges()
927 Offsets.push_back({T.Offset, Directive::Else}); in computeSkippedRanges()
937 Directive::DirectiveKind Kind = Offsets.pop_back_val().Kind; in computeSkippedRanges()
938 if (Kind == Directive::If) in computeSkippedRanges()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDirectiveEmitter.cpp121 const Directive &Directive, in HasDuplicateClauses() argument
129 " already defined on directive " + Directive.getRecordName()); in HasDuplicateClauses()
142 Directive Dir{D}; in HasDuplicateClausesInDirectives()
396 Directive Dir{D}; in GenerateIsAllowedClause()
437 StringRef ClauseSetPrefix, Directive &Dir, in GenerateClauseSet()
469 Directive Dir{D}; in GenerateDirectiveClauseSets()
503 Directive Dir{D}; in GenerateDirectiveClauseMap()
/netbsd-src/external/gpl3/binutils.old/dist/gas/doc/
H A Dc-xtensa.texi51 @xref{Literal Directive, ,literal}.
70 @xref{Literal Directive, ,literal}.
237 @code{no-transform} directive. @xref{Transform Directive, ,transform}.
280 (@pxref{Transform Directive, ,transform}).
395 (@pxref{Transform Directive, ,transform}).
439 @code{longcalls} directive (@pxref{Longcalls Directive, ,longcalls}).
531 @code{no-transform} directive (@pxref{Transform Directive, ,transform}).
681 * Schedule Directive:: Enable instruction scheduling.
682 * Longcalls Directive:: Use Indirect Calls for Greater Range.
683 * Transform Directive:: Disable All Assembler Transformations.
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/doc/
H A Dc-xtensa.texi51 @xref{Literal Directive, ,literal}.
70 @xref{Literal Directive, ,literal}.
237 @code{no-transform} directive. @xref{Transform Directive, ,transform}.
280 (@pxref{Transform Directive, ,transform}).
395 (@pxref{Transform Directive, ,transform}).
439 @code{longcalls} directive (@pxref{Longcalls Directive, ,longcalls}).
531 @code{no-transform} directive (@pxref{Transform Directive, ,transform}).
681 * Schedule Directive:: Enable instruction scheduling.
682 * Longcalls Directive:: Use Indirect Calls for Greater Range.
683 * Transform Directive:: Disable All Assembler Transformations.
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
H A DMCAsmParserExtension.h34 StringRef Directive, in HandleDirective() argument
37 return (Obj->*Handler)(Directive, DirectiveLoc); in HandleDirective()
H A DMCAsmParser.h153 virtual void addDirectiveHandler(StringRef Directive,
156 virtual void addAliasForDirective(StringRef Directive, StringRef Alias) = 0;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
H A DDirectiveEmitter.h100 class Directive : public BaseRecord {
102 explicit Directive(const llvm::Record *Def) : BaseRecord(Def) {} in Directive() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCWinCOFFStreamer.cpp282 SmallString<128> Directive; in emitCommonSymbol() local
283 raw_svector_ostream OS(Directive); in emitCommonSymbol()
291 emitBytes(Directive); in emitCommonSymbol()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp335 OpenMPIRBuilder::createBarrier(const LocationDescription &Loc, Directive DK, in createBarrier()
343 OpenMPIRBuilder::emitBarrierImpl(const LocationDescription &Loc, Directive Kind, in emitBarrierImpl()
392 omp::Directive CanceledDirective) { in createCancel()
432 Value *CancelFlag, omp::Directive CanceledDirective) { in emitCancelationCheckImpl()
1004 Directive OMPD = Directive::OMPD_sections; in createSection()
1020 Directive OMPD = Directive::OMPD_master; in createMaster()
1043 Directive OMPD = Directive::OMPD_masked; in createMasked()
1339 omp::Directive::OMPD_for, /* ForceSimpleCall */ false, in createStaticWorkshareLoop()
1489 omp::Directive::OMPD_for, /* ForceSimpleCall */ false, in createDynamicWorkshareLoop()
1897 Directive OMPD = Directive::OMPD_single; in createSingle()
[all …]

1234