/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
H A D | RISCVMatInt.cpp | 167 unsigned UpperTrailingOnes = llvm::countr_one(Hi_32(Val)); in extractRotateInfo() 492 if (STI.hasFeature(RISCV::FeatureStdExtZba) && Lo_32(Val) == Hi_32(Val)) { in generateTwoRegInstSeq()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDKernelCodeTUtils.cpp | 399 MCConstantExpr::create(Hi_32(compute_pgm_resource_registers), Ctx); in initDefault() 502 OS.emitIntValue(Hi_32(compute_pgm_resource_registers), in EmitKernelCodeT()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/GISel/ |
H A D | PPCInstructionSelector.cpp | 278 uint32_t HiTZ = llvm::countr_zero<uint32_t>(Hi_32(Imm)); in findContiguousZerosAtLeast() 296 uint32_t Hi32 = Hi_32(Imm); in selectI64ImmDirect()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VEFrameLowering.cpp | 263 .addImm(Hi_32(NumBytes)); in emitSPAdjustment()
|
H A D | VERegisterInfo.cpp | 218 .addImm(Hi_32(Offset)); in prepareReplaceFI()
|
H A D | VEInstrInfo.td | 60 return CurDAG->getTargetConstant(Hi_32(N->getZExtValue()), 77 return CurDAG->getTargetConstant(Hi_32(getFpImmVal(N)), SDLoc(N), MVT::i32);
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APInt.cpp | 1353 borrow = Hi_32(p) - Hi_32(subres); in KnuthDiv() 1460 U[i * 2 + 1] = Hi_32(tmp); in divide() 1469 V[i * 2 + 1] = Hi_32(tmp); in divide()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | MathExtras.h | 154 constexpr uint32_t Hi_32(uint64_t Value) { in Hi_32() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUMCCodeEmitter.cpp | 447 Imm = Hi_32(Imm); in encodeInstruction()
|
H A D | AMDGPUInstPrinter.cpp | 669 O << formatHex(static_cast<uint64_t>(Hi_32(Imm))); in printImmediate64()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonGenInsert.cpp | 671 return isInt<8>(Lo_32(V)) && isInt<8>(Hi_32(V)); in isSmallConstant()
|
H A D | HexagonBitSimplify.cpp | 1458 unsigned Lo = Lo_32(C), Hi = Hi_32(C); in genTfrConst()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCISelDAGToDAG.cpp | 1011 unsigned HiTZ = llvm::countr_zero<uint32_t>(Hi_32(Imm)); in findContiguousZerosAtLeast() 1025 unsigned Hi32 = Hi_32(Imm); in selectI64ImmDirect() 1266 unsigned Hi32 = Hi_32(Imm); in selectI64ImmDirectPrefix() 1423 uint32_t Hi16OfHi32 = (Hi_32(Imm) >> 16) & 0xffff; in selectI64Imm() 1424 uint32_t Lo16OfHi32 = Hi_32(Imm) & 0xffff; in selectI64Imm()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/ |
H A D | MipsAsmParser.cpp | 3413 if ((Hi_32(ImmOp64) & 0x7ff00000) == 0) { in convertIntToDoubleImm() 3517 if (loadImmediate(Hi_32(ImmOp64), FirstReg, Mips::NoRegister, true, false, in expandLoadDoubleImmToGPR() 3584 !((Hi_32(ImmOp64) & 0xffff0000) && (Hi_32(ImmOp64) & 0x0000ffff))) { in expandLoadDoubleImmToFPR() 3595 loadImmediate(Hi_32(ImmOp64), TmpReg, Mips::NoRegister, true, false, in expandLoadDoubleImmToFPR()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | XCOFFObjectWriter.cpp | 890 W.write<uint32_t>(Hi_32(SectionOrLength)); in writeSymbolAuxCsectEntry()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/ |
H A D | HexagonAsmParser.cpp | 1628 int s8 = Hi_32(Value); in processInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Path.inc | 883 Hi_32(Size), Lo_32(Size), 0);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUInstructionSelector.cpp | 5054 return buildRSRC(B, MRI, 0, Hi_32(DefaultFormat), BasePtr); in buildAddr64RSrc() 5063 return buildRSRC(B, MRI, -1, Hi_32(DefaultFormat), BasePtr); in buildOffsetSrc()
|
H A D | SIInstrInfo.cpp | 3437 return Hi_32(Imm); in foldImmediate() 3443 return APInt(16, Hi_32(Imm)).getSExtValue(); in foldImmediate() 3445 return APInt(32, Hi_32(Imm)).ashr(16).getSExtValue(); in foldImmediate()
|
H A D | AMDGPUISelDAGToDAG.cpp | 1704 getMaterializedScalarImm32(Hi_32(RemainderOffset), DL); in SelectFlatOffsetImpl()
|
H A D | AMDGPUISelLowering.cpp | 5096 DAG.getConstant(Hi_32(CVal), SL, MVT::i32)); in PerformDAGCombine() 5106 DAG.getConstant(Hi_32(CVal), SL, MVT::i32)); in PerformDAGCombine()
|
H A D | SIISelLowering.cpp | 11409 uint32_t ValHi = Hi_32(Val); in splitBinaryBitConstantOp()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/ |
H A D | AMDGPUAsmParser.cpp | 4687 Value = Hi_32(Value); in validateVOPLiteral()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 7700 SDValue ImmH = DAG.getConstant(Hi_32(Immediate), dl, MVT::i32); in LowerBUILD_VECTORvXi1()
|