HomeSort by relevance Sort by last modified time
    Searched defs:COp (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Analysis/
LoopUnrollAnalyzer.cpp 141 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
142 if (!COp)
143 COp = SimplifiedValues.lookup(I.getOperand(0));
150 if (COp && CastInst::castIsValid(I.getOpcode(), COp, I.getType())) {
152 ConstantExpr::getCast(I.getOpcode(), COp, I.getType())) {
InlineCost.cpp 432 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
433 if (!COp)
434 COp = SimplifiedValues.lookup(I.getOperand(0));
435 if (COp)
436 if (Constant *C = ConstantExpr::getBitCast(COp, I.getType())) {
460 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
461 if (!COp)
462 COp = SimplifiedValues.lookup(I.getOperand(0));
463 if (COp)
464 if (Constant *C = ConstantExpr::getPtrToInt(COp, I.getType()))
    [all...]
  /external/llvm/lib/Target/X86/
X86ShuffleDecodeConstantPool.cpp 62 Constant *COp = C->getAggregateElement(i);
63 if (!COp) {
66 } else if (isa<UndefValue>(COp)) {
71 APInt APElt = cast<ConstantInt>(COp)->getValue();
139 Constant *COp = C->getAggregateElement(i * Factor);
140 if (!COp) {
143 } else if (isa<UndefValue>(COp)) {
148 uint64_t Element = cast<ConstantInt>(COp)->getZExtValue();
191 Constant *COp = C->getAggregateElement(i * Factor);
192 if (!COp) {
    [all...]
X86MCInstLower.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopRerollPass.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 383 auto *COp = dyn_cast_or_null<ConstantInt>(CElt);
384 if (!COp)
390 APInt ShiftVal = COp->getValue();
460 auto *COp = C->getAggregateElement(I);
461 if (!COp)
463 if (isa<UndefValue>(COp))
466 auto *CInt = dyn_cast<ConstantInt>(COp);
467 auto *CFp = dyn_cast<ConstantFP>(COp);
744 Constant *COp = V->getAggregateElement(I);
745 if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp))
    [all...]

Completed in 132 milliseconds