HomeSort by relevance Sort by last modified time
    Searched refs:ZExt (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/llvm/unittests/IR/
AttributesTest.cpp 25 AttributeSet::get(C, 1, Attribute::ZExt),
38 AttributeSet::get(C, 2, Attribute::ZExt),
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 28 static const uint64_t ZExt = 1ULL<<0; ///< Zero extended
63 bool isZExt() const { return Flags & ZExt; }
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 132 Value *FastQuotientV = FastBuilder.CreateCast(Instruction::ZExt,
135 Value *FastRemainderV = FastBuilder.CreateCast(Instruction::ZExt,
  /external/llvm/lib/CodeGen/
Analysis.cpp 549 if (CallerAttrs.contains(Attribute::ZExt)) {
550 if (!CalleeAttrs.contains(Attribute::ZExt))
554 CallerAttrs.removeAttribute(Attribute::ZExt);
555 CalleeAttrs.removeAttribute(Attribute::ZExt);
TargetLoweringBase.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 168 case Instruction::ZExt:
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 613 F->addAttribute(AttributeSet::ReturnIndex, Attribute::ZExt);
614 F->addAttribute(1, Attribute::ZExt);
615 F->addAttribute(2, Attribute::ZExt);
621 F->addAttribute(AttributeSet::ReturnIndex, Attribute::ZExt);
622 F->addAttribute(1, Attribute::ZExt);
623 F->addAttribute(2, Attribute::ZExt);
630 F->addAttribute(AttributeSet::ReturnIndex, Attribute::ZExt);
637 F->addAttribute(1, Attribute::ZExt);
    [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 36 ZExt, // The value is zero extended in the location.
154 return (HTP == AExt || HTP == SExt || HTP == ZExt);
BasicTTIImpl.h 214 case Instruction::ZExt: {
368 if (Opcode == Instruction::ZExt &&
400 // Assume that Zext is done using AND.
401 if (Opcode == Instruction::ZExt)
FastISel.h 105 RetZExt = Call.paramHasAttr(0, Attribute::ZExt);
129 RetZExt = Call.paramHasAttr(0, Attribute::ZExt);
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 109 case Instruction::ZExt:
  /external/llvm/lib/IR/
Instructions.cpp 412 false /*ZExt*/);
    [all...]
ConstantFold.cpp 310 case Instruction::ZExt: {
527 // zext(undef) = 0, because the top bits will be zero.
530 if (opc == Instruction::ZExt || opc == Instruction::SExt ||
685 case Instruction::ZExt:
689 CI->getValue().zext(BitWidth));
    [all...]
Attributes.cpp 261 if (hasAttribute(Attribute::ZExt))
397 case Attribute::ZExt: return 1 << 0;
    [all...]
Instruction.cpp 225 case ZExt: return "zext";
  /external/llvm/include/llvm/IR/
Attributes.h 115 ZExt, ///< Zero extended before/after call
Operator.h 361 class ZExtOperator : public ConcreteOperator<Operator, Instruction::ZExt> {};
  /external/llvm/lib/Transforms/Scalar/
BDCE.cpp 239 AB = AOut.zext(BitWidth);
241 case Instruction::ZExt:
LoopRotation.cpp 259 case Instruction::ZExt:
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 163 C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/);
192 case Instruction::ZExt:
201 // This also handles the case of zext(trunc(x)) -> zext(x).
406 case Instruction::ZExt:
470 // Transform trunc(lshr (zext A), Cst) to eliminate one type conversion.
506 /// transformZExtICmp - Transform (zext icmp) to bitwise / integer operations
510 // If we are just checking for a icmp eq of a single bit and zext'ing it
516 // zext (x <s 0) to i32 --> x>>u31 true if signbit set.
517 // zext (x >s -1) to i32 --> (x>>u31)^1 true if signbit clear
    [all...]
InstCombineVectorOps.cpp 631 case Instruction::ZExt:
716 case Instruction::ZExt:
794 case Instruction::ZExt:
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 671 // Fold the zext or sext when it won't become a noop.
754 // Fold the zext or sext when it won't become a noop.
805 case Instruction::ZExt: {
810 // Fold the zext or sext when it won't become a noop.
    [all...]
  /external/llvm/lib/Analysis/
CostModel.cpp 444 case Instruction::ZExt:
  /external/llvm/lib/Target/BPF/
BPFISelLowering.cpp 231 else if (VA.getLocInfo() == CCValAssign::ZExt)
324 case CCValAssign::ZExt:
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 316 LocInfo = CCValAssign::ZExt;
478 else if (VA.getLocInfo() == CCValAssign::ZExt)
617 case CCValAssign::ZExt:
    [all...]

Completed in 3301 milliseconds

1 2 3 4