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

12

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DGlobalMerge.cpp160 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
163 /// Merge everything in \p Globals for which the corresponding bit
165 bool doMerge(const SmallVectorImpl<GlobalVariable *> &Globals,
220 bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals, argument
225 Globals, [&DL](const GlobalVariable *GV1, const GlobalVariable *GV2) {
232 BitVector AllGlobals(Globals.size());
234 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
257 BitVector Globals; member in struct:UsedGlobalSet
260 UsedGlobalSet(size_t Size) : Globals(Size) {}
268 UsedGlobalSets.emplace_back(Globals
438 doMerge(const SmallVectorImpl<GlobalVariable *> &Globals, const BitVector &GlobalSet, Module &M, bool isConst, unsigned AddrSpace) const argument
609 Globals, ConstGlobals, BSSGlobals; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DProgram.h55 assert(Idx < Globals.size());
56 return Globals[Idx]->block();
177 std::vector<Global *> Globals; member in class:clang::interp::Program
H A DProgram.cpp48 unsigned I = Globals.size();
52 Globals.push_back(G);
83 assert(Idx < Globals.size());
84 return Pointer(Globals[Idx]->block());
177 unsigned I = Globals.size();
183 Globals.push_back(G);
/freebsd-13-stable/stand/i386/btx/lib/
H A Dbtxcsu.S25 # Globals.
H A Dbtxsys.S23 # Globals.
H A Dbtxv86.S23 # Globals.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp63 MutableArrayRef<BulkPublic> Globals);
183 Records.resize(Globals.size());
185 for (size_t I = 0, E = Globals.size(); I < E; ++I) {
186 StringRef Name = getSymbolName(Globals[I]);
190 SymOffset += Globals[I].length();
377 Globals.push_back(Symbol);
410 if (auto EC = writeRecords(Writer, Globals))
H A DPDBFile.cpp259 if (!Globals) {
271 Globals = std::move(TempGlobals);
273 return *Globals;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h1 //===- GSIStreamBuilder.h - PDB Publics/Globals Stream Creation -*- C++ -*-===//
96 std::vector<codeview::CVSymbol> Globals; member in class:llvm::pdb::GSIStreamBuilder
H A DPDBFile.h132 std::unique_ptr<GlobalsStream> Globals; member in class:llvm::pdb::PDBFile
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h120 SmallVector<CVGlobalVariable, 1> Globals; member in struct:llvm::CodeViewDebug::LexicalBlock
143 SmallVector<CVGlobalVariable, 1> Globals; member in struct:llvm::CodeViewDebug::FunctionInfo
317 void emitGlobalVariableList(ArrayRef<CVGlobalVariable> Globals);
351 SmallVectorImpl<CVGlobalVariable> &Globals);
H A DCodeViewDebug.cpp1092 emitGlobalVariableList(FI.Globals);
2749 emitGlobalVariableList(Block.Globals);
2764 SmallVectorImpl<CVGlobalVariable> &Globals) {
2766 collectLexicalBlockInfo(*Scope, Blocks, Locals, Globals);
2786 SmallVectorImpl<CVGlobalVariable> *Globals = local
2792 if (!Locals && !Globals)
2820 if (Globals)
2821 ParentGlobals.append(Globals->begin(), Globals->end());
2848 if (Globals)
2760 collectLexicalBlockInfo( SmallVectorImpl<LexicalScope *> &Scopes, SmallVectorImpl<LexicalBlock *> &Blocks, SmallVectorImpl<LocalVariable> &Locals, SmallVectorImpl<CVGlobalVariable> &Globals) argument
3100 emitGlobalVariableList(ArrayRef<CVGlobalVariable> Globals) argument
[all...]
H A DDwarfDebug.h501 const StringMap<const DIE *> &Globals);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp467 ArrayRef<GlobalTypeMember *> Globals);
482 ArrayRef<GlobalTypeMember *> Globals,
827 ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Globals) {
839 for (GlobalTypeMember *G : Globals) {
879 for (unsigned I = 0; I != Globals.size(); ++I) {
880 GlobalVariable *GV = cast<GlobalVariable>(Globals[I]->getGlobal());
1606 ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Globals,
1617 for (GlobalTypeMember *GTM : Globals) {
1645 GlobalLayoutBuilder GLB(Globals.size());
1651 Globals
826 buildBitSetsFromGlobalVariables( ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Globals) argument
1605 buildBitSetsFromDisjointSet( ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Globals, ArrayRef<ICallBranchFunnel *> ICallBranchFunnels) argument
2145 std::vector<GlobalTypeMember *> Globals; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp339 void writeGlobalSection(ArrayRef<wasm::WasmGlobal> Globals);
808 void WasmObjectWriter::writeGlobalSection(ArrayRef<wasm::WasmGlobal> Globals) { argument
809 if (Globals.empty())
815 encodeULEB128(Globals.size(), W.OS);
816 for (const wasm::WasmGlobal &Global : Globals) {
1188 SmallVector<wasm::WasmGlobal, 1> Globals; local
1455 Global.Index = NumGlobalImports + Globals.size();
1476 Globals.push_back(Global);
1698 writeGlobalSection(Globals);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h140 ArrayRef<wasm::WasmGlobal> globals() const { return Globals; }
271 std::vector<wasm::WasmGlobal> Globals; member in class:llvm::object::WasmObjectFile
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp345 unsigned Calls = 0, Refs = 0, Functions = 0, Alias = 0, Globals = 0; local
355 Globals++;
359 << (Alias + Globals + Functions) << " nodes (" << Functions
360 << " functions, " << Alias << " alias, " << Globals
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp100 DenseSet<const GlobalVariable *> &Globals) {
102 Globals.insert(GV);
106 DiscoverDependentGlobals(U->getOperand(i), Globals);
814 SmallVector<const GlobalVariable *, 8> Globals; local
820 VisitGlobalVariableForEmission(&I, Globals, GVVisited, GVVisiting);
827 for (unsigned i = 0, e = Globals.size(); i != e; ++i)
828 printModuleLevelGV(Globals[i], OS2);
99 DiscoverDependentGlobals(const Value *V, DenseSet<const GlobalVariable *> &Globals) argument
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.h81 extern llvm::cl::opt<bool> Globals;
H A DDumpOutputStyle.cpp260 P.formatLine("Has Globals: {0}", getPdb().hasPDBGlobalsStream());
773 printStreamNotPresent("Globals");
1681 printStreamNotPresent("Globals");
1687 auto &Globals = Err(getPdb().getPDBGlobalsStream());
1690 const GSIHashTable &Table = Globals.getGlobalsTable();
1710 Globals.findRecordsByName(Name, SymRecords);
H A Dllvm-pdbutil.cpp221 cl::opt<bool> Globals("globals", cl::desc("Dump global symbols"),
531 cl::opt<bool> DumpGlobals("globals", cl::desc("dump Globals symbol records"),
533 cl::opt<bool> DumpGlobalExtras("global-extras", cl::desc("dump Globals hashes"),
1226 if (opts::pretty::Globals) {
1526 opts::pretty::Globals = true; member in class:opts::pretty
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp550 wasm::WasmGlobal &Global = Globals[GlobalIndex];
1051 Globals.reserve(Count);
1054 Global.Index = NumImportedGlobals + Globals.size();
1059 Globals.push_back(Global);
1117 return Index < NumImportedGlobals + Globals.size();
1165 return Globals[Index - NumImportedGlobals];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp434 encodeULEB128(Section.Globals.size(), OS);
436 for (auto &Global : Section.Globals) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp1382 std::vector<GlobalVariable *> Globals; local
1392 // Globals with custom sections may be used in __start_/__stop_ enumeration,
1398 Globals.push_back(&GV);
1407 for (GlobalVariable *GV : Globals) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h331 std::vector<Global> Globals; member in struct:llvm::WasmYAML::GlobalSection

Completed in 173 milliseconds

12