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

1 2 3 4 5 6 7 8 91011

  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 54 if (isUInt<32>(Imm.getZExtValue()))
57 if ((Imm.getZExtValue() & 0xffffffff) == 0)
105 if (isUInt<32>(Imm.getZExtValue()))
113 if (isUInt<32>(Imm.getZExtValue()))
131 if (isUInt<32>(Imm.getZExtValue()))
134 if ((Imm.getZExtValue() & 0xffffffff) == 0)
144 if (isUInt<32>(~Imm.getZExtValue()))
147 if ((Imm.getZExtValue() & 0xffffffff) == 0xffffffff)
152 if (TII->isRxSBGMask(Imm.getZExtValue(), BitSize, Start, End))
206 if (isUInt<32>(Imm.getZExtValue()))
    [all...]
SystemZISelDAGToDAG.cpp 701 uint64_t AndMask = MaskNode->getZExtValue();
711 if (Used != (AndMask | InsertMask | KnownZero.getZExtValue()))
753 uint64_t Mask = MaskNode->getZExtValue();
760 Mask |= KnownZero.getZExtValue();
777 uint64_t Mask = ~MaskNode->getZExtValue();
784 Mask &= ~KnownOne.getZExtValue();
800 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63;
838 uint64_t Count = CountNode->getZExtValue();
865 uint64_t Count = CountNode->getZExtValue();
    [all...]
SystemZSelectionDAGInfo.cpp 60 Chain, Dst, Src, CSize->getZExtValue());
91 uint64_t Bytes = CSize->getZExtValue();
99 uint64_t ByteVal = CByte->getZExtValue();
135 if (CByte && CByte->getZExtValue() == 0)
192 uint64_t Bytes = CSize->getZExtValue();
  /external/llvm/lib/Analysis/
MemoryLocation.cpp 70 Size = C->getValue().getZExtValue();
83 Size = C->getValue().getZExtValue();
130 return MemoryLocation(Arg, LenCI->getZExtValue(), AATags);
138 Arg, cast<ConstantInt>(II->getArgOperand(0))->getZExtValue(), AATags);
143 Arg, cast<ConstantInt>(II->getArgOperand(1))->getZExtValue(), AATags);
169 return MemoryLocation(Arg, LenCI->getZExtValue(), AATags);
CostModel.cpp 248 Idx = CI->getZExtValue();
311 Idx = CI->getZExtValue();
460 Idx = CI->getZExtValue();
480 Idx = CI->getZExtValue();
TypeBasedAliasAnalysis.cpp 196 return mdconst::extract<ConstantInt>(Node->getOperand(2))->getZExtValue();
238 ->getZExtValue();
251 ->getZExtValue();
263 ->getZExtValue();
  /external/llvm/lib/Target/NVPTX/
NVPTXMCExpr.cpp 43 std::string HexStr(utohexstr(API.getZExtValue()));
46 OS << utohexstr(API.getZExtValue());
  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.cpp 55 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
68 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
77 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
ExecutionUtils.cpp 71 return Element(Priority->getZExtValue(), Func, Data);
  /external/llvm/lib/IR/
Operator.cpp 31 unsigned ElementIdx = OpC->getZExtValue();
AutoUpgrade.cpp 522 unsigned Shift = cast<ConstantInt>(CI->getArgOperand(1))->getZExtValue();
527 unsigned Shift = cast<ConstantInt>(CI->getArgOperand(1))->getZExtValue();
532 unsigned Shift = cast<ConstantInt>(CI->getArgOperand(1))->getZExtValue();
537 unsigned Shift = cast<ConstantInt>(CI->getArgOperand(1))->getZExtValue();
542 unsigned Shift = cast<ConstantInt>(CI->getArgOperand(1))->getZExtValue();
547 unsigned Shift = cast<ConstantInt>(CI->getArgOperand(1))->getZExtValue();
552 unsigned Shift = cast<ConstantInt>(CI->getArgOperand(1))->getZExtValue();
557 unsigned Shift = cast<ConstantInt>(CI->getArgOperand(1))->getZExtValue();
570 unsigned Imm = cast <ConstantInt>(CI->getArgOperand(2))->getZExtValue();
587 unsigned Imm = cast<ConstantInt>(CI->getArgOperand(2))->getZExtValue();
    [all...]
  /external/llvm/include/llvm/IR/
Statepoint.h 102 ->getZExtValue();
108 return cast<ConstantInt>(IDVal)->getZExtValue();
115 cast<ConstantInt>(NumPatchBytesVal)->getZExtValue();
155 return cast<ConstantInt>(NumCallArgsVal)->getZExtValue();
189 return cast<ConstantInt>(NumGCTransitionArgs)->getZExtValue();
211 return cast<ConstantInt>(NumVMSArgs)->getZExtValue();
358 return cast<ConstantInt>(RelocateCS.getArgument(1))->getZExtValue();
364 return cast<ConstantInt>(RelocateCS.getArgument(2))->getZExtValue();
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 57 if ((Imm.getZExtValue() & 0xFFFF) == 0)
164 (isShiftedMask_32(Imm.getZExtValue()) ||
165 isShiftedMask_32(~Imm.getZExtValue())))
169 (isShiftedMask_64(Imm.getZExtValue()) ||
170 isShiftedMask_64(~Imm.getZExtValue())))
174 if (UnsignedFree && isUInt<16>(Imm.getZExtValue()))
177 if (ShiftedFree && (Imm.getZExtValue() & 0xFFFF) == 0)
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 86 if (CI->getZExtValue() == NumBits) {
132 if (CI->getZExtValue() > NumBits) {
133 unsigned LowBits = TypeWidth - CI->getZExtValue();
157 if (CI->getValue().ult(TypeWidth) && CI->getZExtValue() > NumBits) {
158 unsigned LowBits = CI->getZExtValue() - NumBits;
228 unsigned NewShAmt = NumBits+CI->getZExtValue();
253 assert(CI->getZExtValue() > NumBits);
255 CI->getZExtValue() - NumBits));
269 unsigned NewShAmt = NumBits+CI->getZExtValue();
293 assert(CI->getZExtValue() > NumBits)
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp 198 unsigned RCID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
203 unsigned SubRegIdx = cast<ConstantSDNode>(SubRegOp)->getZExtValue();
437 Imm = FP->getValueAPF().bitcastToAPInt().getZExtValue();
440 Imm = C->getZExtValue();
487 uint32_t OffsetVal = Offset->getZExtValue();
488 uint32_t WidthVal = Width->getZExtValue();
642 IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, SDLoc(Addr),
665 && isInt<16>(IMMOffset->getZExtValue())) {
668 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), SDLoc(Addr),
673 && isInt<16>(IMMOffset->getZExtValue())) {
    [all...]
  /external/clang/lib/AST/
TemplateBase.cpp 59 const char Ch = Val.getZExtValue();
85 Integer.VAL = Value.getZExtValue();
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 32 if (bzeroEntry && (!SizeValue || SizeValue->getZExtValue() > 256)) {
  /external/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.cpp 31 uint64_t SizeVal = ConstantSize->getZExtValue();
  /external/llvm/unittests/ADT/
APSIntTest.cpp 47 EXPECT_EQ(7u, APSInt::get(7).getZExtValue());
52 EXPECT_EQ(UINT64_C(0) - 7, APSInt::get(-7).getZExtValue());
58 EXPECT_EQ(7u, APSInt::getUnsigned(7).getZExtValue());
63 EXPECT_EQ(UINT64_C(0) - 7, APSInt::getUnsigned(-7).getZExtValue());
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 340 if (isInt<8>(OffsetNode->getZExtValue() >> 2)) {
342 Offset = CurDAG->getTargetConstant(OffsetNode->getZExtValue() >> 2,
362 && isInt<16>(IMMOffset->getZExtValue())) {
365 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
369 && isInt<16>(IMMOffset->getZExtValue())) {
373 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), MVT::i32);
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 62 Offset += DL.getStructLayout(STy)->getElementOffset(OpC->getZExtValue());
231 int64_t Size = cast<ConstantInt>(MSI->getLength())->getZExtValue();
614 srcArraySize->getZExtValue();
629 destArraySize->getZExtValue();
785 if (!MDepLen || !MLen || MDepLen->getZExtValue() < MLen->getZExtValue())
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 139 *I8Ptr = (int8_t) AV.IntVal.getZExtValue();
144 *I16Ptr = (int16_t) AV.IntVal.getZExtValue();
149 *I32Ptr = (int32_t) AV.IntVal.getZExtValue();
154 *I64Ptr = (int64_t) AV.IntVal.getZExtValue();
364 sprintf(Buffer, FmtBuf, uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
380 sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal.getZExtValue());
382 sprintf(Buffer, FmtBuf,uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
464 size_t len = (size_t)Args[2].IntVal.getZExtValue();
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AddressingModes.h 371 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1;
373 int32_t Mantissa = Imm.getZExtValue() & 0x3ff; // 10 bits
397 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1;
399 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits
425 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1;
427 uint64_t Mantissa = Imm.getZExtValue() & 0xfffffffffffffULL;
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 191 uint64_t ValueKind = Ind->getValueKind()->getZExtValue();
192 uint64_t Index = Ind->getIndex()->getZExtValue();
210 uint64_t ValueKind = Ind->getValueKind()->getZExtValue();
211 uint64_t Index = Ind->getIndex()->getZExtValue();
228 uint64_t Index = Inc->getIndex()->getZExtValue();
317 uint64_t NumCounters = Inc->getNumCounters()->getZExtValue();
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 56 uint32_t value = (uint32_t)N->getZExtValue();
138 uint64_t Val = cast<ConstantSDNode>(N)->getZExtValue();
239 unsigned IntNo = cast<ConstantSDNode>(Addr->getOperand(1))->getZExtValue();

Completed in 782 milliseconds

1 2 3 4 5 6 7 8 91011