OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TySize
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
AutoInitRemark.cpp
177
Optional<TypeSize>
TySize
= AI->getAllocationSizeInBits(DL);
179
TySize
? getSizeInBytes(
TySize
->getFixedSize()) : None;
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULateCodeGenPrepare.cpp
119
unsigned
TySize
= DL->getTypeStoreSize(Ty);
121
if (
TySize
>= 4)
AMDGPUCodeGenPrepare.cpp
307
int
TySize
= DL.getTypeSizeInBits(Ty);
310
return I.isSimple() &&
TySize
< 32 && Alignment >= 4 && DA->isUniform(&I);
1304
int
TySize
= Mod->getDataLayout().getTypeSizeInBits(I.getType());
1305
Type *IntNTy = Builder.getIntNTy(
TySize
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp
159
uint64_t
TySize
=
162
TySize
*= CUI->getZExtValue(); // Get total allocated size.
163
if (
TySize
== 0)
TySize
= 1; // Don't create zero-sized stack objects.
168
TySize
, 0, /*IsImmutable=*/false, /*isAliased=*/true);
171
FrameIndex = MF->getFrameInfo().CreateStackObject(
TySize
, Alignment,
SelectionDAGBuilder.cpp
3990
uint64_t
TySize
= DL.getTypeAllocSize(Ty);
4001
DAG.getConstant(
TySize
, dl, IntPtr));
8184
uint64_t
TySize
= DL.getTypeAllocSize(Ty);
8187
TySize
, DL.getPrefTypeAlign(Ty), false);
9390
uint64_t
TySize
= DL.getTypeAllocSize(CLI.RetTy);
9394
MF.getFrameInfo().CreateStackObject(
TySize
, Alignment, false);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SafeStack.cpp
668
uint64_t
TySize
= DL.getTypeAllocSize(Ty);
669
Value *Size = IRB.CreateMul(ArraySize, ConstantInt::get(IntPtrTy,
TySize
));
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsInstructionSelector.cpp
123
const unsigned
TySize
= Ty.getSizeInBits();
126
assert((Ty.isScalar() || Ty.isPointer()) &&
TySize
== 32 &&
133
assert((
TySize
== 32 ||
TySize
== 64) &&
135
if (
TySize
== 32)
186
const unsigned
TySize
= Ty.getSizeInBits();
192
assert(((Ty.isScalar() &&
TySize
== 32) ||
193
(Ty.isPointer() &&
TySize
== 32 && MemSizeInBytes == 4)) &&
195
(void)
TySize
;
223
assert(((
TySize
== 32 && MemSizeInBytes == 4) |
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp
814
unsigned
TySize
= DL.getTypeSizeInBits(Ty);
815
if ((
TySize
% 8) != 0)
829
unsigned VF = VecRegSize /
TySize
;
833
if (
TySize
> VecRegSize / 2 ||
834
(VecTy && TTI.getLoadVectorFactor(VF,
TySize
,
TySize
/ 8, VecTy) == 0))
868
unsigned
TySize
= DL.getTypeSizeInBits(Ty);
869
if ((
TySize
% 8) != 0)
876
unsigned VF = VecRegSize /
TySize
;
880
if (
TySize
> VecRegSize / 2 |
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp
1989
unsigned
TySize
= Ty->getScalarSizeInBits();
1991
if (
TySize
!= PtrSize) {
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp
3298
unsigned
TySize
= (unsigned)Context.getTypeSize(Ty);
3299
if (
TySize
<= StartBit)
4090
uint64_t
TySize
= TInfo.Width.getQuantity();
4097
CGF.Builder.CreateMemCpy(Tmp, RegAddr,
TySize
, false);
5907
CharUnits
TySize
= getContext().getTypeSizeInChars(Ty);
5913
int RegSize = IsIndirect ? 8 :
TySize
.getQuantity();
6041
TySize
< SlotSize) {
6042
CharUnits Offset = SlotSize -
TySize
;
6084
StackSize =
TySize
.alignTo(StackSlotSize);
6094
TySize
< StackSlotSize)
[
all
...]
CGExpr.cpp
737
uint64_t
TySize
= CGM.getMinimumObjectSize(Ty).getQuantity();
738
llvm::Value *Size = llvm::ConstantInt::get(IntPtrTy,
TySize
);
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp
16987
const TypeSize &
TySize
= Ty->getPrimitiveSizeInBits();
16988
if (
TySize
.isScalable() &&
TySize
.getKnownMinSize() > 128)
Completed in 96 milliseconds
Indexes created Sat Feb 28 05:31:39 UTC 2026