HomeSort by relevance Sort by last modified time
    Searched refs:DenseMap (Results 501 - 525 of 1961) sorted by null

<<21222324252627282930>>

  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Scalar/
Reassociate.h 59 DenseMap<BasicBlock *, unsigned> RankMap;
60 DenseMap<AssertingVH<Value>, unsigned> ValueRankMap;
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 1 //===- llvm/unittest/ADT/DenseMapMap.cpp - DenseMap unit tests --*- C++ -*-===//
11 #include "llvm/ADT/DenseMap.h"
101 typedef ::testing::Types<DenseMap<uint32_t, uint32_t>,
102 DenseMap<uint32_t *, uint32_t *>,
103 DenseMap<CtorTester, CtorTester, CtorTesterMapInfo>,
365 // Test for the default minimum size of a DenseMap
370 // Formula from DenseMap::getMinBucketToReserveForEntries()
373 DenseMap<int, CountCopyAndMove> Map;
410 // DenseMap (see DefaultMinReservedSizeTest). 66 is a value just above the
413 DenseMap<int, CountCopyAndMove> Map(Size)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
DenseMap.h 1 //===- llvm/ADT/DenseMap.h - Dense probed hash table ------------*- C++ -*-===//
10 // This file defines the DenseMap class.
39 class DenseMap {
51 DenseMap(const DenseMap &other) {
56 explicit DenseMap(unsigned NumInitBuckets = 0) {
61 DenseMap(const InputIt &I, const InputIt &E) {
66 ~DenseMap() {
101 /// Grow the densemap so that it has at least Size buckets. Does not shrink
201 void swap(DenseMap& RHS)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineLICM.cpp 37 #include "llvm/ADT/DenseMap.h"
98 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap;
141 for (DenseMap<unsigned,std::vector<const MachineInstr*> >::iterator
203 bool CanCauseHighRegPressure(DenseMap<unsigned, int> &Cost);
258 DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 33 #include "llvm/ADT/DenseMap.h"
495 DenseMap<const BasicBlock *, BBState> &BBStates,
501 DenseMap<const BasicBlock *, BBState> &BBStates,
504 DenseMap<Value *, RRInfo> &Releases,
507 DenseMap<const BasicBlock *, BBState> &BBStates,
508 DenseMap<Value *, RRInfo> &Releases);
509 bool Visit(Function &F, DenseMap<const BasicBlock *, BBState> &BBStates,
511 DenseMap<Value *, RRInfo> &Releases);
515 DenseMap<Value *, RRInfo> &Releases,
519 PairUpRetainsAndReleases(DenseMap<const BasicBlock *, BBState> &BBStates
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
PostOrderCFGView.h 21 #include "llvm/ADT/DenseMap.h"
75 typedef llvm::DenseMap<const CFGBlock *, unsigned> BlockOrderTy;
  /external/clang/include/clang/Serialization/
GlobalModuleIndex.h 19 #include "llvm/ADT/DenseMap.h"
104 llvm::DenseMap<ModuleFile *, unsigned> ModulesByFile;
  /external/clang/lib/CodeGen/
CodeGenTypes.h 20 #include "llvm/ADT/DenseMap.h"
136 llvm::DenseMap<const ObjCInterfaceType*, llvm::Type *> InterfaceTypes;
139 llvm::DenseMap<const Type*, CGRecordLayout *> CGRecordLayouts;
142 llvm::DenseMap<const Type*, llvm::StructType *> RecordDeclTypes;
163 llvm::DenseMap<const Type *, llvm::Type *> TypeCache;
  /external/llvm/include/llvm/Analysis/
AssumptionCache.h 20 #include "llvm/ADT/DenseMap.h"
147 typedef DenseMap<FunctionCallbackVH, std::unique_ptr<AssumptionCache>,
DemandedBits.h 27 #include "llvm/ADT/DenseMap.h"
68 DenseMap<Instruction *, APInt> AliveBits;
  /external/llvm/include/llvm/CodeGen/
Analysis.h 18 #include "llvm/ADT/DenseMap.h"
123 DenseMap<const MachineBasicBlock *, int>
MachineModuleInfo.h 34 #include "llvm/ADT/DenseMap.h"
101 /// Return the entries from a DenseMap in a deterministic sorted orer.
103 static SymbolListTy getSortedStubs(DenseMap<MCSymbol*, StubValueTy>&);
133 DenseMap<MCSymbol*, SmallVector<unsigned, 4> > LPadToCallSiteMap;
137 DenseMap<MCSymbol*, unsigned> CallSiteMap;
357 void TidyLandingPads(DenseMap<MCSymbol*, uintptr_t> *LPMap = nullptr);
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
MappedBlockStream.h 14 #include "llvm/ADT/DenseMap.h"
62 mutable DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /external/llvm/include/llvm/Linker/
IRMover.h 45 typedef DenseMap<const Metadata *, TrackingMDRef> MDMapT;
  /external/llvm/include/llvm/Support/
Options.h 40 #include "llvm/ADT/DenseMap.h"
67 DenseMap<void *, cl::Option *> Options;
  /external/llvm/include/llvm/Transforms/
InstrProfiling.h 46 DenseMap<GlobalVariable *, PerFunctionProfileData> ProfileDataMap;
  /external/llvm/include/llvm/Transforms/Scalar/
GVN.h 19 #include "llvm/ADT/DenseMap.h"
71 DenseMap<Value *, uint32_t> valueNumbering;
72 DenseMap<Expression, uint32_t> expressionNumbering;
122 DenseMap<uint32_t, LeaderTableEntry> LeaderTable;
208 void dump(DenseMap<uint32_t, Value *> &d);
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.h 18 #include "llvm/ADT/DenseMap.h"
52 typedef DenseMap<MCSymbol *, PadRange> RangeMapType;
  /external/llvm/lib/CodeGen/
MachineLICM.cpp 20 #include "llvm/ADT/DenseMap.h"
111 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap;
186 bool CanCauseHighRegPressure(const DenseMap<unsigned, int> &Cost,
201 DenseMap<MachineDomTreeNode *, unsigned> &OpenChildren,
202 DenseMap<MachineDomTreeNode *, MachineDomTreeNode *> &ParentMap);
212 DenseMap<unsigned, int> calcRegisterCost(const MachineInstr *MI,
227 DenseMap<unsigned, std::vector<const MachineInstr *>>::iterator &CI);
599 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren,
600 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap) {
629 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> ParentMap
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.h 18 #include "llvm/ADT/DenseMap.h"
102 DenseMap<SDValue, SDValue> Locations;
  /external/llvm/lib/Target/Hexagon/
HexagonBitTracker.h 14 #include "llvm/ADT/DenseMap.h"
58 typedef DenseMap<unsigned, ExtType> RegExtMap;
  /external/llvm/tools/llvm-dwp/
DWPStringPool.h 4 #include "llvm/ADT/DenseMap.h"
35 DenseMap<const char *, uint32_t, CStrDenseMapInfo> Pool;
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineModuleInfo.h 43 #include "llvm/ADT/DenseMap.h"
90 static SymbolListTy GetSortedStubs(const DenseMap<MCSymbol*, StubValueTy>&);
124 DenseMap<MCSymbol*, SmallVector<unsigned, 4> > LPadToCallSiteMap;
128 DenseMap<MCSymbol*, unsigned> CallSiteMap;
326 void TidyLandingPads(DenseMap<MCSymbol*, uintptr_t> *LPMap = 0);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 19 #include "llvm/ADT/DenseMap.h"
53 DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
57 DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap;
73 DenseMap<DIE *, const MDNode *> ContainingTypeMap;
113 DenseMap<const MDNode *, DIEEntry *>::iterator I =
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXParamManager.h 18 #include "llvm/ADT/DenseMap.h"
42 DenseMap<unsigned, PTXParam> AllParams;

Completed in 1886 milliseconds

<<21222324252627282930>>