OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BaseTy
(Results
1 - 17
of
17
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Index/
IndexBody.cpp
100
auto
BaseTy
= ME->getBase()->IgnoreImpCasts()->getType();
101
if (!
BaseTy
.isNull())
102
if (auto *CXXRD =
BaseTy
->getPointeeCXXRecordDecl())
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp
604
Type *
BaseTy
= ByValTy;
606
if (
BaseTy
)
607
return
BaseTy
== NewBaseTy;
609
BaseTy
= NewBaseTy;
610
if (allCallersPassValidPointerForArgument(Arg,
BaseTy
)) {
650
if (
BaseTy
&& LI->getType() !=
BaseTy
)
653
BaseTy
= LI->getType();
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp
884
llvm::StructType *
BaseTy
= nullptr;
886
BaseTy
= Ty;
890
BaseTy
= llvm::StructType::create(
892
addRecordTypeName(D,
BaseTy
, ".base");
893
//
BaseTy
and Ty must agree on their packedness for getLLVMFieldNo to work
906
Ty,
BaseTy
, (bool)Builder.IsZeroInitializable,
935
if (
BaseTy
) {
942
getDataLayout().getTypeAllocSizeInBits(
BaseTy
) &&
CGExprCXX.cpp
139
QualType
BaseTy
= BaseExpr->getType();
140
BaseQuals =
BaseTy
.getQualifiers();
TargetInfo.cpp
663
llvm::Type *
BaseTy
=
666
CGF.Builder.CreateVAArg(VAListAddr.getPointer(),
BaseTy
);
5231
llvm::Type *
BaseTy
= CGT.ConvertType(QualType(Base, 0));
5232
llvm::Type *CoerceTy = llvm::ArrayType::get(
BaseTy
, Members);
5301
llvm::Type *
BaseTy
= CGT.ConvertType(QualType(Base, 0));
5302
llvm::Type *CoerceTy = llvm::ArrayType::get(
BaseTy
, Members);
5448
llvm::Type *
BaseTy
= CGF.ConvertType(Ty);
5449
if (isa<llvm::ScalableVectorType>(
BaseTy
))
5727
llvm::Type *
BaseTy
= llvm::Type::getIntNTy(getVMContext(), Alignment);
5729
Size == Alignment ?
BaseTy
[
all
...]
CGDebugInfo.cpp
1873
auto *
BaseTy
= getOrCreateType(BI.getType(), Unit);
1902
llvm::DIType *DTy = DBuilder.createInheritance(RecordTy,
BaseTy
, BaseOffset,
CGExpr.cpp
3886
QualType
BaseTy
, QualType ElTy,
3891
if (
BaseTy
->isArrayType()) {
3897
llvm::Type *NewTy = CGF.ConvertType(
BaseTy
);
3902
if (!
BaseTy
->isVariableArrayType()) {
3924
QualType
BaseTy
= OMPArraySectionExpr::getBaseOriginalType(E->getBase());
3926
if (auto *AT = getContext().getAsArrayType(
BaseTy
))
3929
ResultExprTy =
BaseTy
->getPointeeType();
3992
QualType ArrayTy =
BaseTy
->isPointerType()
3994
:
BaseTy
;
4030
BaseTy
, VLA->getElementType(), IsLowerBound)
[
all
...]
CGOpenMPRuntime.cpp
936
static LValue loadToBegin(CodeGenFunction &CGF, QualType
BaseTy
, QualType ElTy,
938
BaseTy
=
BaseTy
.getNonReferenceType();
939
while ((
BaseTy
->isPointerType() ||
BaseTy
->isReferenceType()) &&
940
!CGF.getContext().hasSameType(
BaseTy
, ElTy)) {
941
if (const auto *PtrTy =
BaseTy
->getAs<PointerType>()) {
944
LValue RefLVal = CGF.MakeAddrLValue(BaseLV.getAddress(CGF),
BaseTy
);
947
BaseTy
=
BaseTy
->getPointeeType()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFAbstractMemberAccess.cpp
652
const DIType *
BaseTy
;
657
BaseTy
= stripQualifiers(CTy->getBaseType());
660
BaseTy
= stripQualifiers(MemberTy->getBaseType());
664
const auto *BTy = dyn_cast<DIBasicType>(
BaseTy
);
666
const auto *CompTy = dyn_cast<DICompositeType>(
BaseTy
);
670
BaseTy
= stripQualifiers(CompTy->getBaseType());
671
BTy = dyn_cast<DIBasicType>(
BaseTy
);
815
DIType *
BaseTy
= nullptr;
823
BaseTy
= stripQualifiers(CTy->getBaseType());
830
BaseTy
= stripQualifiers(DTy->getBaseType())
[
all
...]
BTFDebug.cpp
252
const auto *
BaseTy
= DDTy->getBaseType();
253
BTFMember.Type = BDebug.getTypeId(
BaseTy
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp
1401
DIType *
BaseTy
= CTy->getBaseType();
1402
assert(
BaseTy
&& "Unknown vector element type.");
1403
const uint64_t ElementSize =
BaseTy
->getSizeInBits();
CodeViewDebug.cpp
1855
const DIType *
BaseTy
= Ty;
1856
while (IsModifier &&
BaseTy
) {
1858
switch (
BaseTy
->getTag()) {
1877
BaseTy
= cast<DIDerivedType>(
BaseTy
)->getBaseType();
1884
if (
BaseTy
) {
1885
switch (
BaseTy
->getTag()) {
1889
return lowerTypePointer(cast<DIDerivedType>(
BaseTy
), PO);
1891
return lowerTypeMemberPointer(cast<DIDerivedType>(
BaseTy
), PO);
1897
TypeIndex ModifiedTI = getTypeIndex(
BaseTy
);
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp
1036
QualType
BaseTy
= Base->getType();
1037
SVal BaseVal = getStoreManager().evalDerivedToBase(ThisVal,
BaseTy
,
1041
VisitCXXDestructor(
BaseTy
, BaseVal.getAsRegion(), CurDtor->getBody(),
/src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp
2554
const Type *
BaseTy
= getBaseElementTypeUnsafe();
2555
assert(
BaseTy
&& "NULL element type");
2559
if (
BaseTy
->isIncompleteType())
2567
if (
BaseTy
->isScalarType() ||
BaseTy
->isVectorType() ||
2568
BaseTy
->isAnyComplexType())
2571
if (
BaseTy
->isReferenceType())
2574
if (const auto *RT =
BaseTy
->getAs<RecordType>()) {
2592
if (const auto *AT =
BaseTy
->getAs<AtomicType>())
2597
if (isa<AutoType>(
BaseTy
->getCanonicalTypeInternal())
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp
7933
QualType
BaseTy
= TypedefTy->desugar();
7936
if (
BaseTy
->isPipeType()) {
7944
} else if (const BuiltinType* ImgType =
BaseTy
->getAs<BuiltinType>()) {
SemaExpr.cpp
4868
QualType
BaseTy
= Base->getType();
4869
if (!(isa<ArrayType>(
BaseTy
) || isa<PointerType>(
BaseTy
)))
5085
QualType
BaseTy
= Base->getType();
5088
if (!
BaseTy
->isPointerType() && Base->isTypeDependent())
5091
if (!
BaseTy
->isPointerType() ||
5093
BaseTy
->getPointeeType()->isIncompleteType()))
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp
5369
Type *
BaseTy
= AddrMode.BaseReg ? AddrMode.BaseReg->getType() : nullptr;
5371
PointerType *BasePtrTy = dyn_cast_or_null<PointerType>(
BaseTy
);
Completed in 103 milliseconds
Indexes created Tue Feb 24 01:34:59 UTC 2026