Home
last modified time | relevance | path

Searched refs:Type (Results 1 – 25 of 2244) sorted by relevance

12345678910>>...90

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCELFObjectWriter.cpp82 unsigned Type; in getRelocType() local
93 Type = ELF::R_PPC_REL24; in getRelocType()
108 Type = ELF::R_PPC_REL14; in getRelocType()
114 Type = ELF::R_PPC_REL16; in getRelocType()
154 Type = ELF::R_PPC_REL32; in getRelocType()
158 Type = ELF::R_PPC64_REL64; in getRelocType()
165 Type = ELF::R_PPC_ADDR24; in getRelocType()
204 Type = ELF::R_PPC_GOT16; in getRelocType()
457 Type = ELF::R_PPC_ADDR32; in getRelocType()
464 return Type; in getRelocType()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DValueTypes.cpp526 MVT MVT::getVT(Type *Ty, bool HandleUnknown){ in getVT()
531 case Type::VoidTyID: in getVT()
533 case Type::IntegerTyID: in getVT()
535 case Type::HalfTyID: return MVT(MVT::f16); in getVT()
537 case Type::FloatTyID: return MVT(MVT::f32); in getVT()
545 case Type::FixedVectorTyID: in getVT()
546 case Type::ScalableVectorTyID: { in getVT()
558 EVT EVT::getEVT(Type *Ty, bool HandleUnknown){ in getEVT()
562 case Type::IntegerTyID: in getEVT()
564 case Type::FixedVectorTyID: in getEVT()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DDerivedTypes.h103 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
152 Type *Type::getFunctionParamType(unsigned i) const { in getFunctionParamType()
351 Type *Type::getStructElementType(unsigned N) const { in getStructElementType()
358 Type *ContainedType;
403 Type *ContainedType;
415 VectorType(Type *ElType, unsigned EQ, Type::TypeID TID);
458 Type *EltTy; in getTruncatedElementVectorType()
635 Type *PointeeTy;
710 Type *Type::getExtendedType() const { in getExtendedType()
720 Type *Type::getWithNewType(Type *EltTy) const { in getWithNewType()
[all …]
H A DType.h45 class Type {
94 ~Type() = default;
388 inline Type *getWithNewType(Type *EltTy) const;
435 return (Type*) Type::getIntNTy(C, noOfBits); in getScalarTy()
447 Type *Ty; in getFloatingPointTy()
449 Ty = Type::getHalfTy(C); in getFloatingPointTy()
451 Ty = Type::getBFloatTy(C); in getFloatingPointTy()
453 Ty = Type::getFloatTy(C); in getFloatingPointTy()
455 Ty = Type::getDoubleTy(C); in getFloatingPointTy()
457 Ty = Type::getX86_FP80Ty(C); in getFloatingPointTy()
[all …]
H A DDataLayout.h554 Type *getIntPtrType(Type *) const;
573 Type *getIndexType(Type *PtrTy) const;
658 case Type::LabelTyID: in getTypeSizeInBits()
660 case Type::PointerTyID: in getTypeSizeInBits()
662 case Type::ArrayTyID: { in getTypeSizeInBits()
667 case Type::StructTyID: in getTypeSizeInBits()
673 case Type::HalfTyID: in getTypeSizeInBits()
674 case Type::BFloatTyID: in getTypeSizeInBits()
676 case Type::FloatTyID: in getTypeSizeInBits()
678 case Type::DoubleTyID: in getTypeSizeInBits()
[all …]
H A DConstants.h94 static Constant *getTrue(Type *Ty);
95 static Constant *getFalse(Type *Ty);
96 static Constant *getBool(Type *Ty, bool V);
262 ConstantFP(Type *Ty, const APFloat &V);
278 static Constant *get(Type *Ty, double V);
339 explicit ConstantAggregateZero(Type *Ty) in ConstantAggregateZero()
626 Type *getElementType() const;
960 static Constant *getAlignOf(Type *Ty);
966 static Constant *getSizeOf(Type *Ty);
1366 static UndefValue *get(Type *T);
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DRelocationResolver.cpp27 switch (Type) { in supportsX86_64()
44 switch (Type) { in resolveX86_64()
63 switch (Type) { in supportsAArch64()
76 switch (Type) { in resolveAArch64()
91 switch (Type) { in supportsBPF()
102 switch (Type) { in resolveBPF()
113 switch (Type) { in supportsMips64()
126 switch (Type) { in resolveMips64()
141 switch (Type) { in supportsMSP430()
152 switch (Type) { in resolveMSP430()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp39 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType()
69 bool Type::canLosslesslyBitCastTo(Type *Ty) const { in canLosslesslyBitCastTo()
172 bool Type::isSizedDerivedType(SmallPtrSetImpl<Type*> *Visited) const { in isSizedDerivedType()
186 Type *Type::getVoidTy(LLVMContext &C) { return &C.pImpl->VoidTy; } in getVoidTy()
187 Type *Type::getLabelTy(LLVMContext &C) { return &C.pImpl->LabelTy; } in getLabelTy()
188 Type *Type::getHalfTy(LLVMContext &C) { return &C.pImpl->HalfTy; } in getHalfTy()
190 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy()
193 Type *Type::getTokenTy(LLVMContext &C) { return &C.pImpl->TokenTy; } in getTokenTy()
195 Type *Type::getFP128Ty(LLVMContext &C) { return &C.pImpl->FP128Ty; } in getFP128Ty()
307 FunctionType::FunctionType(Type *Result, ArrayRef<Type*> Params, in FunctionType()
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Datomic_helpers.h32 typedef u8 Type; typedef
37 typedef u16 Type; typedef
42 typedef s32 Type; typedef
47 typedef u32 Type; typedef
52 typedef u64 Type; typedef
58 typedef uptr Type; typedef
65 typename T::Type V; in atomic_load()
79 inline typename T::Type atomic_fetch_add(volatile T *A, typename T::Type V, in atomic_fetch_add()
86 inline typename T::Type atomic_fetch_sub(volatile T *A, typename T::Type V, in atomic_fetch_sub()
100 inline typename T::Type atomic_fetch_or(volatile T *A, typename T::Type V, in atomic_fetch_or()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/Utils/
H A DWebAssemblyTypeUtilities.cpp26 if (Type == "i32") in parseType()
28 if (Type == "i64") in parseType()
30 if (Type == "f32") in parseType()
32 if (Type == "f64") in parseType()
34 if (Type == "v128" || Type == "i8x16" || Type == "i16x8" || Type == "i32x4" || in parseType()
35 Type == "i64x2" || Type == "f32x4" || Type == "f64x2") in parseType()
37 if (Type == "funcref") in parseType()
39 if (Type == "externref") in parseType()
84 switch (Type) { in anyTypeToString()
115 if (&Type != &List[0]) in typeListToString()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td53 def Type : TypeNode<?, 1>;
55 def ComplexType : TypeNode<Type>;
56 def PointerType : TypeNode<Type>;
62 def ArrayType : TypeNode<Type, 1>;
69 def VectorType : TypeNode<Type>;
72 def MatrixType : TypeNode<Type, 1>;
88 def TagType : TypeNode<Type, 1>;
97 def DeducedType : TypeNode<Type, 1>;
108 def PipeType : TypeNode<Type>;
109 def AtomicType : TypeNode<Type>;
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic.h30 typedef u8 Type; typedef
31 volatile Type val_dont_use;
35 typedef u16 Type; typedef
36 volatile Type val_dont_use;
40 typedef s32 Type; typedef
41 volatile Type val_dont_use;
45 typedef u32 Type; typedef
46 volatile Type val_dont_use;
50 typedef u64 Type; typedef
56 typedef uptr Type; typedef
[all …]
H A Dsanitizer_atomic_clang_mips.h40 inline atomic_uint64_t::Type atomic_fetch_add(volatile atomic_uint64_t *ptr, in atomic_fetch_add()
41 atomic_uint64_t::Type val, in atomic_fetch_add()
47 atomic_uint64_t::Type ret; in atomic_fetch_add()
59 atomic_uint64_t::Type val, in atomic_fetch_sub()
66 atomic_uint64_t::Type *cmp, in atomic_compare_exchange_strong()
67 atomic_uint64_t::Type xchg, in atomic_compare_exchange_strong()
73 typedef atomic_uint64_t::Type Type; in atomic_compare_exchange_strong() typedef
74 Type cmpv = *cmp; in atomic_compare_exchange_strong()
75 Type prev; in atomic_compare_exchange_strong()
79 prev = *(const_cast<Type volatile *>(&ptr->val_dont_use)); in atomic_compare_exchange_strong()
[all …]
H A Dsanitizer_atomic_clang.h46 inline typename T::Type atomic_fetch_add(volatile T *a, in atomic_fetch_add()
47 typename T::Type v, memory_order mo) { in atomic_fetch_add()
54 inline typename T::Type atomic_fetch_sub(volatile T *a, in atomic_fetch_sub()
55 typename T::Type v, memory_order mo) { in atomic_fetch_sub()
62 inline typename T::Type atomic_exchange(volatile T *a, in atomic_exchange()
63 typename T::Type v, memory_order mo) { in atomic_exchange()
77 typedef typename T::Type Type; in atomic_compare_exchange_strong() typedef
78 Type cmpv = *cmp; in atomic_compare_exchange_strong()
79 Type prev; in atomic_compare_exchange_strong()
88 typename T::Type *cmp, in atomic_compare_exchange_weak()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h33 Type Kind;
83 assert(getKind() == Type::Int); in getInt()
103 assert(getKind() == Type::Int); in getInt()
141 if (getKind() != Type::Map) {
161 case Type::Int:
163 case Type::UInt:
165 case Type::Nil:
167 case Type::Boolean:
169 case Type::Float:
171 case Type::String:
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DType.cpp126 : Type(tc, can, in ArrayType()
369 const Type *Type::getArrayElementTypeNoTypeQual() const { in getArrayElementTypeNoTypeQual()
539 const Type *Type::getUnqualifiedDesugaredType() const { in getUnqualifiedDesugaredType()
868 QualType Visit##Class##Type(const Class##Type *T) { \
2144 Type::ScalarTypeKind Type::getScalarTypeKind() const { in getScalarTypeKind()
2380 case Type::Enum: in isCXX98PODType()
3838 case Type::Auto: in computeCachedProperties()
3911 case Type::Pipe: in computeCachedProperties()
3948 case Type::Auto: in computeTypeLinkageInfo()
3953 case Type::Enum: in computeTypeLinkageInfo()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackReader.cpp37 Obj.Kind = Type::Nil; in read()
48 Obj.Kind = Type::Int; in read()
51 Obj.Kind = Type::Int; in read()
54 Obj.Kind = Type::Int; in read()
57 Obj.Kind = Type::Int; in read()
60 Obj.Kind = Type::UInt; in read()
63 Obj.Kind = Type::UInt; in read()
66 Obj.Kind = Type::UInt; in read()
69 Obj.Kind = Type::UInt; in read()
114 Obj.Kind = Type::Map; in read()
[all …]
H A DMsgPackDocumentYAML.cpp43 case msgpack::Type::Nil: in toString()
48 case msgpack::Type::Int: in toString()
122 if (N.getKind() == msgpack::Type::UInt && getKind() == msgpack::Type::Int) in getYAMLTag()
124 if (N.getKind() == msgpack::Type::Int && getKind() == msgpack::Type::UInt) in getYAMLTag()
188 case Type::Int: in mustQuote()
190 case Type::UInt: in mustQuote()
192 case Type::Nil: in mustQuote()
194 case Type::Boolean: in mustQuote()
196 case Type::Float: in mustQuote()
198 case Type::Binary: in mustQuote()
[all …]
/freebsd-13.1/sys/contrib/dev/acpica/components/executer/
H A Dexresolv.c275 switch (StackDesc->Common.Type) in AcpiExResolveObjectToValue()
466 ACPI_OBJECT_TYPE Type; in AcpiExResolveMultiple() local
479 Type = ObjDesc->Common.Type; in AcpiExResolveMultiple()
484 Type = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type; in AcpiExResolveMultiple()
491 Type = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type; in AcpiExResolveMultiple()
496 switch (Type) in AcpiExResolveMultiple()
666 Type = ObjDesc->Common.Type; in AcpiExResolveMultiple()
672 switch (Type) in AcpiExResolveMultiple()
678 Type = ACPI_TYPE_FIELD_UNIT; in AcpiExResolveMultiple()
685 Type = ACPI_TYPE_ANY; in AcpiExResolveMultiple()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ELFObjectWriter.cpp92 if (Type != RT64_32) in checkIs32()
98 if (Type != RT64_64) in checkIs64()
112 switch (Type) { in getRelocType64()
130 switch (Type) { in getRelocType64()
143 assert(Type == RT64_64); in getRelocType64()
148 switch (Type) { in getRelocType64()
162 switch (Type) { in getRelocType64()
176 switch (Type) { in getRelocType64()
255 switch (Type) { in getRelocType32()
269 assert(Type == RT32_32); in getRelocType32()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h61 class Type; variable
119 Type *RetTy = nullptr;
134 Intrinsic::ID Id, Type *RTy, ArrayRef<Type *> Tys,
700 bool isTruncateFree(Type *Ty1, Type *Ty2) const;
1073 getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
1097 getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy = nullptr,
1205 Function *F, Type *RetTy, ArrayRef<Type *> Tys,
1516 virtual bool isTruncateFree(Type *Ty1, Type *Ty2) = 0;
1906 bool isTruncateFree(Type *Ty1, Type *Ty2) override { in isTruncateFree()
2093 InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, in getCastInstrCost()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypes.cpp436 case Type::Builtin: { in ConvertType()
622 case Type::Auto: in ConvertType()
625 case Type::Complex: { in ConvertType()
639 case Type::Pointer: { in ConvertType()
691 case Type::ExtVector: in ConvertType()
692 case Type::Vector: { in ConvertType()
728 llvm::Type *T = in ConvertType()
734 case Type::Enum: { in ConvertType()
766 case Type::Atomic: { in ConvertType()
784 case Type::Pipe: { in ConvertType()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h810 return hasProperty(MCID::Pseudo, Type);
814 return hasProperty(MCID::Return, Type);
824 return hasProperty(MCID::Call, Type);
839 return hasProperty(MCID::Barrier, Type);
856 return hasProperty(MCID::Branch, Type);
870 return isBranch(Type) && !isBarrier(Type) && !isIndirectBranch(Type);
878 return isBranch(Type) && isBarrier(Type) && !isIndirectBranch(Type);
893 return hasProperty(MCID::Compare, Type);
899 return hasProperty(MCID::MoveImm, Type);
915 return hasProperty(MCID::Select, Type);
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h37 class Type; variable
59 bool isWideningInstruction(Type *Ty, unsigned Opcode,
75 InstructionCost getIntImmCost(const APInt &Imm, Type *Ty,
158 InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
183 unsigned Opcode, Type *Ty,
195 InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
202 bool useNeonVector(const Type *Ty) const;
222 bool isElementTypeLegalForScalableVector(Type *Ty) const { in isElementTypeLegalForScalableVector()
251 bool isLegalMaskedLoad(Type *DataType, Align Alignment) { in isLegalMaskedLoad()
259 bool isLegalMaskedGatherScatter(Type *DataType) const { in isLegalMaskedGatherScatter()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h123 unsigned Opcode, Type *Ty,
134 InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
138 InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
187 InstructionCost getMinMaxCost(Type *Ty, Type *CondTy, bool IsUnsigned);
227 bool isLegalMaskedLoad(Type *DataType, Align Alignment);
229 bool isLegalNTLoad(Type *DataType, Align Alignment);
230 bool isLegalNTStore(Type *DataType, Align Alignment);
233 bool isLegalMaskedExpandLoad(Type *DataType);
234 bool isLegalMaskedCompressStore(Type *DataType);
235 bool hasDivRemOp(Type *DataType, bool IsSigned);
[all …]

12345678910>>...90