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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 810 const APInt *Op0C;
811 if (match(Op0BO->getOperand(1), m_APInt(Op0C))) {
829 match(Op0BO->getOperand(0), m_APInt(Op0C))) {
InstCombineAddSub.cpp 1869 const APInt *Op0C;
1870 if (match(Op0, m_APInt(Op0C)) && Op0C->isMask()) {
1874 if ((*Op0C | RHSKnown.Zero).isAllOnesValue())
InstCombineCalls.cpp 2139 ConstantInt *Op0C = dyn_cast<ConstantInt>(Call.getOperand(0));
2144 if ((Op0C && Op0C->isNullValue()) || (Op1C && Op1C->isNullValue()))
2147 if (isMallocLikeFn(&Call, TLI) && Op0C) {
2151 Call.getContext(), Op0C->getZExtValue()));
2155 Call.getContext(), Op0C->getZExtValue()));
2162 if (Op0C && Op0C->getValue().ult(llvm::Value::MaximumAlignment) &&
2164 uint64_t AlignmentVal = Op0C->getZExtValue();
2176 } else if (isCallocLikeFn(&Call, TLI) && Op0C && Op1C)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 3120 ConstantFP *Op0C = dyn_cast<ConstantFP>(Call->getArgOperand(0));
3122 if (Op0C && Op1C) {
3123 const APFloat &Op0 = Op0C->getValueAPF();
3132 Type *Ty = Op0C->getType();

Completed in 25 milliseconds