Searched defs:Globals (Results 1 - 25 of 25) sorted by relevance

/external/clang/test/CodeGen/
H A D2003-06-26-CFECrash.c8 typedef struct Globals { struct
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h59 /// Globals - A map of globally visible named entities for this unit.
61 StringMap<DIE*> Globals; member in class:llvm::CompileUnit
82 const StringMap<DIE*> &getGlobals() const { return Globals; }
91 void addGlobal(StringRef Name, DIE *Die) { Globals[Name] = Die; }
H A DDwarfDebug.cpp1711 const StringMap<DIE*> &Globals = TheCU->getGlobals(); local
1713 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
1759 const StringMap<DIE*> &Globals = TheCU->getGlobalTypes(); local
1761 GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) {
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMGlobalMerge.cpp77 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
114 bool ARMGlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals, argument
124 std::stable_sort(Globals.begin(), Globals.end(), GlobalCmp(TD));
128 for (size_t i = 0, e = Globals.size(); i != e; ) {
134 Type *Ty = Globals[j]->getType()->getElementType();
140 Inits.push_back(Globals[j]->getInitializer());
154 Globals[k]->replaceAllUsesWith(GEP);
155 Globals[k]->eraseFromParent();
165 SmallVector<GlobalVariable*, 16> Globals, ConstGlobal local
[all...]
/external/llvm/tools/llvm-pdbdump/
H A Dllvm-pdbdump.cpp117 cl::opt<bool> Globals("globals", cl::desc("Dump global symbols"),
470 if (opts::pretty::Globals) {
557 opts::pretty::Globals = true; member in class:opts::pretty
/external/llvm/lib/CodeGen/
H A DGlobalMerge.cpp140 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
142 /// \brief Merge everything in \p Globals for which the corresponding bit
144 bool doMerge(const SmallVectorImpl<GlobalVariable *> &Globals,
202 bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals, argument
206 std::stable_sort(Globals.begin(), Globals.end(),
214 BitVector AllGlobals(Globals.size());
216 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
239 UsedGlobalSet(size_t Size) : Globals(Size), UsageCount(1) {}
240 BitVector Globals; member in struct:UsedGlobalSet
419 doMerge(const SmallVectorImpl<GlobalVariable *> &Globals, const BitVector &GlobalSet, Module &M, bool isConst, unsigned AddrSpace) const argument
528 DenseMap<unsigned, SmallVector<GlobalVariable*, 16> > Globals, ConstGlobals, local
[all...]
/external/nanopb-c/generator/
H A Dnanopb_generator.py907 class Globals: class in inherits:
920 for namemask, options in Globals.separate_options:
922 Globals.matched_namemasks.add(namemask)
941 if Globals.verbose_options:
1013 Globals.separate_options = read_options_file(open(optfilename, "rU"))
1015 Globals.separate_options = []
1016 Globals.matched_namemasks = set()
1040 unmatched = [n for n,o in Globals.separate_options if n not in Globals.matched_namemasks]
1044 if not Globals
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceASanInstrumentation.cpp85 void ASanInstrumentation::instrumentGlobals(VariableDeclarationList &Globals) { argument
104 for (VariableDeclaration *Global : Globals) {
196 Globals.clear();
197 Globals.merge(&NewGlobals);
203 Ctx->getStrDump() << "========= Instrumented Globals =========\n";
204 for (VariableDeclaration *Global : Globals) {
H A DIceGlobalContext.h394 /// Uses DataLowering to lower Globals. Side effects:
395 /// - discards the initializer list for the global variable in Globals.
396 /// - clears the Globals array.
421 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock);
441 VariableDeclarationList Globals; member in class:Ice::GlobalContext::CodeStats
503 /// If !HasEmittedCode, SubZero will accumulate all Globals (which are "true"
532 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock);
551 LockedPtr<VariableDeclarationList> _(&Globals, &InitAllocLock);
553 Globals.merge(Globls.get());
H A DIceDefs.h203 Globals.insert(Globals.end(), Other->Globals.begin(), Other->Globals.end());
204 Other->Globals.clear();
214 assert(Globals.empty());
223 Globals.clear();
231 VariableDeclarationArray::iterator begin() { return Globals.begin(); }
233 VariableDeclarationArray::iterator end() { return Globals.end(); }
236 return Globals
270 VariableDeclarationArray Globals; member in class:Ice::VariableDeclarationList
[all...]
H A DWasmTranslator.cpp1578 unique_ptr<VariableDeclarationList> Globals = local
1582 auto *WasmMemory = VariableDeclaration::createExternal(Globals.get());
1591 Globals.get(), Seg.dest_addr - WritePtr));
1597 Globals.get(), reinterpret_cast<const char *>(Module->module_start) +
1606 auto *GlobalDataSize = VariableDeclaration::createExternal(Globals.get());
1609 Globals.get(), reinterpret_cast<const char *>(&WritePtr),
1613 auto *GlobalNumPages = VariableDeclaration::createExternal(Globals.get());
1616 Globals.get(), reinterpret_cast<const char *>(&Module->min_mem_pages),
1619 Globals->push_back(WasmMemory);
1620 Globals
[all...]
H A DPNaClTranslator.cpp1152 Error("Globals count record not first in block.");
1179 Error("Globals compound record not first initializer");
3028 std::unique_ptr<Ice::VariableDeclarationList> Globals = local
3030 if (Globals)
3031 getTranslator().lowerGlobals(std::move(Globals));
/external/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp245 ArrayRef<GlobalVariable *> Globals);
254 ArrayRef<GlobalObject *> Globals);
494 ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalVariable *> Globals) {
501 for (GlobalVariable *G : Globals) {
528 for (unsigned I = 0; I != Globals.size(); ++I)
530 GlobalLayout[Globals[I]] = CombinedGlobalLayout->getElementOffset(I * 2);
537 for (unsigned I = 0; I != Globals.size(); ++I) {
544 Globals[I]->replaceAllUsesWith(CombinedGlobalElemPtr);
546 assert(Globals[I]->getType()->getAddressSpace() == 0);
548 Globals[
493 buildBitSetsFromGlobalVariables( ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalVariable *> Globals) argument
798 buildBitSetsFromDisjointSet( ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalObject *> Globals) argument
963 std::vector<GlobalObject *> Globals; local
[all...]
H A DGlobalOpt.cpp443 Module::GlobalListType &Globals = GV->getParent()->getGlobalList(); local
463 Globals.push_back(NGV);
498 Globals.push_back(NGV);
562 Globals.erase(GV);
571 Globals.erase(NewGlobals[i]);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1318 const auto &Globals = (TheU->*Accessor)(); local
1320 if (Globals.empty())
1347 for (const auto &GI : Globals) {
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp70 DenseSet<const GlobalVariable *> &Globals) {
72 Globals.insert(GV);
76 DiscoverDependentGlobals(U->getOperand(i), Globals);
890 SmallVector<const GlobalVariable *, 8> Globals; local
896 VisitGlobalVariableForEmission(&I, Globals, GVVisited, GVVisiting);
903 for (unsigned i = 0, e = Globals.size(); i != e; ++i)
904 printModuleLevelGV(Globals[i], OS2);
69 DiscoverDependentGlobals(const Value *V, DenseSet<const GlobalVariable *> &Globals) argument
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp506 Module::GlobalListType &Globals = GV->getParent()->getGlobalList(); local
525 Globals.insert(GV, NGV);
559 Globals.insert(GV, NGV);
621 Globals.erase(GV);
630 Globals.erase(NewGlobals[i]);
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp317 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals"); local
318 if (!Globals) return;
319 for (auto MDN : Globals->operands()) {
1282 // Globals from llvm.metadata aren't emitted, do not instrument them.
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp40 SmallVector<llvm::GlobalVariable *, 2> Globals; member in struct:__anon1647::VBTableGlobals
1212 llvm::GlobalVariable *GV = VBGlobals.Globals[I];
1879 VBGlobals.Globals.push_back(getAddrOfVBTable(**I, RD, Linkage));
1960 llvm::GlobalVariable *GV = VBGlobals.Globals[I];
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 616 milliseconds