HomeSort by relevance Sort by last modified time
    Searched refs:ZExt (Results 1 - 25 of 82) 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 540 if (CallerAttrs.contains(Attribute::ZExt)) {
541 if (!CalleeAttrs.contains(Attribute::ZExt))
545 CallerAttrs.removeAttribute(Attribute::ZExt);
546 CalleeAttrs.removeAttribute(Attribute::ZExt);
BasicTargetTransformInfo.cpp 380 if (Opcode == Instruction::ZExt &&
411 // Assume that Zext is done using AND.
412 if (Opcode == Instruction::ZExt)
TargetLoweringBase.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 36 ZExt, // The value is zero extended in the location.
146 return (HTP == AExt || HTP == SExt || HTP == ZExt);
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 566 F->addAttribute(AttributeSet::ReturnIndex, Attribute::ZExt);
567 F->addAttribute(1, Attribute::ZExt);
568 F->addAttribute(2, Attribute::ZExt);
574 F->addAttribute(AttributeSet::ReturnIndex, Attribute::ZExt);
581 F->addAttribute(1, Attribute::ZExt);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 108 case Instruction::ZExt:
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 223 case Instruction::SExt: case Instruction::ZExt: case Instruction::Trunc:
  /external/llvm/lib/IR/
Instructions.cpp 399 false /*ZExt*/);
    [all...]
ConstantFold.cpp 296 case Instruction::ZExt: {
513 // zext(undef) = 0, because the top bits will be zero.
516 if (opc == Instruction::ZExt || opc == Instruction::SExt ||
662 case Instruction::ZExt:
666 CI->getValue().zext(BitWidth));
    [all...]
Attributes.cpp 234 if (hasAttribute(Attribute::ZExt))
361 case Attribute::ZExt: return 1 << 0;
    [all...]
Instruction.cpp 231 case ZExt: return "zext";
  /external/llvm/include/llvm/IR/
Attributes.h 113 ZExt, ///< Zero extended before/after call
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 630 case Instruction::ZExt:
715 case Instruction::ZExt:
792 case Instruction::ZExt:
    [all...]
InstCombineCasts.cpp 166 C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/);
195 case Instruction::ZExt:
204 // This also handles the case of zext(trunc(x)) -> zext(x).
411 case Instruction::ZExt:
475 // Transform trunc(lshr (zext A), Cst) to eliminate one type conversion.
511 /// transformZExtICmp - Transform (zext icmp) to bitwise / integer operations
515 // If we are just checking for a icmp eq of a single bit and zext'ing it
521 // zext (x <s 0) to i32 --> x>>u31 true if signbit set.
522 // zext (x >s -1) to i32 --> (x>>u31)^1 true if signbit clear
    [all...]
  /external/llvm/lib/Analysis/
CostModel.cpp 443 case Instruction::ZExt:
  /external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 223 case Instruction::ZExt:
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 313 LocInfo = CCValAssign::ZExt;
475 else if (VA.getLocInfo() == CCValAssign::ZExt)
614 case CCValAssign::ZExt:
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 225 case Instruction::ZExt:
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 495 HANDLE_ATTR(ZExt);
845 case Instruction::ZExt: Out << "Instruction::ZExt"; break;
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 126 LocInfo = CCValAssign::ZExt;
164 LocInfo = CCValAssign::ZExt;
239 LocInfo = CCValAssign::ZExt;
480 // Loc info must be one of Full, SExt, ZExt, or AExt.
487 case CCValAssign::ZExt:
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp     [all...]
  /external/lldb/source/Expression/
IRInterpreter.cpp 523 case Instruction::ZExt:
808 case Instruction::ZExt:
    [all...]

Completed in 823 milliseconds

1 2 3 4