/external/llvm/lib/Analysis/ |
ValueTracking.cpp | 60 llvm::ComputeMaskedBits(Op1, KnownZero2, KnownOne2, TD, Depth+1); 81 llvm::ComputeMaskedBits(Op0, LHSKnownZero, LHSKnownOne, TD, Depth+1); 86 llvm::ComputeMaskedBits(Op1, KnownZero2, KnownOne2, TD, Depth+1); 137 ComputeMaskedBits(Op1, KnownZero, KnownOne, TD, Depth+1); 138 ComputeMaskedBits(Op0, KnownZero2, KnownOne2, TD, Depth+1); 213 /// ComputeMaskedBits - Determine which of the bits are known to be either zero 228 void llvm::ComputeMaskedBits(Value *V, APInt &KnownZero, APInt &KnownOne, 305 ComputeMaskedBits(GA->getAliasee(), KnownZero, KnownOne, TD, Depth+1); 346 ComputeMaskedBits(I->getOperand(1), KnownZero, KnownOne, TD, Depth+1); 347 ComputeMaskedBits(I->getOperand(0), KnownZero2, KnownOne2, TD, Depth+1) [all...] |
ConstantFolding.cpp | 557 ComputeMaskedBits(Op0, KnownZero0, KnownOne0, DL); 558 ComputeMaskedBits(Op1, KnownZero1, KnownOne1, DL); [all...] |
Lint.cpp | 513 ComputeMaskedBits(V, KnownZero, KnownOne, TD);
|
ScalarEvolution.cpp | [all...] |
/external/llvm/include/llvm/Analysis/ |
ValueTracking.h | 29 /// ComputeMaskedBits - Determine which of the bits specified in Mask are 39 void ComputeMaskedBits(Value *V, APInt &KnownZero, APInt &KnownOne, 44 /// one. Convenience wrapper around ComputeMaskedBits.
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineSimplifyDemanded.cpp | 146 ComputeMaskedBits(V, KnownZero, KnownOne, Depth); 160 ComputeMaskedBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1); 161 ComputeMaskedBits(I->getOperand(0), LHSKnownZero, LHSKnownOne, Depth+1); 182 ComputeMaskedBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1); 183 ComputeMaskedBits(I->getOperand(0), LHSKnownZero, LHSKnownOne, Depth+1); 207 ComputeMaskedBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1); 208 ComputeMaskedBits(I->getOperand(0), LHSKnownZero, LHSKnownOne, Depth+1); 219 ComputeMaskedBits(I, KnownZero, KnownOne, Depth); 232 ComputeMaskedBits(I, KnownZero, KnownOne, Depth); 581 // Otherwise just hand the sub off to ComputeMaskedBits to fill i [all...] |
InstCombine.h | 302 void ComputeMaskedBits(Value *V, APInt &KnownZero, 304 return llvm::ComputeMaskedBits(V, KnownZero, KnownOne, TD, Depth);
|
InstCombineCalls.cpp | 323 ComputeMaskedBits(II->getArgOperand(0), KnownZero, KnownOne); 341 ComputeMaskedBits(II->getArgOperand(0), KnownZero, KnownOne); 356 ComputeMaskedBits(LHS, LHSKnownZero, LHSKnownOne); 363 ComputeMaskedBits(RHS, RHSKnownZero, RHSKnownOne); 450 ComputeMaskedBits(LHS, LHSKnownZero, LHSKnownOne); 453 ComputeMaskedBits(RHS, RHSKnownZero, RHSKnownOne); [all...] |
InstCombineCasts.cpp | 553 ComputeMaskedBits(ICI->getOperand(0), KnownZero, KnownOne); 601 ComputeMaskedBits(LHS, KnownZeroLHS, KnownOneLHS); 602 ComputeMaskedBits(RHS, KnownZeroRHS, KnownOneRHS); [all...] |
InstCombineAddSub.cpp | 973 ComputeMaskedBits(XorLHS, LHSKnownZero, LHSKnownOne); 1039 ComputeMaskedBits(LHS, LHSKnownZero, LHSKnownOne); 1043 ComputeMaskedBits(RHS, RHSKnownZero, RHSKnownOne); [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | [all...] |
TargetLowering.cpp | 371 TLO.DAG.ComputeMaskedBits(Op, KnownZero, KnownOne, Depth); 401 TLO.DAG.ComputeMaskedBits(Op.getOperand(0), LHSZero, LHSOne, Depth); [all...] |
SelectionDAGISel.cpp | 570 CurDAG->ComputeMaskedBits(Src, KnownZero, KnownOne); [all...] |
DAGCombiner.cpp | [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelDAGToDAG.cpp | 613 CurDAG->ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne); 673 CurDAG->ComputeMaskedBits(Input, KnownZero, KnownOne); 698 CurDAG->ComputeMaskedBits(Input, KnownZero, KnownOne); [all...] |
SystemZISelLowering.cpp | [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
AMDILISelLowering.cpp | 290 DAG.ComputeMaskedBits( 296 DAG.ComputeMaskedBits(
|
/external/llvm/lib/Target/R600/ |
AMDILISelLowering.cpp | 264 DAG.ComputeMaskedBits( 270 DAG.ComputeMaskedBits(
|
AMDGPUISelDAGToDAG.cpp | 791 CurDAG->ComputeMaskedBits(Op, KnownZero, KnownOne);
|
/external/mesa3d/src/gallium/drivers/radeon/ |
AMDILISelLowering.cpp | 290 DAG.ComputeMaskedBits( 296 DAG.ComputeMaskedBits(
|
/external/llvm/lib/Target/XCore/ |
XCoreISelLowering.cpp | 369 DAG.ComputeMaskedBits(Value, KnownZero, KnownOne); [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCISelDAGToDAG.cpp | 406 CurDAG->ComputeMaskedBits(Op0, LKZ, LKO); 407 CurDAG->ComputeMaskedBits(Op1, RKZ, RKO); [all...] |
/external/llvm/lib/Transforms/Utils/ |
Local.cpp | [all...] |
/external/llvm/lib/Target/Sparc/ |
SparcISelLowering.cpp | [all...] |
/external/llvm/include/llvm/CodeGen/ |
SelectionDAG.h | [all...] |