HomeSort by relevance Sort by last modified time
    Searched refs:ShiftVal (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp 252 unsigned ShiftVal = AArch64_AM::getShiftValue(MO1.getImm());
253 assert((ShiftVal == 0 || ShiftVal == 12) &&
256 return MO.getImm() | (ShiftVal == 0 ? 0 : (1 << 12));
503 unsigned ShiftVal = AArch64_AM::getShiftValue(MO.getImm());
504 assert((ShiftVal == 8 || ShiftVal == 16) && "Invalid shift amount!");
505 return ShiftVal == 8 ? 0 : 1;
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 55 for (unsigned ShiftVal = 0; ShiftVal < BitSize; ShiftVal += 64) {
56 APInt Tmp = ImmVal.ashr(ShiftVal).sextOrTrunc(64);
AArch64FastISel.cpp     [all...]
AArch64ISelDAGToDAG.cpp 567 unsigned ShiftVal = 0;
574 ShiftVal = CSD->getZExtValue();
575 if (ShiftVal > 4)
598 Shift = CurDAG->getTargetConstant(getArithExtendImm(Ext, ShiftVal), SDLoc(N),
799 unsigned ShiftVal = CSD->getZExtValue();
801 if (ShiftVal != 0 && ShiftVal != LegalShiftVal)
    [all...]
  /external/llvm/lib/IR/
AutoUpgrade.cpp 525 unsigned ShiftVal = cast<llvm::ConstantInt>(Shift)->getZExtValue();
532 if (ShiftVal >= 32)
537 if (ShiftVal > 16) {
538 ShiftVal -= 16;
547 unsigned Idx = ShiftVal + i;
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp     [all...]
AMDGPUISelLowering.cpp     [all...]
  /external/capstone/arch/AArch64/
AArch64InstPrinter.c 810 unsigned ShiftVal = AArch64_AM_getArithShiftValue(Val);
822 if (ShiftVal != 0) {
824 printInt32Bang(O, ShiftVal);
827 MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].shift.value = ShiftVal;
869 if (ShiftVal != 0) {
871 printInt32Bang(O, ShiftVal);
874 MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].shift.value = ShiftVal;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp     [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 447 ConstantInt *ShiftVal = nullptr;
450 m_ConstantInt(ShiftVal)))) ||
457 unsigned ShiftAmount = ShiftVal ? ShiftVal->getZExtValue() : 0;
    [all...]
InstCombineCalls.cpp 390 APInt ShiftVal = COp->getValue();
391 if (ShiftVal.uge(BitWidth)) {
397 ShiftAmts.push_back((int)ShiftVal.getZExtValue());
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 845 milliseconds