HomeSort by: relevance | last modified time | path
    Searched refs:Argument (Results 1 - 25 of 235) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TemplateBase.h 61 /// Represents a template argument.
64 /// The kind of template argument we're storing.
66 /// Represents an empty template argument, e.g., one that has not
70 /// The template argument is a type.
73 /// The template argument is a declaration that was provided for a pointer,
77 /// The template argument is a null pointer or null pointer to member that
81 /// The template argument is an integral value stored in an llvm::APSInt
85 /// The template argument is a template name that was provided for a
89 /// The template argument is a pack expansion of a template name that was
93 /// The template argument is an expression, and we've not resolved it to on
    [all...]
ASTDiagnostic.h 16 /// DiagnosticsEngine argument formatting function for diagnostics that
22 /// diagnostics. It is meant to be used as the argument to
29 StringRef Argument,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
ArgumentPromotion.h 19 /// Argument promotion pass.
35 SmallPtrSetImpl<Argument *> &ArgsToPromote,
36 SmallPtrSetImpl<Argument *> &ByValArgsToTransform);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUInstrInfo.cpp 44 if (const Argument *Arg = dyn_cast<Argument>(Ptr))
AMDGPUAliasAnalysis.cpp 102 } else if (const Argument *Arg = dyn_cast<Argument>(ObjA)) {
111 // location B is not captured, that argument pointer won't alias to it
138 } else if (const Argument *Arg = dyn_cast<Argument>(Base)) {
158 /* On an argument, ReadOnly attribute indicates that the function does
159 not write through this pointer argument, even though it may write
161 On an argument, ReadNone attribute indicates that the function does
162 not dereference that pointer argument, even though it may read or write
AMDGPURewriteOutArguments.cpp 9 /// \file This pass attempts to replace out argument usage with a return of a
13 /// idiomatic C code frequently uses a pointer argument to return a second value
87 bool isOutArgumentCandidate(Argument &Arg) const;
170 bool AMDGPURewriteOutArguments::isOutArgumentCandidate(Argument &Arg) const {
230 SmallVector<Argument *, 4> OutArgs;
231 for (Argument &Arg : F.args()) {
233 LLVM_DEBUG(dbgs() << "Found possible out argument " << Arg
242 using ReplacementVec = SmallVector<std::pair<Argument *, Value *>, 4>;
260 // Keep retrying if we are able to successfully eliminate an argument. This
264 // first. On the second iteration we've removed that out clobbering argument
    [all...]
R600OpenCLImageTypeLoweringPass.cpp 14 /// as kernel arguments immediately following the image argument itself,
149 bool replaceImageUses(Argument &ImageArg, uint32_t ResourceID,
150 Argument &ImageSizeArg,
151 Argument &ImageFormatArg) {
184 bool replaceSamplerUses(Argument &SamplerArg, uint32_t ResourceID) {
221 Argument &Arg = *ArgI;
236 Argument &SizeArg = *(++ArgI);
237 Argument &FormatArg = *(++ArgI);
273 // Add size implicit argument.
278 // Add format implicit argument
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DiagnosticInfo.cpp 164 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
176 if (isa<llvm::Argument>(V) || isa<GlobalValue>(V))
185 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, const Type *T)
191 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, StringRef S)
194 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, int N)
197 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, float N
    [all...]
Function.cpp 24 #include "llvm/IR/Argument.h"
80 // Argument Implementation
83 Argument::Argument(Type *Ty, const Twine &Name, Function *Par, unsigned ArgNo)
88 void Argument::setParent(Function *parent) {
92 bool Argument::hasNonNullAttr(bool AllowUndefOrPoison) const {
105 bool Argument::hasByValAttr() const {
110 bool Argument::hasByRefAttr() const {
116 bool Argument::hasSwiftSelfAttr() const {
120 bool Argument::hasSwiftErrorAttr() const
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
apmain.c 83 char *Argument,
140 * PARAMETERS: Argument - Pointer to the argument for this action
151 char *Argument,
157 ActionTable [CurrentAction].Argument = Argument;
401 Status = ApDumpTableByAddress (Action->Argument);
406 Status = ApDumpTableByName (Action->Argument);
411 Status = ApDumpTableFromFile (Action->Argument);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
Remark.h 42 struct Argument {
51 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(Argument, LLVMRemarkArgRef)
90 SmallVector<Argument, 5> Args;
143 inline bool operator==(const Argument &LHS, const Argument &RHS) {
147 inline bool operator!=(const Argument &LHS, const Argument &RHS) {
151 inline bool operator<(const Argument &LHS, const Argument &RHS) {
BitstreamRemarkParser.h 66 struct Argument {
73 Optional<ArrayRef<Argument>> Args;
75 SmallVector<Argument, 8> TmpArgs;
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
Remark.cpp 23 for (const Argument &Arg : Args)
111 ArrayRef<Argument> Args = unwrap(Remark)->Args;
116 const_cast<Argument *>(Args.begin()));
125 auto It = (ArrayRef<Argument>::const_iterator)ArgIt;
130 return reinterpret_cast<LLVMRemarkArgRef>(const_cast<Argument *>(Next));
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Diagnostic.cpp 77 StringRef Modifier, StringRef Argument,
82 StringRef Str = "<can't format argument>";
593 /// like this: %select{foo|bar|baz}2. This means that the integer argument
598 const char *Argument, unsigned ArgumentLen,
600 const char *ArgumentEnd = Argument+ArgumentLen;
604 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
607 Argument = NextVal+1; // Skip this string.
612 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
615 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
711 /// Conditions are simple boolean expressions, where n is the number argument
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Argument.h 1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
9 // This file declares the Argument class.
23 /// This class represents an incoming formal argument to a Function. A formal
24 /// argument, since it is ``formal'', does not contain an actual value but
25 /// instead represents the type, argument number, and attributes of an argument
27 /// argument of course represents the value of the actual argument that the
29 class Argument final : public Value
    [all...]
ValueSymbolTable.h 23 class Argument;
38 friend class SymbolTableListTraits<Argument>;
DiagnosticInfo.h 419 /// Used in the streaming interface as the general argument type. It
421 struct Argument {
427 explicit Argument(StringRef Str = "") : Key("String"), Val(Str) {}
428 Argument(StringRef Key, const Value *V);
429 Argument(StringRef Key, const Type *T);
430 Argument(StringRef Key, StringRef S);
431 Argument(StringRef Key, const char *S) : Argument(Key, StringRef(S)) {};
432 Argument(StringRef Key, int N);
433 Argument(StringRef Key, float N)
    [all...]
Intrinsics.h 83 /// and statepoint intrinsics. These call (or invoke) their "target" argument.
129 Argument,
163 assert(Kind == Argument || Kind == ExtendArgument ||
172 assert(Kind == Argument || Kind == ExtendArgument ||
180 // VecOfAnyPtrsToElt uses both an overloaded argument (for address space)
181 // and a reference argument (for matching vector width and element types)
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXLowerArgs.cpp 118 void handleByValParam(Argument *Arg);
194 // Just pass through the argument, the old ASC is no longer needed.
217 // Now we know that all argument loads are using addresses in parameter space
228 void NVPTXLowerArgs::handleByValParam(Argument *Arg) {
266 // skip creation of a local copy of the argument.
307 if (Argument *Arg = dyn_cast<Argument>(Ptr)) {
308 // Insert at the functon entry if Ptr is an argument.
339 if (Argument *Arg = dyn_cast<Argument>(UO))
    [all...]
NVPTXUtilities.cpp 165 if (const Argument *arg = dyn_cast<Argument>(&val)) {
177 if (const Argument *arg = dyn_cast<Argument>(&val)) {
189 if (const Argument *arg = dyn_cast<Argument>(&val)) {
201 if (const Argument *arg = dyn_cast<Argument>(&val)) {
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
msggrep-6 12 invalid\ argument\ `%s'\ for\ `%s'=ung\u00fcltiges Argument \u00bb%s\u00ab f\u00fcr \u00bb%s\u00ab
16 ambiguous\ argument\ `%s'\ for\ `%s'=mehrdeutiges Argument \u00bb%s\u00ab f\u00fcr \u00bb%s\u00ab
55 %s\:\ option\ `--%s'\ doesn't\ allow\ an\ argument\n=%s\: Option \u00bb--%s\u00ab erwartet kein Argument\n
59 %s\:\ option\ `%c%s'\ doesn't\ allow\ an\ argument\n=%s\: Option \u00bb%c%s\u00ab erwartet kein Argument\n
63 %s\:\ option\ `%s'\ requires\ an\ argument\n=%s\: Option \u00bb%s\u00ab erwartet ein Argument\
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/rl78/
bit-count.S 26 ;; Argument is in [SP+4], return in R8.
47 ;; Argument is in [SP+6]:[SP+4], return in R8.
61 ;; Argument is in [SP+4], return in R8.
82 ;; Argument is in [SP+6]:[SP+4], return in R8.
96 ;; Argument is in [SP+4], return in R8.
117 ;; Argument is in [SP+6]:[SP+4], return in R8.
152 ;; Argument is in [SP+4], return in R8.
160 ;; Argument is in [SP+6]:[SP+4], return in R8.
173 ;; Argument is in [SP+4], return in R8.
180 ;; Argument is in [SP+6]:[SP+4], return in R8
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CFLAliasAnalysisUtils.h 50 if (auto *Arg = dyn_cast<Argument>(Val))
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 36 class Argument;
128 DenseMap<const Argument*, int> ByValArgFrameIndexMap;
134 /// Bitvector with a bit set if corresponding argument is described in
135 /// ArgDbgValues. Using arg numbers according to Argument numbering.
270 /// argument.
271 void setArgumentFrameIndex(const Argument *A, int FI);
273 /// getArgumentFrameIndex - Get frame index for the byval argument.
274 int getArgumentFrameIndex(const Argument *A);
  /src/sys/external/bsd/acpica/dist/executer/
exoparg3.c 109 Fatal.Argument = (UINT32) Operand[2]->Integer.Value;
113 Fatal.Type, Fatal.Code, Fatal.Argument));

Completed in 61 milliseconds

1 2 3 4 5 6 7 8 910