HomeSort by relevance Sort by last modified time
    Searched defs:Globals (Results 1 - 23 of 23) sorted by null

  /external/clang/test/CodeGen/
2003-06-26-CFECrash.c 8 typedef struct Globals {
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
Globals.java 18 public final class Globals {
19 private Globals() {}
  /frameworks/rs/rsov/compiler/
GlobalMergePass.cpp 49 SmallVector<GlobalVariable *, 8> Globals;
50 const bool CollectRes = collectGlobals(M, Globals);
57 Tys.reserve(Globals.size());
59 for (auto *GV : Globals) {
75 for (size_t i = 0, e = Globals.size(); i != e; ++i) {
76 auto *G = Globals[i];
112 bool collectGlobals(Module &M, SmallVectorImpl<GlobalVariable *> &Globals) {
113 for (auto &GV : M.globals()) {
131 Globals.push_back(&GV);
134 return !Globals.empty()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 59 /// Globals - A map of globally visible named entities for this unit.
61 StringMap<DIE*> Globals;
82 const StringMap<DIE*> &getGlobals() const { return Globals; }
91 void addGlobal(StringRef Name, DIE *Die) { Globals[Name] = Die; }
DwarfDebug.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMGlobalMerge.cpp 1 //===-- ARMGlobalMerge.cpp - Internal globals merging --------------------===//
9 // This pass merges globals with internal linkage into one. This way all the
10 // globals which were merged into a biggest one can be addressed using offsets
13 // when many globals are involved.
77 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
89 return "Merge internal globals";
114 bool ARMGlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
124 std::stable_sort(Globals.begin(), Globals.end(), GlobalCmp(TD));
128 for (size_t i = 0, e = Globals.size(); i != e; )
    [all...]
  /external/llvm/lib/CodeGen/
GlobalMerge.cpp 1 //===-- GlobalMerge.cpp - Internal globals merging -----------------------===//
9 // This pass merges globals with internal linkage into one. This way all the
10 // globals which were merged into a biggest one can be addressed using offsets
13 // when many globals are involved.
53 // However, merging globals can have tradeoffs:
105 cl::desc("Improve global merge pass to ignore globals only used alone"),
119 STATISTIC(NumMerged, "Number of globals merged");
130 /// Currently, this applies a dead simple heuristic: only consider globals
140 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
142 /// \brief Merge everything in \p Globals for which the corresponding bi
    [all...]
  /external/llvm/tools/llvm-pdbdump/
llvm-pdbdump.cpp 117 cl::opt<bool> Globals("globals", cl::desc("Dump global symbols"),
470 if (opts::pretty::Globals) {
472 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---GLOBALS---";
557 opts::pretty::Globals = true;
  /external/nanopb-c/generator/
nanopb_generator.py     [all...]
  /external/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 245 ArrayRef<GlobalVariable *> Globals);
254 ArrayRef<GlobalObject *> Globals);
309 // Create globals to stand in for byte arrays and masks. These never actually
491 /// Given a disjoint set of type identifiers and globals, lay out the globals,
494 ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalVariable *> Globals) {
495 // Build a new global with the combined contents of the referenced globals.
497 // contents of the referenced globals and whose odd-indexed elements contain
501 for (GlobalVariable *G : Globals) {
526 // Compute the offsets of the original globals within the new global
    [all...]
GlobalOpt.cpp 11 // taken. If obviously true, it marks read/write globals as constant, deletes
52 STATISTIC(NumMarked , "Number of globals marked constant");
53 STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
54 STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
56 STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
57 STATISTIC(NumDeleted , "Number of globals deleted");
59 STATISTIC(NumLocalized , "Number of globals localized");
152 // memory pointed to by globals at exit. This is popular because it also
154 // before other threads that are still expecting to use those globals. To
443 Module::GlobalListType &Globals = GV->getParent()->getGlobalList()
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 70 DenseSet<const GlobalVariable *> &Globals) {
72 Globals.insert(GV);
76 DiscoverDependentGlobals(U->getOperand(i), Globals);
885 // As ptxas does not support forward references of globals, we need to first
886 // sort the list of module-level globals in def-use order. We visit each
888 // globals. We use a little extra memory maintaining both a set and a list to
890 SmallVector<const GlobalVariable *, 8> Globals;
895 for (const GlobalVariable &I : M.globals())
896 VisitGlobalVariableForEmission(&I, Globals, GVVisited, GVVisiting);
903 for (unsigned i = 0, e = Globals.size(); i != e; ++i
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp 11 // taken. If obviously true, it marks read/write globals as constant, deletes
43 STATISTIC(NumMarked , "Number of globals marked constant");
44 STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
45 STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
47 STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
48 STATISTIC(NumDeleted , "Number of globals deleted");
51 STATISTIC(NumLocalized , "Number of globals localized");
114 /// for scalar globals.
120 /// tracked for scalar globals.
506 Module::GlobalListType &Globals = GV->getParent()->getGlobalList()
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 274 static class Globals extends IWallpaperManagerCallback.Stub {
280 Globals(Looper looper) {
392 private static Globals sGlobals;
397 sGlobals = new Globals(looper);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 173 // This flag may need to be replaced with -f[no]asan-globals.
174 static cl::opt<bool> ClGlobals("asan-globals",
225 static cl::opt<bool> ClOptGlobals("asan-opt-globals",
226 cl::desc("Don't instrument scalar globals"),
249 ClUseMachOGlobalsSection("asan-globals-live-support",
251 "code stripping of globals "
317 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
318 if (!Globals) return;
319 for (auto MDN : Globals->operands())
    [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 37 /// Holds all the vbtable globals for a given class.
40 SmallVector<llvm::GlobalVariable *, 2> Globals;
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 461 milliseconds