Home
last modified time | relevance | path

Searched refs:InputTy (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRShiftExpand.cpp80 Type *InputTy = cast<Instruction>(BI)->getType(); in expand() local
106 PHINode *ValuePHI = Builder.CreatePHI(InputTy, 2); in expand()
121 ValueShifted = Builder.CreateShl(ValuePHI, ConstantInt::get(InputTy, 1)); in expand()
124 ValueShifted = Builder.CreateLShr(ValuePHI, ConstantInt::get(InputTy, 1)); in expand()
127 ValueShifted = Builder.CreateAShr(ValuePHI, ConstantInt::get(InputTy, 1)); in expand()
142 PHINode *Result = Builder.CreatePHI(InputTy, 2); in expand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp667 Type *InputTy = Input->getType(); in tryCreateMaskedScatterOffset() local
668 Type *MemoryTy = InputTy; in tryCreateMaskedScatterOffset()
679 InputTy = PreTruncTy; in tryCreateMaskedScatterOffset()
683 if (InputTy->getPrimitiveSizeInBits() < 128 && in tryCreateMaskedScatterOffset()
684 InputTy->isIntOrIntVectorTy()) { in tryCreateMaskedScatterOffset()
689 InputTy = InputTy->getWithNewBitWidth( in tryCreateMaskedScatterOffset()
690 128 / cast<FixedVectorType>(InputTy)->getNumElements()); in tryCreateMaskedScatterOffset()
695 if (InputTy->getPrimitiveSizeInBits() != 128) { in tryCreateMaskedScatterOffset()
704 Ptr, Offsets, Scale, cast<FixedVectorType>(InputTy), MemoryTy, Builder); in tryCreateMaskedScatterOffset()
709 Input = Builder.CreateZExt(Input, InputTy); in tryCreateMaskedScatterOffset()
H A DARMInstrNEON.td4804 string AsmTy, ValueType AccumTy, ValueType InputTy,
4811 (InputTy RegTy:$Vn),
4812 (InputTy RegTy:$Vm)))]> {
4886 (InputTy RegTy:$Vn),
4887 (InputTy (bitconvert (AccumTy
4901 (InputTy RegTy:$Vn))),
9172 (InputTy RegTy:$Vn),
9173 (InputTy RegTy:$Vm)))]> {
9180 ValueType InputTy, dag RHS> {
9194 (InputTy RegTy:$Vn),
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DDriver.h210 using InputTy = std::pair<types::ID, const llvm::opt::Arg *>; variable
213 using InputList = SmallVector<InputTy, 16>;
497 const InputTy &Input,
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h259 template <typename InputTy>
260 size_type count(const StringMapEntry<InputTy> &MapEntry) const { in count()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstrTypes.h1212 template <typename InputTy> class OperandBundleDefT {
1214 std::vector<InputTy> Inputs;
1217 explicit OperandBundleDefT(std::string Tag, std::vector<InputTy> Inputs)
1219 explicit OperandBundleDefT(std::string Tag, ArrayRef<InputTy> Inputs)
1227 ArrayRef<InputTy> inputs() const { return Inputs; }
1229 using input_iterator = typename std::vector<InputTy>::const_iterator;
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2591 QualType InputTy = S.getInputExpr(InputNo)->getType(); in EmitAsmStmt() local
2594 uint64_t InputSize = getContext().getTypeSize(InputTy); in EmitAsmStmt()
2597 ResultRegTypes.back() = ConvertType(InputTy); in EmitAsmStmt()
2712 QualType InputTy = InputExpr->getType(); in EmitAsmStmt() local
2715 getContext().getTypeSize(InputTy)) { in EmitAsmStmt()
H A DCGBuiltin.cpp8016 auto *InputTy = in EmitCommonNeonBuiltinExpr() local
8018 llvm::Type *Tys[2] = { Ty, InputTy }; in EmitCommonNeonBuiltinExpr()
8023 auto *InputTy = in EmitCommonNeonBuiltinExpr() local
8025 llvm::Type *Tys[2] = { Ty, InputTy }; in EmitCommonNeonBuiltinExpr()
8030 auto *InputTy = in EmitCommonNeonBuiltinExpr() local
8037 auto *InputTy = in EmitCommonNeonBuiltinExpr() local
8044 auto *InputTy = in EmitCommonNeonBuiltinExpr() local
8051 auto *InputTy = in EmitCommonNeonBuiltinExpr() local
8057 auto *InputTy = in EmitCommonNeonBuiltinExpr() local
8064 auto *InputTy = in EmitCommonNeonBuiltinExpr() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp369 Type *InputTy = I->getOperand(0)->getType()->getScalarType(); in canEvaluateTruncated() local
370 const fltSemantics &Semantics = InputTy->getFltSemantics(); in canEvaluateTruncated()
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp4526 const InputTy &Input, in BuildOffloadingActions()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5550 Type *InputTy = FPVT.getTypeForEVT(*DAG.getContext()); in isSaturatingMinMax() local
5551 const fltSemantics &Semantics = InputTy->getFltSemantics(); in isSaturatingMinMax()