HomeSort by: relevance | last modified time | path
    Searched defs:Generation (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
Sparc.cpp 64 SparcTargetInfo::CPUGeneration Generation;
120 return Item->Generation;
260 if (Info.Generation == CG_V9)
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_buffer_queue.h 57 uint64_t Generation{0};
163 // We use a generation number to identify buffers and which generation they're
165 atomic_uint64_t Generation;
224 /// Initializes the buffer queue, starting a new generation. We can re-set the
237 uint64_t generation() const { function in class:__xray::BufferQueue
238 return atomic_load(&Generation, memory_order_acquire);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUSubtarget.h 31 enum Generation {
SIMemoryLegalizer.cpp 775 GCNSubtarget::Generation Generation = ST.getGeneration();
778 if (Generation <= AMDGPUSubtarget::SOUTHERN_ISLANDS)
780 if (Generation < AMDGPUSubtarget::GFX10)
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Module.h 660 : ImportLocs(std::move(O.ImportLocs)), Generation(O.Generation ? 1 : 0) {
662 ++O.Generation;
666 /// empty and bump the generation on both.
670 ++O.Generation;
671 ++Generation;
675 /// Get the current visibility generation. Incremented each time the
677 unsigned getGeneration() const { return Generation; }
713 /// Visibility generation, bumped every time the visibility state changes.
714 unsigned Generation = 0
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ModuleFile.h 112 ModuleFile(ModuleKind Kind, unsigned Generation)
113 : Kind(Kind), Generation(Generation) {}
180 /// The generation of which this module file is a part.
181 unsigned Generation;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ScalarEvolution.h 2189 /// number. If this number doesn't match the current Generation, we will
2212 unsigned Generation = 0;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 548 /// keep track of a generation count of the read, which is compared against
549 /// the current generation count. The current generation count is incremented
552 /// events (such as fences or atomic instructions) increment the generation
559 unsigned Generation = 0;
564 LoadValue(Instruction *Inst, unsigned Generation, unsigned MatchingId,
566 : DefInst(Inst), Generation(Generation), MatchingId(MatchingId),
580 // addresses) to generation numbers at which that memory location became
593 /// It uses the same generation count as loads
    [all...]

Completed in 37 milliseconds