HomeSort by: relevance | last modified time | path
    Searched defs:Globals (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 132 std::unique_ptr<GlobalsStream> Globals;
GSIStreamBuilder.h 1 //===- GSIStreamBuilder.h - PDB Publics/Globals Stream Creation -*- C++ -*-===//
96 std::vector<codeview::CVSymbol> Globals;
99 // for globals.
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/inc/
smu8.h 44 uint32_t Globals;
smu7.h 163 uint32_t Globals;
smu71.h 440 uint32_t Globals;
smu72.h 534 uint32_t Globals;
smu73.h 525 uint32_t Globals;
smu74.h 582 uint32_t Globals;
smu75.h 472 uint32_t Globals;
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Program.h 55 assert(Idx < Globals.size());
56 return Globals[Idx]->block();
173 /// Allocator for globals.
177 std::vector<Global *> Globals;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.h 120 SmallVector<CVGlobalVariable, 1> Globals;
143 SmallVector<CVGlobalVariable, 1> Globals;
317 void emitGlobalVariableList(ArrayRef<CVGlobalVariable> Globals);
352 SmallVectorImpl<CVGlobalVariable> &Globals);
CodeViewDebug.cpp 609 // Get types used by globals without emitting anything.
611 // emitted as globals.
1106 emitGlobalVariableList(FI.Globals);
2785 emitGlobalVariableList(Block.Globals);
2800 SmallVectorImpl<CVGlobalVariable> &Globals) {
2802 collectLexicalBlockInfo(*Scope, Blocks, Locals, Globals);
2822 SmallVectorImpl<CVGlobalVariable> *Globals =
2828 if (!Locals && !Globals)
2856 if (Globals)
2857 ParentGlobals.append(Globals->begin(), Globals->end())
    [all...]
  /src/external/apache2/llvm/dist/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:
122 cl::desc("Improve global merge pass to ignore globals only used alone"),
136 STATISTIC(NumMerged, "Number of globals merged");
150 /// Currently, this applies a dead simple heuristic: only consider globals
160 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
163 /// Merge everything in \p Globals for which the corresponding bi
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
smu7.h 144 uint32_t Globals;
  /src/external/apache2/llvm/dist/clang/lib/APINotes/
APINotesYAMLCompiler.cpp 502 GlobalVariablesSeq Globals;
515 IO.mapOptional("Globals", TLI.Globals);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Wasm.h 145 ArrayRef<wasm::WasmGlobal> globals() const { return Globals; } function in class:llvm::object::WasmObjectFile
280 std::vector<wasm::WasmGlobal> Globals;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 215 cl::desc("Restore original linkage of globals prior to CodeGen"));
343 unsigned Calls = 0, Refs = 0, Functions = 0, Alias = 0, Globals = 0;
353 Globals++;
357 << (Alias + Globals + Functions) << " nodes (" << Functions
358 << " functions, " << Alias << " alias, " << Globals
359 << " globals) and " << (Calls + Refs) << " edges (" << Refs
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 336 std::vector<Global> Globals;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
llvm-pdbutil.cpp 221 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"),
538 "With -globals, only dump globals whose name matches the given value"),
1225 if (opts::pretty::Globals) {
1227 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---GLOBALS---";
1525 opts::pretty::Globals = true
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Linker/
IRMover.cpp 407 /// Whether we are importing globals for ThinLTO, as opposed to linking the
547 /// The LLVM SymbolTable class autorenames globals that conflict in the symbol
757 for (GlobalValue &SGV : SrcM->globals()) {
859 "Linking globals named '" + SrcGV->getName() +
1073 /// Update the initializers in the Dest module now that all globals that may be
1513 // Reorder the globals just added to the destination module to match their
1515 Module::GlobalListType &Globals = DstM.getGlobalList();
1516 for (GlobalVariable &GV : SrcM->globals()) {
1523 Globals.splice(Globals.end(), Globals, NewGV->getIterator())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 321 void writeGlobalSection(ArrayRef<wasm::WasmGlobal> Globals);
858 void WasmObjectWriter::writeGlobalSection(ArrayRef<wasm::WasmGlobal> Globals) {
859 if (Globals.empty())
865 encodeULEB128(Globals.size(), W->OS);
866 for (const wasm::WasmGlobal &Global : Globals) {
1353 // Add imports for GOT globals
1402 SmallVector<wasm::WasmGlobal, 1> Globals;
1596 Global.Index = NumGlobalImports + Globals.size();
1618 Globals.push_back(Global);
1862 writeGlobalSection(Globals);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 100 DenseSet<const GlobalVariable *> &Globals) {
102 Globals.insert(GV);
106 DiscoverDependentGlobals(U->getOperand(i), Globals);
809 // As ptxas does not support forward references of globals, we need to first
810 // sort the list of module-level globals in def-use order. We visit each
812 // globals. We use a little extra memory maintaining both a set and a list to
814 SmallVector<const GlobalVariable *, 8> Globals;
819 for (const GlobalVariable &I : M.globals())
820 VisitGlobalVariableForEmission(&I, Globals, GVVisited, GVVisiting);
827 for (unsigned i = 0, e = Globals.size(); i != e; ++i
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 10 // It also ensures that globals are properly laid out for the
105 "Import typeid resolutions from summary and globals"),
107 "Export typeid resolutions to summary and globals")),
351 // indirect) users", so what we do is save the list of globals referenced by
466 ArrayRef<GlobalTypeMember *> Globals);
481 ArrayRef<GlobalTypeMember *> Globals,
597 // Create globals to stand in for byte arrays and masks. These never actually
823 /// Given a disjoint set of type identifiers and globals, lay out the globals,
826 ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Globals) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
HWAddressSanitizer.cpp 126 static cl::opt<bool> ClGlobals("hwasan-globals", cl::desc("Instrument globals"),
397 // provided by the runtime initializes the shadow memory for the globals by
408 // 3) during construction, B accesses one of its "own" globals (actually
419 // Create the note even if we aren't instrumenting globals. This ensures that
421 // non-instrumented globals will end up with a note, even if a comdat from an
422 // object file with non-instrumented globals is selected. The note is harmless
447 Note->setSection(".note.hwasan.globals");
1384 // It is invalid to ICF two globals that have different tags. In the case
1386 // contents of the globals may be the same but the tags (i.e. symbol values
    [all...]
AddressSanitizer.cpp 274 // This flag may need to be replaced with -f[no]asan-globals.
275 static cl::opt<bool> ClGlobals("asan-globals",
349 static cl::opt<bool> ClOptGlobals("asan-opt-globals",
350 cl::desc("Don't instrument scalar globals"),
378 ClUseGlobalsGC("asan-globals-live-support",
380 "code stripping of globals"),
564 // Redzone used for stack and globals is at least 32 bytes.
784 // globals, which are rare); it is a prerequisite for ClUseGlobalsGC;
788 // do globals-gc.
1168 // FIXME: It would be cleaner to instead attach relevant metadata to the globals
    [all...]

Completed in 73 milliseconds

1 2