HomeSort by: relevance | last modified time | path
    Searched defs:Fast (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Target/
CGPassBuilderOption.h 25 enum class RegAllocType { Default, Basic, Fast, Greedy, PBQP };
TargetOptions.h 37 Fast, // Enable fusion of FP ops wherever it's profitable.
213 /// EnableFastISel - This flag enables fast-path instruction selection
346 /// Fast mode - allows formation of fused FP ops whenever they're
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
RegBankSelect.h 97 /// Assign the register banks as fast as possible (default).
98 Fast,
497 /// This is required for non-fast mode.
501 /// This is required for non-fast mode.
620 RegBankSelect(Mode RunningMode = Fast);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
CallingConv.h 40 /// Fast - This calling convention attempts to make calls as fast as
42 Fast = 8,
78 /// Tail - This calling convention attemps to make calls as fast as
104 /// X86_FastCall - 'fast' analog of X86_StdCall. Passes first two arguments
  /src/games/hack/
hack.h 141 #define FAST (LAST_RING+1) /* not a ring */
142 #define Fast u.uprops[FAST].p_flgs
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
GenericDomTree.h 11 /// tree over a generic graph. This is used typically in LLVM for fast
245 enum class VerificationLevel { Fast, Basic, Full };
798 /// - Fast -- checks basic tree structure and compares it with a freshly
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiISelLowering.cpp 159 // Use fast calling convention for library functions.
161 setLibcallCallingConv(static_cast<RTLIB::Libcall>(I), CallingConv::Fast);
373 // Note: Both the default and fast CC handle VarArg the same and hence the
402 case CallingConv::Fast:
426 case CallingConv::Fast:
450 if (CallConv == CallingConv::Fast) {
618 if (CallConv == CallingConv::Fast)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 1316 bool Fast = false;
1319 Alignment, &Fast);
1321 << " and fast? " << Fast << "\n";);
1322 return !Allows || !Fast;
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParsePragma.cpp 2956 enum FlagValues { On, Off, Fast };
3016 .Case("fast", LangOptions::FPModeKind::FPM_Fast)
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetLowering.h 104 Fast, // Fast suboptimal list scheduling
516 /// fast types
557 bool Fast = false;
559 MMO, &Fast) && Fast;
603 /// Return true if ctlz instruction is fast.
1612 /// whether the unaligned memory access is "fast" in the last argument by
1620 bool * /*Fast*/ = nullptr) const {
1628 bool * /*Fast*/ = nullptr) const
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 267 bool Fast;
271 MachineMemOperand::MONone, &Fast) &&
272 Fast)
2448 // Fast handling of 'identity' bitcasts.
6791 // TODO: Should any fast-math-flags be set for the FSUB?
6817 // TODO: Should any fast-math-flags be set for the FSUB?
DAGCombiner.cpp 7369 // Check that a store of the wide type is both allowed and fast on the target
7371 bool Fast = false;
7373 *FirstStore->getMemOperand(), &Fast);
7374 if (!Allowed || !Fast)
7600 // Check that a load of the wide type is both allowed and fast on the target
7601 bool Fast = false;
7604 *FirstLoad->getMemOperand(), &Fast);
7605 if (!Allowed || !Fast)
9005 bool Fast = false;
9008 RHS->getMemOperand()->getFlags(), &Fast) &
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp 1859 // Create a fast isel object.
2013 case CallingConv::Fast:
2017 return CallingConv::Fast;
2051 case CallingConv::Fast:
3584 // inline it elsewhere too (and reuse the constant pool entry). Fast-isel
3587 // the GV from fast-isel generated code.
9061 // TODO: Should this propagate fast-math-flags?
9092 // TODO: Should this propagate fast-math-flags?
9167 // TODO: Should this propagate fast-math-flags?
17141 bool *Fast) const
    [all...]

Completed in 105 milliseconds