Searched defs:TLO (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1213 TargetLoweringOpt &TLO,
1229 TLO.DAG.ComputeMaskedBits(Op, KnownZero, KnownOne, Depth);
1238 return TLO.CombineTo(Op, TLO.DAG.getUNDEF(Op.getValueType()));
1259 TLO.DAG.ComputeMaskedBits(Op.getOperand(0), LHSZero, LHSOne, Depth);
1262 return TLO.CombineTo(Op, Op.getOperand(0));
1265 if (TLO.ShrinkDemandedConstant(Op, ~LHSZero & NewMask))
1270 KnownOne, TLO, Depth+1))
1274 KnownZero2, KnownOne2, TLO, Depth+1))
1281 return TLO
1209 SimplifyDemandedBits(SDValue Op, const APInt &DemandedMask, APInt &KnownZero, APInt &KnownOne, TargetLoweringOpt &TLO, unsigned Depth) const argument
[all...]
H A DDAGCombiner.cpp129 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
372 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { argument
373 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
649 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) { argument
653 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &DeadNodes);
656 AddToWorkList(TLO.New.getNode());
657 AddUsersToWorkList(TLO.New.getNode());
662 if (TLO.Old.getNode()->use_empty()) {
663 removeFromWorkList(TLO
[all...]

Completed in 40 milliseconds