HomeSort by relevance Sort by last modified time
    Searched defs:DenseMapInfo (Results 76 - 91 of 91) sorted by null

1 2 34

  /external/swiftshader/third_party/LLVM/lib/TableGen/
Record.cpp 51 /// Specialize DenseMapInfo for TableGenStringKey.
54 template<> struct DenseMapInfo<TableGenStringKey> {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
GVN.cpp 117 template <> struct DenseMapInfo<Expression> {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Metadata.h 21 #include "llvm/ADT/DenseMapInfo.h"
678 // Specialize DenseMapInfo for AAMDNodes.
680 struct DenseMapInfo<AAMDNodes> {
682 return AAMDNodes(DenseMapInfo<MDNode *>::getEmptyKey(),
687 return AAMDNodes(DenseMapInfo<MDNode *>::getTombstoneKey(),
692 return DenseMapInfo<MDNode *>::getHashValue(Val.TBAA) ^
693 DenseMapInfo<MDNode *>::getHashValue(Val.Scope) ^
694 DenseMapInfo<MDNode *>::getHashValue(Val.NoAlias);
    [all...]
ModuleSummaryIndex.h 209 template <> struct DenseMapInfo<ValueInfo> {
597 template <> struct DenseMapInfo<FunctionSummary::VFuncId> {
611 template <> struct DenseMapInfo<FunctionSummary::ConstVCall> {
622 return DenseMapInfo<FunctionSummary::VFuncId>::isEqual(L.VFunc, R.VFunc) &&
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 798 /// Provide DenseMapInfo for CounterExpression
799 template<> struct DenseMapInfo<coverage::CounterExpression> {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
MemorySSA.cpp 16 #include "llvm/ADT/DenseMapInfo.h"
177 template <> struct DenseMapInfo<MemoryLocOrCall> {
179 return MemoryLocOrCall(DenseMapInfo<MemoryLocation>::getEmptyKey());
183 return MemoryLocOrCall(DenseMapInfo<MemoryLocation>::getTombstoneKey());
190 DenseMapInfo<MemoryLocation>::getHashValue(MLOC.getLoc()));
193 hash_combine(MLOC.IsCall, DenseMapInfo<const Value *>::getHashValue(
197 hash = hash_combine(hash, DenseMapInfo<const Value *>::getHashValue(Arg));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCDwarf.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp 47 #include "llvm/ADT/DenseMapInfo.h"
249 template <> struct DenseMapInfo<VTableSlot> {
251 return {DenseMapInfo<Metadata *>::getEmptyKey(),
252 DenseMapInfo<uint64_t>::getEmptyKey()};
255 return {DenseMapInfo<Metadata *>::getTombstoneKey(),
256 DenseMapInfo<uint64_t>::getTombstoneKey()};
259 return DenseMapInfo<Metadata *>::getHashValue(I.TypeID) ^
260 DenseMapInfo<uint64_t>::getHashValue(I.ByteOffset);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
GVN.cpp 135 template <> struct DenseMapInfo<GVN::Expression> {
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Metadata.h 21 #include "llvm/ADT/DenseMapInfo.h"
648 // Specialize DenseMapInfo for AAMDNodes.
650 struct DenseMapInfo<AAMDNodes> {
652 return AAMDNodes(DenseMapInfo<MDNode *>::getEmptyKey(),
657 return AAMDNodes(DenseMapInfo<MDNode *>::getTombstoneKey(),
662 return DenseMapInfo<MDNode *>::getHashValue(Val.TBAA) ^
663 DenseMapInfo<MDNode *>::getHashValue(Val.Scope) ^
664 DenseMapInfo<MDNode *>::getHashValue(Val.NoAlias);
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 50 template <typename T> struct DenseMapInfo;
106 friend struct DenseMapInfo<SDValue>;
192 template<> struct DenseMapInfo<SDValue> {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 60 template <typename T> struct DenseMapInfo;
125 friend struct DenseMapInfo<SDValue>;
213 template<> struct DenseMapInfo<SDValue> {
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 492 template <> struct DenseMapInfo<ObjCSummaryKey> {
494 return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getEmptyKey(),
495 DenseMapInfo<Selector>::getEmptyKey());
499 return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getTombstoneKey(),
500 DenseMapInfo<Selector>::getTombstoneKey());
505 return DenseMapInfo<PairTy>::getHashValue(PairTy(V.getIdentifier(),
    [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h     [all...]

Completed in 1136 milliseconds

1 2 34