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

  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLParser.h 265 bool &DSOLocal);
266 void parseOptionalDSOLocal(bool &DSOLocal);
315 unsigned DLLStorageClass, bool DSOLocal,
320 unsigned DLLStorageClass, bool DSOLocal,
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSummaryIndex.h 231 /// Checks if all summaries are DSO local (have the flag set). When DSOLocal
320 unsigned DSOLocal : 1;
340 DSOLocal(IsLocal), CanAutoHide(CanAutoHide) {}
417 void setDSOLocal(bool Local) { Flags.DSOLocal = Local; }
419 bool isDSOLocal() const { return Flags.DSOLocal; }
1060 /// Indicates that summary-based DSOLocal propagation has run and the flag in
1525 /// Do the access attribute and DSOLocal propagation in combined index.
ModuleSummaryIndexYAML.h 252 static_cast<bool>(FSum->flags().DSOLocal),
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 627 bool DSOLocal;
631 DSOLocal) ||
637 DLLStorageClass, DSOLocal, TLM, UnnamedAddr);
640 DLLStorageClass, DSOLocal, TLM, UnnamedAddr);
656 bool DSOLocal;
661 DSOLocal) ||
667 DLLStorageClass, DSOLocal, TLM, UnnamedAddr);
670 DLLStorageClass, DSOLocal, TLM, UnnamedAddr);
930 static void maybeSetDSOLocal(bool DSOLocal, GlobalValue &GV) {
931 if (DSOLocal)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ModuleSummaryIndex.cpp 56 // With DSOLocal propagation done, the flag in evey summary is the same.
218 // Do the access attribute and DSOLocal propagation in combined index.
229 // and DSOLocal propagation. During this step we:
289 // If the flag from any summary is false, the GV is not DSOLocal.
604 if (Flags.DSOLocal)
605 A.addComment("dsoLocal");
AsmWriter.cpp 3383 Out << ", dsoLocal: " << GVFlags.DSOLocal;
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 1075 RawFlags |= (Flags.DSOLocal << 2);

Completed in 26 milliseconds