HomeSort by relevance Sort by last modified time
    Searched refs:FoldingSetNodeIDRef (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Support/
FoldingSet.cpp 26 // FoldingSetNodeIDRef Implementation
28 /// ComputeHash - Compute a strong hash value for this FoldingSetNodeIDRef,
30 unsigned FoldingSetNodeIDRef::ComputeHash() const {
34 bool FoldingSetNodeIDRef::operator==(FoldingSetNodeIDRef RHS) const {
41 bool FoldingSetNodeIDRef::operator<(FoldingSetNodeIDRef RHS) const {
146 return FoldingSetNodeIDRef(Bits.data(), Bits.size()).ComputeHash();
152 return *this == FoldingSetNodeIDRef(RHS.Bits.data(), RHS.Bits.size());
157 bool FoldingSetNodeID::operator==(FoldingSetNodeIDRef RHS) const
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 42 SCEVConstant(const FoldingSetNodeIDRef ID, ConstantInt *v) :
63 SCEVCastExpr(const FoldingSetNodeIDRef ID,
85 SCEVTruncateExpr(const FoldingSetNodeIDRef ID,
102 SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID,
119 SCEVSignExtendExpr(const FoldingSetNodeIDRef ID,
143 SCEVNAryExpr(const FoldingSetNodeIDRef ID,
184 SCEVCommutativeExpr(const FoldingSetNodeIDRef ID,
210 SCEVAddExpr(const FoldingSetNodeIDRef ID,
235 SCEVMulExpr(const FoldingSetNodeIDRef ID,
256 SCEVUDivExpr(const FoldingSetNodeIDRef ID, const SCEV *lhs, const SCEV *rhs
    [all...]
ScalarEvolution.h 62 FoldingSetNodeIDRef FastID;
100 explicit SCEV(const FoldingSetNodeIDRef ID, unsigned SCEVTy) :
    [all...]
  /external/llvm/include/llvm/ADT/
FoldingSet.h 263 /// FoldingSetNodeIDRef - This class describes a reference to an interned
268 class FoldingSetNodeIDRef {
272 FoldingSetNodeIDRef() : Data(nullptr), Size(0) {}
273 FoldingSetNodeIDRef(const unsigned *D, size_t S) : Data(D), Size(S) {}
275 /// ComputeHash - Compute a strong hash value for this FoldingSetNodeIDRef,
279 bool operator==(FoldingSetNodeIDRef) const;
281 bool operator!=(FoldingSetNodeIDRef RHS) const { return !(*this == RHS); }
285 bool operator<(FoldingSetNodeIDRef) const;
304 FoldingSetNodeID(FoldingSetNodeIDRef Ref)
334 bool operator==(const FoldingSetNodeIDRef RHS) const
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 46 FoldingSetNodeIDRef FastID;
52 SDVTListNode(const FoldingSetNodeIDRef ID, const EVT *VT, unsigned int Num) :
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 306 SCEV(FoldingSetNodeIDRef(), scCouldNotCompute) {}
333 SCEVCastExpr::SCEVCastExpr(const FoldingSetNodeIDRef ID,
337 SCEVTruncateExpr::SCEVTruncateExpr(const FoldingSetNodeIDRef ID,
345 SCEVZeroExtendExpr::SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID,
353 SCEVSignExtendExpr::SCEVSignExtendExpr(const FoldingSetNodeIDRef ID,
    [all...]

Completed in 424 milliseconds