Home
last modified time | relevance | path

Searched refs:AtomicType (Results 1 – 25 of 45) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h146 if (const AtomicType *AT = T->getAs<AtomicType>()) { in getAPSIntType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/
H A DContext.cpp103 if (auto *AT = dyn_cast<AtomicType>(T)) in classify()
H A DEvalEmitter.cpp111 if (auto *AT = Ty->getAs<AtomicType>()) in emitRetValue()
H A DProgram.cpp352 if (auto *AT = Ty->getAs<AtomicType>()) { in createDescriptor()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypes.cpp172 if (const auto *AT = T->getAs<AtomicType>()) in isSafeToConvert()
767 QualType valueType = cast<AtomicType>(Ty)->getValueType(); in ConvertType()
802 return isPaddedAtomicType(type->castAs<AtomicType>()); in isPaddedAtomicType()
805 bool CodeGenModule::isPaddedAtomicType(const AtomicType *type) { in isPaddedAtomicType()
H A DCGExprComplex.cpp39 return cast<ComplexType>(cast<AtomicType>(type)->getValueType()); in getComplexType()
905 if (const AtomicType *AT = LHSTy->getAs<AtomicType>()) in EmitCompoundAssignLValue()
H A DCodeGenModule.h55 class AtomicType; variable
788 bool isPaddedAtomicType(const AtomicType *type);
H A DCGAtomic.cpp50 if (auto *ATy = AtomicTy->getAs<AtomicType>()) in AtomicInfo()
788 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>()) in EmitAtomicExpr()
H A DCGDebugInfo.h209 llvm::DIType *CreateType(const AtomicType *Ty, llvm::DIFile *F);
H A DSwiftCallingConv.cpp97 } else if (const auto *atomicType = type->getAs<AtomicType>()) { in addTypedData()
H A DCodeGenFunction.cpp275 type = cast<AtomicType>(type)->getValueType(); in getEvaluationKind()
2262 type = cast<AtomicType>(ty)->getValueType(); in EmitVariablyModifiedType()
H A DCGExprConstant.cpp1606 if (auto AT = type->getAs<AtomicType>()) { in getNonMemoryType()
1688 if (auto AT = destType->getAs<AtomicType>()) { in emitForMemory()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td109 def AtomicType : TypeNode<Type>;
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp1027 const AstTypeMatcher<AtomicType> atomicType;
1055 AST_POLYMORPHIC_SUPPORTED_TYPES(AtomicType));
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp704 if (const AtomicType *atomic_type = type->getAs<AtomicType>()) in RequireCompleteType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DType.cpp1231 QualType VisitAtomicType(const AtomicType *T) { in VisitAtomicType()
1502 if (const auto AT = getTypePtr()->getAs<AtomicType>()) in getAtomicUnqualifiedType()
2595 if (const auto *AT = BaseTy->getAs<AtomicType>()) in isLiteralType()
3910 return Cache::get(cast<AtomicType>(T)->getValueType()); in computeCachedProperties()
3998 return computeTypeLinkageInfo(cast<AtomicType>(T)->getValueType()); in computeTypeLinkageInfo()
H A DASTStructuralEquivalence.cpp1198 if (!IsStructurallyEquivalent(Context, cast<AtomicType>(T1)->getValueType(), in IsStructurallyEquivalent()
1199 cast<AtomicType>(T2)->getValueType())) in IsStructurallyEquivalent()
H A DTypePrinter.cpp1177 void TypePrinter::printAtomicBefore(const AtomicType *T, raw_ostream &OS) { in printAtomicBefore()
1186 void TypePrinter::printAtomicAfter(const AtomicType *T, raw_ostream &OS) {} in printAtomicAfter()
H A DASTContext.cpp2364 TypeInfo Info = getTypeInfo(cast<AtomicType>(T)->getValueType()); in getTypeInfoImpl()
3565 const auto *at = cast<AtomicType>(ty); in getVariableArrayDecayedType()
5591 AtomicType::Profile(ID, T); in getAtomicType()
5594 if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos)) in getAtomicType()
5604 AtomicType *NewIP = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos); in getAtomicType()
5607 auto *New = new (*this, TypeAlignment) AtomicType(T, Canonical); in getAtomicType()
7452 getObjCEncodingForTypeImpl(T->castAs<AtomicType>()->getValueType(), S, in getObjCEncodingForTypeImpl()
9839 QualType LHSValue = LHS->castAs<AtomicType>()->getValueType(); in mergeTypes()
9840 QualType RHSValue = RHS->castAs<AtomicType>()->getValueType(); in mergeTypes()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h404 void VisitAtomicType(const AtomicType *T) { Visit(T->getValueType()); } in VisitAtomicType()
H A DTypeProperties.td345 let Class = AtomicType in {
H A DType.h6245 class AtomicType : public Type, public llvm::FoldingSetNode {
6250 AtomicType(QualType ValTy, QualType Canonical)
6811 return isa<AtomicType>(CanonicalType);
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2771 EVT AtomicType = cast<AtomicSDNode>(Node)->getMemoryVT(); in ExpandNode() local
2776 DAG.getValueType(AtomicType)); in ExpandNode()
2778 Node->getOperand(2), DAG.getValueType(AtomicType)); in ExpandNode()
2783 DAG.getValueType(AtomicType)); in ExpandNode()
2784 RHS = DAG.getZeroExtendInReg(Node->getOperand(2), dl, AtomicType); in ExpandNode()
2788 LHS = DAG.getZeroExtendInReg(Res, dl, AtomicType); in ExpandNode()
2789 RHS = DAG.getZeroExtendInReg(Node->getOperand(2), dl, AtomicType); in ExpandNode()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp1662 if (const AtomicType *AtomicArg = Arg->getAs<AtomicType>()) in DeduceTemplateArgumentsByTypeMatch()
1664 cast<AtomicType>(Param)->getValueType(), in DeduceTemplateArgumentsByTypeMatch()
6001 cast<AtomicType>(T)->getValueType(), in MarkUsedTemplateParameters()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6530 extern const AstTypeMatcher<AtomicType> atomicType;
6544 AST_POLYMORPHIC_SUPPORTED_TYPES(AtomicType));

12