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

  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp 50 BitRecTy BitRecTy::Shared;
51 IntRecTy IntRecTy::Shared;
52 StringRecTy StringRecTy::Shared;
53 DagRecTy DagRecTy::Shared;
81 static std::vector<BitsRecTy*> Shared;
82 if (Sz >= Shared.size())
83 Shared.resize(Sz + 1);
84 BitsRecTy *&Ty = Shared[Sz];
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
MinGW.cpp 72 bool Shared = Args.hasArg(options::OPT_shared);
75 if (Static || (!CXX && !Shared)) {
150 CmdArgs.push_back("--shared");
272 // MinGW always links against a shared MSVCRT.
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 226 // starting nodes into a shared matcher.
316 Matcher *Shared = Optn;
327 Shared->setNext(new ScopeMatcher(EqualMatchers));
330 FactorNodes(Shared->getNextPtr());
332 NewOptionsToMatch.push_back(Shared);
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 170 Shared = 1 << 4,
220 case 's': // shared section
221 SecFlags |= Shared | InitData;
269 if (SecFlags & Shared)
349 // s: Shared section
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.h 133 /// Reference to the item shared between tasks to reduce into.
134 const Expr *Shared = nullptr;
141 ReductionData(const Expr *Shared, const Expr *Ref, const Expr *Private,
143 : Shared(Shared), Ref(Ref), Private(Private), ReductionOp(ReductionOp) {
149 /// List of addresses of shared variables/expressions.
158 /// Emits lvalue for shared expression.
160 /// Emits upper bound for shared expression (if array section).
165 /// \param SharedLVal Address of the original shared variable.
175 /// Emits lvalue for the shared and original reduction item
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 103 static BitRecTy Shared;
112 static BitRecTy *get() { return &Shared; }
143 static IntRecTy Shared;
152 static IntRecTy *get() { return &Shared; }
161 static StringRecTy Shared;
170 static StringRecTy *get() { return &Shared; }
203 static DagRecTy Shared;
212 static DagRecTy *get() { return &Shared; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerMatrixIntrinsics.cpp 1618 const DenseMap<Value *, SmallPtrSet<Value *, 2>> &Shared;
1632 const DenseMap<Value *, SmallPtrSet<Value *, 2>> &Shared,
1635 : Str(), Stream(Str), DL(DL), Inst2Matrix(Inst2Matrix), Shared(Shared),
1797 // Is Expr shared with other expression leaves?
1800 // Deal with shared subtrees. Mark them as shared, if required.
1802 auto SI = Shared.find(Expr);
1803 assert(SI != Shared.end() && SI->second.count(Leaf));
1809 write("shared with remark at line " + std::to_string(DL.getLine())
    [all...]

Completed in 38 milliseconds