Searched refs:Log2 (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.cpp507 int32_t Log2 = ImmValue.exactLogBase2(); local
509 if (Log2 != -1) {
510 Imm = CurDAG->getTargetConstant(Log2, EltTy);
592 int32_t Log2 = (~ImmValue).exactLogBase2(); local
594 if (Log2 != -1) {
595 Imm = CurDAG->getTargetConstant(Log2, EltTy);
H A DMipsSEISelLowering.cpp478 unsigned Log2 = Log2IfPositive; local
480 if ((Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT && Log2 >= ExtendTySize) ||
481 Log2 == ExtendTySize) {
/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp294 static void detectLog2OfHalf(Value *&Op, Value *&Y, IntrinsicInst *&Log2) { argument
304 Log2 = II;
483 IntrinsicInst *Log2; local
484 detectLog2OfHalf(Op0, OpY, Log2);
488 detectLog2OfHalf(Op1, OpY, Log2);
496 Builder->SetFastMathFlags(Log2->getFastMathFlags());
497 Log2->setArgOperand(0, OpY);
498 Value *FMulVal = Builder->CreateFMul(OpX, Log2);
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp771 int Log2 = NewMask.exactLogBase2(); local
772 if (Log2 >= 0) {
775 TLO.DAG.getConstant(BitWidth - 1 - Log2,

Completed in 116 milliseconds