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

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
Combiner.h 1 //== ----- llvm/CodeGen/GlobalISel/Combiner.h -------------------*- C++ -*-== //
9 /// This contains common code to drive combines. Combiner Passes will need to
27 class Combiner {
29 Combiner(CombinerInfo &CombinerInfo, const TargetPassConfig *TPC);
31 /// If CSEInfo is not null, then the Combiner will setup observer for
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
Combiner.cpp 1 //===-- lib/CodeGen/GlobalISel/Combiner.cpp -------------------------------===//
13 #include "llvm/CodeGen/GlobalISel/Combiner.h"
26 #define DEBUG_TYPE "gi-combiner"
32 "GlobalISel Combiner",
49 /// Other Combiner implementations may require more complex behaviour from
93 Combiner::Combiner(CombinerInfo &Info, const TargetPassConfig *TPC)
98 bool Combiner::combineMachineInstrs(MachineFunction &MF,
101 // FIXME: Should this be here or in individual combiner passes.
113 LLVM_DEBUG(dbgs() << "Generic MI Combiner for: " << MF.getName() << '\n')
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclOpenMP.h 170 /// Here 'omp_out += omp_in' is a combiner and 'omp_priv = 0' is an initializer.
183 /// Combiner for declare reduction construct.
184 Expr *Combiner = nullptr;
187 /// In parameter of the combiner.
189 /// Out parameter of the combiner.
220 /// Get combiner expression of the declare reduction construct.
221 Expr *getCombiner() { return Combiner; }
222 const Expr *getCombiner() const { return Combiner; }
223 /// Get In variable of the combiner.
226 /// Get Out variable of the combiner
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
GICombinerEmitter.cpp 1 //===- GlobalCombinerEmitter.cpp - Generate a combiner --------------------===//
9 /// \file Generate a combiner implementation for GlobalISel from a declarative
40 GICombinerEmitterCat("Options for -gen-global-isel-combiner");
595 Record *Combiner;
606 StringRef Name, Record *Combiner);
610 return Combiner->getValueAsString("Classname");
624 StringRef Name, Record *Combiner)
625 : Records(RK), Name(Name), Target(Target), Combiner(Combiner) {}
798 // mechanism with the Combiner
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 2699 Expr *Combiner = Record.readExpr();
2700 D->setCombiner(Combiner);

Completed in 33 milliseconds