OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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 {
147
return
FoldingSetNodeIDRef
(Bits.data(), Bits.size()).ComputeHash();
153
return *this ==
FoldingSetNodeIDRef
(RHS.Bits.data(), RHS.Bits.size());
158
bool FoldingSetNodeID::operator==(
FoldingSetNodeIDRef
RHS) const
[
all
...]
/external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h
42
SCEVConstant(const
FoldingSetNodeIDRef
ID, ConstantInt *v) :
64
SCEVCastExpr(const
FoldingSetNodeIDRef
ID,
86
SCEVTruncateExpr(const
FoldingSetNodeIDRef
ID,
103
SCEVZeroExtendExpr(const
FoldingSetNodeIDRef
ID,
120
SCEVSignExtendExpr(const
FoldingSetNodeIDRef
ID,
144
SCEVNAryExpr(const
FoldingSetNodeIDRef
ID,
185
SCEVCommutativeExpr(const
FoldingSetNodeIDRef
ID,
211
SCEVAddExpr(const
FoldingSetNodeIDRef
ID,
236
SCEVMulExpr(const
FoldingSetNodeIDRef
ID,
257
SCEVUDivExpr(const
FoldingSetNodeIDRef
ID, const SCEV *lhs, const SCEV *rhs
[
all
...]
ScalarEvolution.h
69
FoldingSetNodeIDRef
FastID;
108
explicit SCEV(const
FoldingSetNodeIDRef
ID, unsigned SCEVTy) :
179
FoldingSetNodeIDRef
FastID;
191
SCEVPredicate(const
FoldingSetNodeIDRef
ID, SCEVPredicateKind Kind);
251
SCEVEqualPredicate(const
FoldingSetNodeIDRef
ID, const SCEVUnknown *LHS,
[
all
...]
/external/llvm/include/llvm/ADT/
FoldingSet.h
262
///
FoldingSetNodeIDRef
- This class describes a reference to an interned
267
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
49
FoldingSetNodeIDRef
FastID;
56
SDVTListNode(const
FoldingSetNodeIDRef
ID, const EVT *VT, unsigned int Num) :
[
all
...]
/external/llvm/lib/Analysis/
ScalarEvolution.cpp
301
SCEV(
FoldingSetNodeIDRef
(), scCouldNotCompute) {}
328
SCEVCastExpr::SCEVCastExpr(const
FoldingSetNodeIDRef
ID,
332
SCEVTruncateExpr::SCEVTruncateExpr(const
FoldingSetNodeIDRef
ID,
340
SCEVZeroExtendExpr::SCEVZeroExtendExpr(const
FoldingSetNodeIDRef
ID,
348
SCEVSignExtendExpr::SCEVSignExtendExpr(const
FoldingSetNodeIDRef
ID,
[
all
...]
Completed in 388 milliseconds