Home
last modified time | relevance | path

Searched refs:ValueEntry (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Scalar/
H A DReassociate.h46 struct ValueEntry { struct
50 ValueEntry(unsigned R, Value *O) : Rank(R), Op(O) {} in ValueEntry() function
53 inline bool operator<(const ValueEntry &LHS, const ValueEntry &RHS) {
105 SmallVectorImpl<reassociate::ValueEntry> &Ops);
107 SmallVectorImpl<reassociate::ValueEntry> &Ops);
109 SmallVectorImpl<reassociate::ValueEntry> &Ops);
111 SmallVectorImpl<reassociate::ValueEntry> &Ops);
120 SmallVectorImpl<reassociate::ValueEntry> &Ops);
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp75 static void PrintOps(Instruction *I, const SmallVectorImpl<ValueEntry> &Ops) { in PrintOps()
654 SmallVectorImpl<ValueEntry> &Ops) { in RewriteExprTree()
1107 static unsigned FindInOperandList(const SmallVectorImpl<ValueEntry> &Ops, in FindInOperandList()
1152 SmallVector<ValueEntry, 8> Factors; in RemoveFactorFromExpression()
1157 ValueEntry(getRank(E.first), E.first)); in RemoveFactorFromExpression()
1236 SmallVectorImpl<ValueEntry> &Ops) { in OptimizeAndOrXor()
1416 SmallVectorImpl<ValueEntry> &Ops) { in OptimizeXor()
1514 ValueEntry VE(getRank(O.getValue()), O.getValue()); in OptimizeXor()
1519 ValueEntry VE(getRank(C), C); in OptimizeXor()
1538 SmallVectorImpl<ValueEntry> &Ops) { in OptimizeAdd()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp1469 auto &ValueEntry = Memoizer[V]; in getValueBits() local
1470 if (ValueEntry) in getValueBits()
1471 return std::make_pair(ValueEntry->first, &ValueEntry->second); in getValueBits()
1472 ValueEntry.reset(new ValueBitsMemoizedValue()); in getValueBits()
1473 bool &Interesting = ValueEntry->first; in getValueBits()
1474 SmallVector<ValueBit, 64> &Bits = ValueEntry->second; in getValueBits()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp2008 using ValueEntry = std::pair<SDValue, size_t>; in LowerBUILD_VECTOR() typedef
2009 SmallVector<ValueEntry, 16> SplatValueCounts; in LowerBUILD_VECTOR()