Home
last modified time | relevance | path

Searched refs:Directives (Results 1 – 25 of 98) sorted by relevance

1234

/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCLinkerOptimizationHint.h141 SmallVector<MCLOHDirective, 32> Directives; variable
150 return Directives; in getDirectives()
156 Directives.push_back(MCLOHDirective(Kind, Args)); in addDirective()
163 for (const MCLOHDirective &D : Directives) in getEmitSize()
172 for (const MCLOHDirective &D : Directives) in emit()
177 Directives.clear(); in reset()
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/doc/
H A Dc-xc16x.texi11 * xc16x Directives:: xc16x Machine Directives
14 @node xc16x Directives
15 @section xc16x Machine Directives
H A Dc-mips.texi27 * MIPS Stabs:: Directives for debugging information
28 * MIPS ISA:: Directives to override the ISA level
29 * MIPS symbol sizes:: Directives to override the size of symbols
30 * MIPS autoextend:: Directives for extending MIPS 16 bit instructions
32 * MIPS option stack:: Directives to save and restore options
33 * MIPS ASE instruction generation overrides:: Directives to control
83 instruction sets during the assembly; see @ref{MIPS ISA, Directives to
319 @section Directives for debugging information
333 @section Directives to override the size of symbols
388 @section Directives to override the ISA level
[all …]
H A Dc-i860.texi23 * Directives-i860:: i860 Machine Directives
78 @node Directives-i860
79 @section i860 Machine Directives
H A Dc-sparc.texi20 * Sparc-Directives:: Sparc Machine Directives
126 @node Sparc-Directives
127 @section Sparc Machine Directives
H A Dc-bfin.texi18 * BFIN Directives:: BFIN Directives
167 @node BFIN Directives
168 @section Directives
H A Dc-sh64.texi12 * SH64 Directives:: SH64 Machine Directives
157 @node SH64 Directives
158 @section SH64 Machine Directives
H A Dc-i370.texi22 * ESA/390 Directives:: ESA/390 Machine Directives
109 @node ESA/390 Directives
110 @section ESA/390 Assembler Directives
H A Dc-ppc.texi18 * PowerPC-Pseudo:: PowerPC Assembler Directives
118 @section PowerPC Assembler Directives
H A Dc-msp430.texi20 * MSP430 Directives:: MSP 430 Machine Directives
185 @node MSP430 Directives
186 @section MSP 430 Machine Directives
/openbsd-src/gnu/usr.bin/binutils/gas/doc/
H A Dc-m88k.texi10 * M88K Directives:: M88K Machine Directives
13 @node M88K Directives
14 @section M88K Machine Directives
H A Dc-msp430.texi20 * MSP430 Directives:: MSP 430 Machine Directives
127 @node MSP430 Directives
128 @section MSP 430 Machine Directives
H A Dc-arc.texi23 * ARC Directives:: ARC Machine Directives
116 @node ARC Directives
117 @section ARC Machine Directives
H A Dc-mips.texi27 * MIPS Stabs:: Directives for debugging information
28 * MIPS ISA:: Directives to override the ISA level
29 * MIPS autoextend:: Directives for extending MIPS 16 bit instructions
31 * MIPS option stack:: Directives to save and restore options
32 * MIPS ASE instruction generation overrides:: Directives to control
82 instruction sets during the assembly; see @ref{MIPS ISA, Directives to
285 @section Directives for debugging information
299 @section Directives to override the ISA level
324 @section Directives for extending MIPS 16 bit instructions
349 @section Directives to save and restore options
[all …]
H A Dc-a29k.texi20 * AMD29K Directives:: AMD 29K Machine Directives
113 @node AMD29K Directives
114 @section AMD 29K Machine Directives
H A Dc-i860.texi23 * Directives-i860:: i860 Machine Directives
78 @node Directives-i860
79 @section i860 Machine Directives
H A Dc-sparc.texi20 * Sparc-Directives:: Sparc Machine Directives
126 @node Sparc-Directives
127 @section Sparc Machine Directives
H A Dc-i370.texi22 * ESA/390 Directives:: ESA/390 Machine Directives
109 @node ESA/390 Directives
110 @section ESA/390 Assembler Directives
H A Dc-sh64.texi12 * SH64 Directives:: SH64 Machine Directives
157 @node SH64 Directives
158 @section SH64 Machine Directives
H A Dc-ppc.texi18 * PowerPC-Pseudo:: PowerPC Assembler Directives
112 @section PowerPC Assembler Directives
H A Dc-h8500.texi13 * H8/500 Directives:: H8/500 Machine Directives
137 @node H8/500 Directives
138 @section H8/500 Machine Directives
/openbsd-src/gnu/llvm/clang/include/clang/Lex/
H A DDependencyDirectivesScanner.h118 SmallVectorImpl<dependency_directives_scan::Directive> &Directives,
134 ArrayRef<dependency_directives_scan::Directive> Directives,
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DDependencyDirectivesScanner.cpp81 bool scan(SmallVectorImpl<Directive> &Directives);
820 bool Scanner::scan(SmallVectorImpl<Directive> &Directives) { in scan() argument
834 Directives.emplace_back(DirWithToks.Kind, in scan()
845 SmallVectorImpl<Directive> &Directives, DiagnosticsEngine *Diags, in scanSourceForDependencyDirectives() argument
847 return Scanner(Input, Tokens, Diags, InputSourceLoc).scan(Directives); in scanSourceForDependencyDirectives()
852 ArrayRef<dependency_directives_scan::Directive> Directives, in printDependencyDirectivesAsSource() argument
875 for (const dependency_directives_scan::Directive &Directive : Directives) { in printDependencyDirectivesAsSource()
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.h97 if (auto *Directives = Contents->DepDirectives.load()) { in getDirectiveTokens() local
98 if (Directives->has_value()) in getDirectiveTokens()
99 return ArrayRef<dependency_directives_scan::Directive>(**Directives); in getDirectiveTokens()
/openbsd-src/gnu/llvm/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp63 SmallVector<dependency_directives_scan::Directive, 64> Directives; in scanForDirectivesIfNecessary() local
68 Directives)) { in scanForDirectivesIfNecessary()
80 new std::optional<DependencyDirectivesTy>(std::move(Directives))); in scanForDirectivesIfNecessary()

1234