Home
last modified time | relevance | path

Searched refs:PT (Results 1 – 25 of 138) sorted by relevance

123456

/freebsd/contrib/llvm-project/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp160 : BB(Block), PT(PT), Ran(R), Context(BB->getContext()) { in Modifier()
213 assert(PT->size()); in getRandomVal()
214 return PT->at(getRandom() % PT->size()); in getRandomVal()
234 Value *V = PT->at((index + i) % PT->size()); in getRandomValue()
265 Value *V = PT->at((index + i) % PT->size()); in getRandomPointerValue()
276 Value *V = PT->at((index + i) % PT->size()); in getRandomVectorValue()
326 PieceTable *PT; member
346 PT->push_back(V); in Act()
518 PT->push_back(V); in Act()
676 Modifier::PieceTable PT; in FillFunction() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVR.h55 auto *PT = cast<PointerType>(V->getType()); in isProgramMemoryAddress() local
56 assert(PT != nullptr && "unexpected MemSDNode"); in isProgramMemoryAddress()
57 return PT->getAddressSpace() == ProgramMemory || in isProgramMemoryAddress()
58 PT->getAddressSpace() == ProgramMemory1 || in isProgramMemoryAddress()
59 PT->getAddressSpace() == ProgramMemory2 || in isProgramMemoryAddress()
60 PT->getAddressSpace() == ProgramMemory3 || in isProgramMemoryAddress()
61 PT->getAddressSpace() == ProgramMemory4 || in isProgramMemoryAddress()
62 PT->getAddressSpace() == ProgramMemory5; in isProgramMemoryAddress()
66 auto *PT = cast<PointerType>(V->getType()); in getAddressSpace() local
67 assert(PT != nullptr && "unexpected MemSDNode"); in getAddressSpace()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCocoaConventions.cpp41 const PointerType* PT = RetTy->castAs<PointerType>(); in isRefType() local
42 if (!PT || !PT->getPointeeType().getUnqualifiedType()->isVoidType()) in isRefType()
69 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>(); in isCocoaObjectRef() local
72 if (!PT) in isCocoaObjectRef()
77 if (PT->isObjCIdType() || PT->isObjCQualifiedIdType() || in isCocoaObjectRef()
78 PT->isObjCClassType() || PT->isObjCQualifiedClassType()) in isCocoaObjectRef()
83 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); in isCocoaObjectRef()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteKernelArguments.cpp101 PointerType *PT = dyn_cast<PointerType>(Ptr->getType()); in promotePointer() local
102 if (!PT) in promotePointer()
105 if (PT->getAddressSpace() == AMDGPUAS::FLAT_ADDRESS || in promotePointer()
106 PT->getAddressSpace() == AMDGPUAS::GLOBAL_ADDRESS || in promotePointer()
107 PT->getAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS) in promotePointer()
110 if (PT->getAddressSpace() != AMDGPUAS::FLAT_ADDRESS) in promotePointer()
119 PointerType::get(PT->getContext(), AMDGPUAS::GLOBAL_ADDRESS); in promotePointer()
170 PointerType *PT = dyn_cast<PointerType>(Arg.getType()); in run() local
171 if (!PT || (PT->getAddressSpace() != AMDGPUAS::FLAT_ADDRESS && in run()
172 PT->getAddressSpace() != AMDGPUAS::GLOBAL_ADDRESS && in run()
[all …]
H A DAMDGPUPerfHintAnalysis.cpp337 if (auto PT = dyn_cast<PointerType>(V->getType())) { in isGlobalAddr() local
338 unsigned As = PT->getAddressSpace(); in isGlobalAddr()
346 if (auto PT = dyn_cast<PointerType>(V->getType())) in isLocalAddr() local
347 return PT->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS; in isLocalAddr()
H A DAMDGPULowerKernelArguments.cpp172 if (PointerType *PT = dyn_cast<PointerType>(ArgTy)) { in lowerKernelArguments() local
177 if ((PT->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS || in lowerKernelArguments()
178 PT->getAddressSpace() == AMDGPUAS::REGION_ADDRESS) && in lowerKernelArguments()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp362 if (!PT) in checkCall_bcmp()
404 if (!PT) in checkCall_bcopy()
445 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>(); in checkCall_bzero() local
446 if (!PT) in checkCall_bzero()
487 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>(); in checkCall_gets() local
488 if (!PT) in checkCall_gets()
527 const PointerType *PT = FPT->getParamType(1)->getAs<PointerType>(); in checkCall_getpw() local
528 if (!PT) in checkCall_getpw()
568 if (!PT) in checkCall_mktemp()
836 if (!PT) in checkCall_strCommon()
[all …]
H A DNSErrorChecker.cpp298 const ObjCObjectPointerType* PT = in IsNSError() local
301 if (!PT) in IsNSError()
304 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); in IsNSError()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DBuiltinGCs.cpp78 const PointerType *PT = cast<PointerType>(Ty); in isGCManagedPointer() local
84 return (1 == PT->getAddressSpace()); in isGCManagedPointer()
111 const PointerType *PT = cast<PointerType>(Ty); in isGCManagedPointer() local
113 return (1 == PT->getAddressSpace()); in isGCManagedPointer()
/freebsd/contrib/llvm-project/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h173 BaseTypeModifier PT,
176 : PT(static_cast<uint8_t>(PT)), VTM(static_cast<uint8_t>(VTM)), in PT() function
178 constexpr PrototypeDescriptor(uint8_t PT, uint8_t VTM, uint8_t TM) in PrototypeDescriptor()
179 : PT(PT), VTM(VTM), TM(TM) {} in PrototypeDescriptor()
181 uint8_t PT = static_cast<uint8_t>(BaseTypeModifier::Invalid); member
189 return PD.PT == PT && PD.VTM == VTM && PD.TM == TM;
192 return std::tie(PT, VTM, TM) < std::tie(PD.PT, PD.VTM, PD.TM);
/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp421 PT = BaseTypeModifier::Scalar; in parsePrototypeDescriptor()
424 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor()
427 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor()
431 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor()
435 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor()
439 PT = BaseTypeModifier::Vector; in parsePrototypeDescriptor()
443 PT = BaseTypeModifier::Void; in parsePrototypeDescriptor()
446 PT = BaseTypeModifier::SizeT; in parsePrototypeDescriptor()
449 PT = BaseTypeModifier::Ptrdiff; in parsePrototypeDescriptor()
458 PT = BaseTypeModifier::Float32; in parsePrototypeDescriptor()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DScanfFormatString.cpp425 QualType PT = QT->getPointeeType(); in fixType() local
428 if (const EnumType *ETy = PT->getAs<EnumType>()) { in fixType()
432 PT = ETy->getDecl()->getIntegerType(); in fixType()
435 const BuiltinType *BT = PT->getAs<BuiltinType>(); in fixType()
440 if (PT->isAnyCharacterType()) { in fixType()
442 if (PT->isWideCharType()) in fixType()
506 namedTypeToLengthModifier(PT, LM); in fixType()
516 if (PT->isRealFloatingType()) in fixType()
518 else if (PT->isSignedIntegerType()) in fixType()
520 else if (PT->isUnsignedIntegerType()) in fixType()
H A DFormatString.cpp333 const PointerType *PT = argTy->getAs<PointerType>(); in matchesType() local
334 if (!PT) in matchesType()
338 if (PT->getPointeeType().isConstQualified()) in matchesType()
341 argTy = PT->getPointeeType(); in matchesType()
511 const PointerType *PT = argTy->getAs<PointerType>(); in matchesType() local
512 if (!PT) in matchesType()
514 QualType pointeeTy = PT->getPointeeType(); in matchesType()
530 const PointerType *PT = argTy->getAs<PointerType>(); in matchesType() local
531 if (!PT) in matchesType()
574 if (const PointerType *PT = argTy->getAs<PointerType>()) { in matchesType() local
[all …]
/freebsd/contrib/ofed/opensm/include/complib/
H A Dcl_types_osd.h72 #define PT(exp) __builtin_expect( ((uintptr_t)(exp)), 1 ) macro
75 #define PT(exp) (exp)
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeEmitter.cpp81 PrimType PT = T.value_or(PT_Ptr); in compileFunc() local
82 Descriptor *Desc = P.createDescriptor(PD, PT); in compileFunc()
83 ParamDescriptors.insert({ParamOffset, {PT, Desc}}); in compileFunc()
86 ParamOffset += align(primSize(PT)); in compileFunc()
87 ParamTypes.push_back(PT); in compileFunc()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp174 for (auto PT = PrefixTable; PT->Table; PT++) { in getInstruction() local
175 if (PT->Prefix == Opc) { in getInstruction()
176 WasmInst = PT->Table; in getInstruction()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DPatterns.cpp29 PatternType PT(PT_ValueType); in get() local
30 PT.Data.Def = R; in get()
31 return PT; in get()
43 PatternType PT(PT_TypeOf); in get() local
44 PT.Data.Str = RawOpName.drop_front(1); in get()
45 return PT; in get()
53 PatternType PT(PT_TypeOf); in getTypeOf() local
54 PT.Data.Str = OpName; in getTypeOf()
55 return PT; in getTypeOf()
/freebsd/contrib/processor-trace/libipt/include/
H A Dintel-pt.h.in240 /** A collection of Intel PT errata. */
261 * Processor Trace (Intel(R) PT) packet before the LBR or Intel PT
424 /** An Intel PT decoder configuration.
522 /** Intel PT packet types. */
832 /** An Intel PT packet. */
916 /** Free an Intel PT packet encoder.
954 /** Encode an Intel PT packet.
962 * into the Intel PT buffer.
991 /** Free an Intel PT packet decoder.
1472 /** Free an Intel PT query decoder.
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTProperties.td8 Desc<"Specify how many instructions following an individual Intel PT "
20 Desc<"Specify how many instructions following an individual Intel PT "
/freebsd/share/i18n/esdb/ISO646/
H A DISO646.alias77 PT iso-ir-16
78 PT pt
/freebsd/sys/contrib/device-tree/Bindings/iio/temperature/
H A Dadi,ltc2983.yaml204 10 - RTD PT-10
205 11 - RTD PT-50
206 12 - RTD PT-100
207 13 - RTD PT-200
208 14 - RTD PT-500
209 15 - RTD PT-1000
210 16 - RTD PT-1000 (0.00375)
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DHost.cpp2012 Triple PT(Triple::normalize(TargetTripleString)); in getProcessTriple() local
2017 PT = withHostArch(PT); in getProcessTriple()
2020 if (sizeof(void *) == 8 && PT.isArch32Bit()) in getProcessTriple()
2021 PT = PT.get64BitArchVariant(); in getProcessTriple()
2022 if (sizeof(void *) == 4 && PT.isArch64Bit()) in getProcessTriple()
2023 PT = PT.get32BitArchVariant(); in getProcessTriple()
2025 return PT.str(); in getProcessTriple()
/freebsd/share/i18n/csmapper/EBCDIC/
H A DEBCDIC-PT%UCS.src1 # $NetBSD: EBCDIC-PT%UCS.src,v 1.2 2003/07/12 16:11:07 tshiozak Exp $
4 NAME "EBCDIC-PT/UCS"
H A DUCS%EBCDIC-PT.src1 # $NetBSD: UCS%EBCDIC-PT.src,v 1.3 2003/07/14 06:03:41 tshiozak Exp $
4 NAME "UCS/EBCDIC-PT"
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DPredicateInfo.h108 PredicateBase(PredicateType PT, Value *Op, Value *Condition) in PredicateBase() argument
109 : Type(PT), OriginalOp(Op), Condition(Condition) {} in PredicateBase()

123456