Home
last modified time | relevance | path

Searched refs:ShType (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp629 Type *ShType = InnerShift->getType(); in foldShiftedShift() local
630 unsigned TypeWidth = ShType->getScalarSizeInBits(); in foldShiftedShift()
639 InnerShift->setOperand(1, ConstantInt::get(ShType, ShAmt)); in foldShiftedShift()
655 return Constant::getNullValue(ShType); in foldShiftedShift()
668 ConstantInt::get(ShType, Mask)); in foldShiftedShift()
H A DInstCombineCompares.cpp2318 Type *ShType = Shl->getType(); in foldICmpShlConstant() local
2327 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2332 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2341 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2352 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2357 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2366 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
2373 ShType, in foldICmpShlConstant()
2376 Constant *LShrC = ConstantInt::get(ShType, C.lshr(*ShiftAmt)); in foldICmpShlConstant()
2385 ShType, in foldICmpShlConstant()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp302 uint32_t ShType) const { in fillSymTabShdr()
303 SymTab.Shdr.sh_type = ShType; in fillSymTabShdr()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h303 std::optional<ELF_SHT> ShType; member
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp654 if (From->ShType) in overrideFields()
655 To.sh_type = *From->ShType; in overrideFields()
H A DELFYAML.cpp1377 !Section.ShFlags && !Section.ShType && !Section.ShAddrAlign)); in commonSectionMapping()
1383 IO.mapOptional("ShType", Section.ShType); in commonSectionMapping()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp7558 AArch64_AM::ShiftExtendType ShType = getShiftTypeForInst(*ShiftInst); in selectShiftedRegister() local
7559 if (ShType == AArch64_AM::InvalidShiftExtend) in selectShiftedRegister()
7561 if (ShType == AArch64_AM::ROR && !AllowROR) in selectShiftedRegister()
7579 unsigned ShiftVal = AArch64_AM::getShifterImm(ShType, Val); in selectShiftedRegister()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp887 AArch64_AM::ShiftExtendType ShType = getShiftTypeForNode(N); in SelectShiftedRegister() local
888 if (ShType == AArch64_AM::InvalidShiftExtend) in SelectShiftedRegister()
890 if (!AllowROR && ShType == AArch64_AM::ROR) in SelectShiftedRegister()
896 unsigned ShVal = AArch64_AM::getShifterImm(ShType, Val); in SelectShiftedRegister()