OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OrigTy
(Results
1 - 17
of
17
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastToStructChecker.cpp
42
QualType
OrigTy
= Ctx.getCanonicalType(E->getType());
45
const PointerType *OrigPTy = dyn_cast<PointerType>(
OrigTy
.getTypePtr());
/src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp
994
QualType
OrigTy
= OrigArg->getType();
996
uint64_t OrigTySize = Ctx.getTypeSize(
OrigTy
);
1009
if (MK == NSAPI::NSNumberWithBool &&
OrigTy
->isBooleanType())
1016
if (
OrigTy
->getAs<EnumType>() || isEnumConstant(OrigArg))
1018
if ((MK==NSAPI::NSNumberWithInteger) ==
OrigTy
->isSignedIntegerType() &&
1104
Diags.Report(Msg->getExprLoc(), diagID) <<
OrigTy
<< FinalTy
1134
QualType
OrigTy
= OrigArg->getType();
1135
if (
OrigTy
->isArrayType())
1136
OrigTy
= Ctx.getArrayDecayedType(
OrigTy
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
CallLowering.cpp
356
LLT
OrigTy
= MRI.getType(OrigRegs[0]);
359
if (SrcSize ==
OrigTy
.getSizeInBits())
641
const LLT
OrigTy
= getLLTForType(*Args[i].Ty, DL);
651
if (NumParts != 1 || NewLLT !=
OrigTy
) {
667
if (!Handler.isIncomingArgumentHandler() &&
OrigTy
!= ValTy) {
669
buildCopyToRegs(MIRBuilder, Args[i].Regs, Args[i].OrigRegs[0],
OrigTy
,
755
buildCopyFromRegs(MIRBuilder, Args[i].OrigRegs, Args[i].Regs,
OrigTy
,
RegisterBankInfo.cpp
475
LLT
OrigTy
= MRI.getType(OrigReg);
477
if (
OrigTy
!= NewTy) {
482
assert(
OrigTy
.getSizeInBits() <= NewTy.getSizeInBits() &&
486
<<
OrigTy
);
487
MRI.setType(NewReg,
OrigTy
);
LegalizerHelper.cpp
36
/// Try to break down \p
OrigTy
into \p NarrowTy sized pieces.
38
/// Returns the number of \p NarrowTy elements needed to reconstruct \p
OrigTy
,
44
getNarrowTypeBreakDown(LLT
OrigTy
, LLT NarrowTy, LLT &LeftoverTy) {
47
unsigned Size =
OrigTy
.getSizeInBits();
57
unsigned EltSize =
OrigTy
.getScalarSizeInBits();
1460
LLT
OrigTy
= MRI.getType(OrigReg);
1461
LLT LCMTy = getLCMType(WideTy,
OrigTy
);
1464
const int NumUnmergeParts = LCMTy.getSizeInBits() /
OrigTy
.getSizeInBits();
1486
UnmergeResults[I] = MRI.createGenericVirtualRegister(
OrigTy
);
1774
LLT
OrigTy
= MRI.getType(MI.getOperand(0).getReg())
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TypePromotion.cpp
109
IntegerType *
OrigTy
= nullptr;
134
Ctx(C),
OrigTy
(Ty), PromotedWidth(Width), Visited(visited),
137
assert(
OrigTy
->getPrimitiveSizeInBits().getFixedSize() <
637
Src->getType() ==
OrigTy
) {
679
<<
OrigTy
->getBitWidth() << " to " << PromotedWidth << "-bits\n");
812
Type *
OrigTy
= V->getType();
813
TypeSize =
OrigTy
->getPrimitiveSizeInBits().getFixedSize();
929
IRPromoter Promoter(*Ctx, cast<IntegerType>(
OrigTy
), PromotedWidth,
AtomicExpandPass.cpp
472
Type *
OrigTy
= NewVal->getType();
475
bool NeedBitcast =
OrigTy
->isFloatingPointTy();
477
IntegerType *IntTy = Builder.getIntNTy(
OrigTy
->getPrimitiveSizeInBits());
491
NewLoaded = Builder.CreateBitCast(NewLoaded,
OrigTy
);
CodeGenPrepare.cpp
2839
Type *
OrigTy
;
2844
: TypePromotionAction(Inst),
OrigTy
(Inst->getType()) {
2852
LLVM_DEBUG(dbgs() << "Undo: MutateType: " << *Inst << " with " << *
OrigTy
2854
Inst->mutateType(
OrigTy
);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp
661
Type *
OrigTy
= cast<PointerType>(Addr->getType())->getElementType();
662
const uint32_t TypeSize = DL.getTypeStoreSizeInBits(
OrigTy
);
754
Type *
OrigTy
= cast<PointerType>(Addr->getType())->getElementType();
756
Value *Cast = IRB.CreateBitOrPointerCast(C,
OrigTy
);
836
Type *
OrigTy
= cast<PointerType>(OrigPtrTy)->getElementType();
837
assert(
OrigTy
->isSized());
838
uint32_t TypeSize = DL.getTypeStoreSizeInBits(
OrigTy
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp
981
EVT
OrigTy
= cast<VTSDNode>(Node->getOperand(1))->getVT();
984
unsigned OrigBW =
OrigTy
.getScalarSizeInBits();
/src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTFDebug.cpp
694
const DIType *
OrigTy
= Ty;
720
visitTypeEntry(
OrigTy
, TypeId, false, false);
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonLoopIdiomRecognition.cpp
1022
Type *
OrigTy
= In->getType();
1023
assert(!
OrigTy
->isVoidTy() && "Invalid instruction to promote");
1056
IntegerType *TruncTy = cast<IntegerType>(
OrigTy
);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDecl.cpp
1063
llvm::Type *
OrigTy
= constant->getType();
1064
if (const auto STy = dyn_cast<llvm::StructType>(
OrigTy
))
1066
if (auto *ArrayTy = dyn_cast<llvm::ArrayType>(
OrigTy
)) {
CGExpr.cpp
2043
llvm::Type *
OrigTy
= CGM.getTypes().ConvertType(LV.getType());
2044
llvm::Type *Ty =
OrigTy
;
2045
if (
OrigTy
->isPointerTy())
2046
Ty = CGM.getTypes().getDataLayout().getIntPtrType(
OrigTy
);
2052
if (
OrigTy
->isPointerTy())
2053
Call = Builder.CreateIntToPtr(Call,
OrigTy
);
2317
llvm::Type *
OrigTy
= CGM.getTypes().ConvertType(Dst.getType());
2318
llvm::Type *Ty =
OrigTy
;
2319
if (
OrigTy
->isPointerTy())
2320
Ty = CGM.getTypes().getDataLayout().getIntPtrType(
OrigTy
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp
371
Type *
OrigTy
= V->getType();
386
uint32_t OrigBitWidth =
OrigTy
->getScalarSizeInBits();
414
uint32_t OrigBitWidth =
OrigTy
->getScalarSizeInBits();
432
uint32_t OrigBitWidth =
OrigTy
->getScalarSizeInBits();
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp
6370
auto
OrigTy
= DT->getOriginalType();
6371
if (!
OrigTy
.hasAddressSpace() &&
OrigTy
->isArrayType()) {
6374
OrigTy
= Context.getAddrSpaceQualType(
OrigTy
, ImplAS);
6375
OrigTy
= QualType(Context.getAsArrayType(
OrigTy
), 0);
6377
Type = Context.getDecayedType(
OrigTy
);
11867
QualType
OrigTy
, SourceLocation OrigLoc,
11869
:
OrigTy
(OrigTy), OrigLoc(OrigLoc), UseContext(UseContext), S(S) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVISelLowering.cpp
6676
bool IsRet, Type *
OrigTy
, const RISCVTargetLowering &TLI,
6738
DL.getTypeAllocSize(
OrigTy
) == TwoXLenInBytes) {
6945
Type *
OrigTy
= CLI ? CLI->getArgs()[Outs[i].OrigArgIndex].Ty : nullptr;
6949
ArgFlags, CCInfo, Outs[i].IsFixed, IsRet,
OrigTy
, *this,
Completed in 56 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026