OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:QTy
(Results
1 - 11
of
11
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTBAA.cpp
79
static bool TypeHasMayAlias(QualType
QTy
) {
81
if (auto *TD =
QTy
->getAsTagDecl())
88
while (auto *TT =
QTy
->getAs<TypedefType>()) {
91
QTy
= TT->desugar();
97
static bool isValidBaseType(QualType
QTy
) {
98
if (
QTy
->isReferenceType())
100
if (const RecordType *TTy =
QTy
->getAs<RecordType>()) {
225
llvm::MDNode *CodeGenTBAA::getTypeInfo(QualType
QTy
) {
232
if (TypeHasMayAlias(
QTy
))
241
if (isValidBaseType(
QTy
))
[
all
...]
CodeGenTBAA.h
177
llvm::MDNode *getTypeInfo(QualType
QTy
);
189
llvm::MDNode *getTBAAStructInfo(QualType
QTy
);
193
llvm::MDNode *getBaseTypeInfo(QualType
QTy
);
CGCXX.cpp
282
const Type *
QTy
= Qual->getAsType();
283
QualType T = QualType(
QTy
, 0);
CodeGenModule.h
743
llvm::MDNode *getTBAATypeInfo(QualType
QTy
);
753
llvm::MDNode *getTBAAStructInfo(QualType
QTy
);
757
llvm::MDNode *getTBAABaseTypeInfo(QualType
QTy
);
785
bool isTypeConstant(QualType
QTy
, bool ExcludeCtorDtor);
CGCall.cpp
1919
static bool DetermineNoUndef(QualType
QTy
, CodeGenTypes &Types,
1922
llvm::Type *Ty = Types.ConvertTypeForMem(
QTy
);
1942
if (
QTy
->isExtIntType())
1944
if (
QTy
->isReferenceType())
1946
if (
QTy
->isNullPtrType())
1948
if (
QTy
->isMemberPointerType())
1952
if (
QTy
->isScalarType()) {
1953
if (const ComplexType *Complex = dyn_cast<ComplexType>(
QTy
))
1957
if (const VectorType *Vector = dyn_cast<VectorType>(
QTy
))
1959
if (const MatrixType *Matrix = dyn_cast<MatrixType>(
QTy
))
[
all
...]
CGDebugInfo.cpp
2705
QualType
QTy
(Ty, 0);
2706
TypeCache[
QTy
.getAsOpaquePtr()].reset(RealDecl);
2865
QualType
QTy
(Ty, 0);
2866
auto SizeExpr = SizeExprCache.find(
QTy
);
3381
QualType
QTy
(Ty, 0);
3383
auto *T = cast_or_null<llvm::DICompositeType>(getTypeOrNull(
QTy
));
3400
TypeCache[
QTy
.getAsOpaquePtr()].reset(Res);
3793
QualType
QTy
(ID->getTypeForDecl(), 0);
3794
auto It = TypeCache.find(
QTy
.getAsOpaquePtr());
5068
QualType
QTy
(P.first->getTypeForDecl(), 0)
[
all
...]
CodeGenModule.cpp
840
llvm::MDNode *CodeGenModule::getTBAATypeInfo(QualType
QTy
) {
843
return TBAA->getTypeInfo(
QTy
);
872
llvm::MDNode *CodeGenModule::getTBAAStructInfo(QualType
QTy
) {
875
return TBAA->getTBAAStructInfo(
QTy
);
878
llvm::MDNode *CodeGenModule::getTBAABaseTypeInfo(QualType
QTy
) {
881
return TBAA->getBaseTypeInfo(
QTy
);
TargetInfo.cpp
10624
QualType
QTy
= FD->getType();
10629
if (getContext().getTypeSize(
QTy
) > XLen && BitWidth <= XLen)
10630
QTy
= getContext().getIntTypeForBitwidth(XLen, false);
10638
QTy
, CurOff + getContext().toCharUnitsFromBits(FieldOffInBits),
CGBuiltin.cpp
6703
llvm::FixedVectorType *
QTy
=
6705
Ops[0] = Builder.CreateBitCast(Ops[0],
QTy
);
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp
6411
QualType
QTy
= PVD->getType()
6415
const Type *Ty =
QTy
.getTypePtrOrNull();
6418
<<
QTy
<< getLangOpts().CPlusPlus << E->getSourceRange();
18061
DSAStackTy *Stack, QualType
QTy
,
18064
if (
QTy
->isIncompleteType(&ND)) {
18065
SemaRef.Diag(SL, diag::err_incomplete_type) <<
QTy
<< SR;
18069
!
QTy
.isTriviallyCopyableType(SemaRef.Context))
18070
SemaRef.Diag(SL, diag::warn_omp_non_trivial_type_mapped) <<
QTy
<< SR;
SemaExpr.cpp
17752
QualType
QTy
= Var->getType();
17754
QTy
= PVD->getOriginalType();
17755
captureVariablyModifiedType(Context,
QTy
, CSI);
17772
QualType
QTy
= Var->getType();
17774
QTy
= PVD->getOriginalType();
17782
captureVariablyModifiedType(Context,
QTy
, OuterRSI);
Completed in 138 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026