HomeSort by relevance Sort by last modified time
    Searched refs:FoldingSetNodeIDRef (Results 1 - 5 of 5) 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 41 SCEVConstant(const FoldingSetNodeIDRef ID, ConstantInt *v) :
62 SCEVCastExpr(const FoldingSetNodeIDRef ID,
84 SCEVTruncateExpr(const FoldingSetNodeIDRef ID,
101 SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID,
118 SCEVSignExtendExpr(const FoldingSetNodeIDRef ID,
142 SCEVNAryExpr(const FoldingSetNodeIDRef ID,
179 SCEVCommutativeExpr(const FoldingSetNodeIDRef ID,
205 SCEVAddExpr(const FoldingSetNodeIDRef ID,
230 SCEVMulExpr(const FoldingSetNodeIDRef ID,
251 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(0), 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;
283 bool operator<(FoldingSetNodeIDRef) const;
302 FoldingSetNodeID(FoldingSetNodeIDRef Ref)
332 bool operator==(const FoldingSetNodeIDRef RHS) const;
337 bool operator<(const FoldingSetNodeIDRef RHS) const
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 308 SCEV(FoldingSetNodeIDRef(), scCouldNotCompute) {}
335 SCEVCastExpr::SCEVCastExpr(const FoldingSetNodeIDRef ID,
339 SCEVTruncateExpr::SCEVTruncateExpr(const FoldingSetNodeIDRef ID,
347 SCEVZeroExtendExpr::SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID,
355 SCEVSignExtendExpr::SCEVSignExtendExpr(const FoldingSetNodeIDRef ID,
    [all...]

Completed in 2079 milliseconds