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

1 2 3 4 5 6 7

  /external/clang/lib/AST/
TemplateBase.cpp 43 const unsigned char Ch = Val->getZExtValue();
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 84 if (CI->getZExtValue() == NumBits) {
130 if (CI->getZExtValue() > NumBits) {
131 unsigned LowBits = TypeWidth - CI->getZExtValue();
154 if (CI->getZExtValue() > NumBits) {
155 unsigned LowBits = CI->getZExtValue() - NumBits;
220 unsigned NewShAmt = NumBits+CI->getZExtValue();
245 assert(CI->getZExtValue() > NumBits);
247 CI->getZExtValue() - NumBits));
261 unsigned NewShAmt = NumBits+CI->getZExtValue();
285 assert(CI->getZExtValue() > NumBits)
    [all...]
InstCombineVectorOps.cpp 71 Result.push_back(cast<ConstantInt>(*i)->getZExtValue());
96 unsigned IIElt = cast<ConstantInt>(III->getOperand(2))->getZExtValue();
149 unsigned IndexVal = IdxC->getZExtValue();
215 int SrcIdx = getShuffleMask(SVI)[Elt->getZExtValue()];
282 unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
296 cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
351 cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
352 unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
407 cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
408 unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 105 Imm = (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
107 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
109 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
166 uint32_t Imm = CN->getZExtValue();
  /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();
374 sprintf(Buffer, FmtBuf, uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
390 sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal.getZExtValue());
392 sprintf(Buffer, FmtBuf,uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
Execution.cpp 577 exit(GV.IntVal.zextOrTrunc(32).getZExtValue());
740 getOperandValue(I.getOperand(0), SF).IntVal.getZExtValue();
777 unsigned Index = unsigned(CPU->getZExtValue());
789 Idx = (int64_t)(int32_t)IdxGV.IntVal.getZExtValue();
792 Idx = (int64_t)IdxGV.IntVal.getZExtValue();
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 47 return ret.getZExtValue();
93 + offset.getZExtValue();
  /external/llvm/unittests/ADT/
APIntTest.cpp 53 EXPECT_EQ(((uint64_t)-2)&((1ull<<33) -1), i33minus2.getZExtValue());
84 EXPECT_EQ((uint64_t)~0ull, u64max.getZExtValue());
94 EXPECT_EQ(0u, zero.getZExtValue());
104 EXPECT_EQ(1u, one.getZExtValue());
116 EXPECT_EQ(1u, neg_one.getZExtValue());
117 EXPECT_EQ(0u, zero.getZExtValue());
119 EXPECT_EQ(1u, one.getZExtValue());
120 EXPECT_EQ(0u, two.getZExtValue());
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 611 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1;
613 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits
639 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1;
641 uint64_t Mantissa = Imm.getZExtValue() & 0xfffffffffffffULL;
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 47 ConstantSize->getZExtValue() >
78 uint64_t SizeVal = ConstantSize->getZExtValue();
87 uint64_t Val = ValC->getZExtValue() & 255;
186 uint64_t SizeVal = ConstantSize->getZExtValue();
X86ISelDAGToDAG.cpp 182 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
790 unsigned Val = CN->getZExtValue();
830 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
831 CN->getZExtValue() == 9) {
832 AM.Scale = unsigned(CN->getZExtValue())-1;
845 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 60 uint32_t value = (uint32_t)N->getZExtValue();
159 uint64_t Val = cast<ConstantSDNode>(N)->getZExtValue();
214 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
266 unsigned IntNo = cast<ConstantSDNode>(Addr->getOperand(1))->getZExtValue();
  /external/llvm/lib/VMCore/
DebugLoc.cpp 124 LineNo = Line->getZExtValue();
126 ColNo = Col->getZExtValue();
140 LineNo = Line->getZExtValue();
142 ColNo = Col->getZExtValue();
LLVMContext.cpp 90 LocCookie = CI->getZExtValue();
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 150 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
163 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
173 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 58 Offset += TD.getStructLayout(STy)->getElementOffset(OpC->getZExtValue());
219 int64_t Size = cast<ConstantInt>(MSI->getLength())->getZExtValue();
594 srcArraySize->getZExtValue();
609 destArraySize->getZExtValue();
720 if (!MDepLen || !MLen || MDepLen->getZExtValue() < MLen->getZExtValue())
812 CopySize->getZExtValue(), C)) {
826 return processMemCpyMemCpyDependence(M, MDep, CopySize->getZExtValue());
    [all...]
  /external/llvm/unittests/VMCore/
ConstantsTest.cpp 106 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 292 Imm = cast<ConstantSDNode>(N)->getZExtValue();
326 ScaledConstant = (int) C->getZExtValue();
407 ShImmVal = RHS->getZExtValue() & 31;
468 int RHSC = (int)RHS->getZExtValue();
497 int RHSC = (int)RHS->getZExtValue();
544 ShAmt = Sh->getZExtValue();
565 ShAmt = Sh->getZExtValue();
597 int RHSC = (int)RHS->getZExtValue();
684 ShAmt = Sh->getZExtValue();
705 ShAmt = Sh->getZExtValue();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 181 uint64_t Amt = V2.getZExtValue();
199 uint64_t Amt = V2.getZExtValue();
  /external/llvm/include/llvm/
IntrinsicInst.h 106 const_cast<Value*>(getArgOperand(1)))->getZExtValue();
132 return getAlignmentCst()->getZExtValue();
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 451 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
489 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
520 MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue()));
548 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
565 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
577 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 120 int StoreOffs = StoreOffset->getZExtValue();
121 int LoadOffs = LoadOffset->getZExtValue();
PPCISelDAGToDAG.cpp 263 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
265 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
267 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
279 Imm = cast<ConstantSDNode>(N)->getZExtValue();
289 Imm = cast<ConstantSDNode>(N)->getZExtValue();
384 unsigned TargetMask = LKZ.getZExtValue();
385 unsigned InsertMask = RKZ.getZExtValue();
747 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 118 return C->getZExtValue();
323 unsigned FieldNo = cast<ConstantInt>(Index)->getZExtValue();
739 Len = LenCI->getZExtValue();
758 uint64_t Len = LenCI->getZExtValue();
770 cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
780 cast<ConstantInt>(II->getArgOperand(1))->getZExtValue();
825 Len = LenCI->getZExtValue();
    [all...]
ValueTracking.cpp 566 unsigned Idx = cast<ConstantInt>(Index)->getZExtValue();
    [all...]

Completed in 510 milliseconds

1 2 3 4 5 6 7