HomeSort by: relevance | last modified time | path
    Searched refs:getZExtValue (Results 1 - 25 of 377) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/IR/
PseudoProbe.cpp 51 Probe.Id = II->getIndex()->getZExtValue();
53 Probe.Attr = II->getAttributes()->getZExtValue();
54 Probe.Factor = II->getFactor()->getZExtValue() /
73 auto OrigFactor = II->getFactor()->getZExtValue();
104 uint32_t OldAttr = Inst.getAttributes()->getZExtValue();
142 return std::hash<uint64_t>()(I->getFuncGuid()->getZExtValue()) ^
143 std::hash<uint64_t>()(I->getIndex()->getZExtValue());
159 if (II->getAttributes()->getZExtValue() &
AbstractCallSite.cpp 49 cast<ConstantInt>(CBCalleeIdxAsCM->getValue())->getZExtValue();
107 cast<ConstantInt>(CBCalleeIdxAsCM->getValue())->getZExtValue();
Operator.cpp 46 Offset = SL->getElementOffset(OpC->getZExtValue());
53 ElemCount = OpC->getZExtValue();
116 unsigned ElementIdx = ConstOffset->getZExtValue();
179 unsigned ElementIdx = ConstOffset->getZExtValue();
Module.cpp 552 return cast<ConstantInt>(Val->getValue())->getZExtValue();
559 return cast<ConstantInt>(Val->getValue())->getZExtValue();
571 return cast<ConstantInt>(Val->getValue())->getZExtValue();
594 cast<ConstantInt>(Val->getValue())->getZExtValue());
608 cast<ConstantInt>(Val->getValue())->getZExtValue());
622 cast<ConstantInt>(Val->getValue())->getZExtValue());
652 return cast<ConstantInt>(Val->getValue())->getZExtValue();
665 return Val && (cast<ConstantInt>(Val->getValue())->getZExtValue() > 0);
674 return Val && (cast<ConstantInt>(Val->getValue())->getZExtValue() > 0);
682 Val ? cast<ConstantInt>(Val->getValue())->getZExtValue() : 0)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ObjCARCUtil.h 38 return cast<ConstantInt>(B->Inputs[0])->getZExtValue() ==
ConstraintSystem.h 50 .getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64MachineFunctionInfo.cpp 45 if (Sign->getZExtValue()) {
48 return {true, All->getZExtValue()};
70 return BKey->getZExtValue();
93 BranchTargetEnforcement = BTE->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Support/
KnownBits.cpp 173 unsigned Shift = RHS.getConstant().getZExtValue();
188 MinTrailingZeros += MinShiftAmount.getZExtValue();
196 uint64_t ShiftAmtZeroMask = (~RHS.Zero).getZExtValue();
197 uint64_t ShiftAmtOneMask = RHS.One.getZExtValue();
201 for (uint64_t ShiftAmt = MinShiftAmount.getZExtValue(),
202 MaxShiftAmt = MaxShiftAmount.getZExtValue();
226 unsigned Shift = RHS.getConstant().getZExtValue();
241 MinLeadingZeros += MinShiftAmount.getZExtValue();
249 uint64_t ShiftAmtZeroMask = (~RHS.Zero).getZExtValue();
250 uint64_t ShiftAmtOneMask = RHS.One.getZExtValue();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryLocation.cpp 116 Size = LocationSize::precise(C->getValue().getZExtValue());
137 Size = LocationSize::precise(C->getValue().getZExtValue());
168 return MemoryLocation(Arg, LocationSize::precise(LenCI->getZExtValue()),
179 cast<ConstantInt>(II->getArgOperand(0))->getZExtValue()),
206 cast<ConstantInt>(II->getArgOperand(1))->getZExtValue()),
240 return MemoryLocation(Arg, LocationSize::precise(LenCI->getZExtValue()),
249 return MemoryLocation(Arg, LocationSize::precise(LenCI->getZExtValue()),
256 return MemoryLocation(Arg, LocationSize::precise(LenCI->getZExtValue()),
266 Arg, LocationSize::upperBound(LenCI->getZExtValue()), AATags);
TypeBasedAliasAnalysis.cpp 232 return mdconst::extract<ConstantInt>(Node->getOperand(2))->getZExtValue();
238 return mdconst::extract<ConstantInt>(Node->getOperand(3))->getZExtValue();
322 ->getZExtValue();
339 ->getZExtValue();
351 ->getZExtValue();
770 if (InnerOffset->getZExtValue() + InnerSize->getZExtValue() <= Offset)
773 uint64_t NewSize = InnerSize->getZExtValue();
774 uint64_t NewOffset = InnerOffset->getZExtValue() - Offset;
775 if (InnerOffset->getZExtValue() < Offset)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Statepoint.h 90 return cast<ConstantInt>(getArgOperand(IDPos))->getZExtValue();
97 cast<ConstantInt>(NumPatchBytesVal)->getZExtValue();
104 return cast<ConstantInt>(getArgOperand(NumCallArgsPos))->getZExtValue();
108 return cast<ConstantInt>(getArgOperand(FlagsPos))->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFSelectionDAGInfo.cpp 29 unsigned CopyLen = ConstantSize->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyISelDAGToDAG.cpp 93 cast<ConstantSDNode>(Node->getOperand(2).getNode())->getZExtValue();
127 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
147 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/Mips/
Target.cpp 92 .addImm(Value.getZExtValue())};
97 const uint16_t HiBits = Value.getHiBits(16).getZExtValue();
118 const uint16_t LoBits = Value.getLoBits(16).getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeSymbolEnumerator.cpp 100 uint64_t U = Record.Value.getZExtValue();
115 uint64_t U = Record.Value.getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUUnifyMetadata.cpp 64 auto VersionMajor = CMajor->getZExtValue();
66 auto VersionMinor = CMinor->getZExtValue();
AMDGPUGlobalISelUtils.cpp 28 Offset = Op.getCImm()->getZExtValue();
AMDGPUISelDAGToDAG.cpp 335 if (ShiftAmt->getZExtValue() == 16) {
584 unsigned RCID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
589 unsigned SubRegIdx = cast<ConstantSDNode>(SubRegOp)->getZExtValue();
807 Imm = FP->getValueAPF().bitcastToAPInt().getZExtValue();
810 Imm = C->getZExtValue();
837 uint32_t OffsetVal = Offset->getZExtValue();
838 uint32_t WidthVal = Width->getZExtValue();
985 Offset = CurDAG->getTargetConstant(C->getZExtValue(), DL, MVT::i32);
989 Offset = CurDAG->getTargetConstant(C->getZExtValue(), DL, MVT::i32);
993 Offset = CurDAG->getTargetConstant(C->getZExtValue(), DL, MVT::i32)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
PseudoProbePrinter.cpp 33 mdconst::dyn_extract<ConstantInt>(MD->getOperand(0))->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXMCExpr.cpp 50 OS << format_hex_no_prefix(API.getZExtValue(), NumHex, /*Upper=*/true);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/AArch64/
Target.cpp 32 .addImm(Value.getZExtValue());
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 668 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1;
670 int64_t Mantissa = Imm.getZExtValue() & 0x3ff; // 10 bits
706 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1;
708 int64_t Mantissa = Imm.getZExtValue() & 0x7fffff; // 23 bits
734 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1;
736 uint64_t Mantissa = Imm.getZExtValue() & 0xfffffffffffffULL;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 150 *I8Ptr = (int8_t) AV.IntVal.getZExtValue();
155 *I16Ptr = (int16_t) AV.IntVal.getZExtValue();
160 *I32Ptr = (int32_t) AV.IntVal.getZExtValue();
165 *I64Ptr = (int64_t) AV.IntVal.getZExtValue();
375 sprintf(Buffer, FmtBuf, uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
391 sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal.getZExtValue());
393 sprintf(Buffer, FmtBuf,uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
475 size_t len = (size_t)Args[2].IntVal.getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
GlobalSplit.cpp 95 ->getZExtValue();
121 unsigned I = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineCheckDebugify.cpp 42 ->getZExtValue();

Completed in 48 milliseconds

1 2 3 4 5 6 7 8 91011>>