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

  /external/llvm/lib/Target/X86/Utils/
X86ShuffleDecode.cpp 325 Constant *COp = C->getAggregateElement(i);
326 if (!COp) {
329 } else if (isa<UndefValue>(COp)) {
333 uint64_t Element = cast<ConstantInt>(COp)->getZExtValue();
418 Constant *COp = CV->getOperand(i);
419 if (isa<UndefValue>(COp)) {
423 uint64_t Element = cast<ConstantInt>(COp)->getZExtValue();
560 Constant *COp = C->getAggregateElement(i);
561 if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp)))
    [all...]
  /external/llvm/lib/Analysis/
InlineCost.cpp 386 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
387 if (!COp)
388 COp = SimplifiedValues.lookup(I.getOperand(0));
389 if (COp)
390 if (Constant *C = ConstantExpr::getBitCast(COp, I.getType())) {
414 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
415 if (!COp)
416 COp = SimplifiedValues.lookup(I.getOperand(0));
417 if (COp)
418 if (Constant *C = ConstantExpr::getPtrToInt(COp, I.getType()))
    [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 443 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
444 if (!COp)
445 COp = SimplifiedValues.lookup(I.getOperand(0));
446 if (COp)
448 ConstantExpr::getCast(I.getOpcode(), COp, I.getType())) {
    [all...]

Completed in 2780 milliseconds