HomeSort by: relevance | last modified time | path
    Searched defs:Fshl (Results 1 - 1 of 1) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 1080 case Intrinsic::fshl:
1102 // fshr X, Y, C --> fshl X, Y, (BitWidth - C)
1105 Function *Fshl = Intrinsic::getDeclaration(Mod, Intrinsic::fshl, Ty);
1106 return CallInst::Create(Fshl, { Op0, Op1, LeftShiftC });
1108 assert(IID == Intrinsic::fshl &&
1111 // fshl(X, 0, C) --> shl X, C
1112 // fshl(X, undef, C) --> shl X, C
1116 // fshl(0, X, C) --> lshr X, (BW-C)
1117 // fshl(undef, X, C) --> lshr X, (BW-C
    [all...]

Completed in 99 milliseconds