HomeSort by: relevance | last modified time | path
    Searched defs:GTI (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/Utils/
Local.h 44 gep_type_iterator GTI = gep_type_begin(GEP);
46 ++i, ++GTI) {
48 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType()) & PtrSizeMask;
55 if (StructType *STy = GTI.getStructTypeOrNull()) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 539 gep_type_iterator GTI = gep_type_begin(GEP);
540 for (unsigned I = 1, E = GEP->getNumOperands(); I != E; ++I, ++GTI) {
541 if (GTI.isStruct())
551 uint64_t ElementSize = DL->getTypeAllocSize(GTI.getIndexedType());
SeparateConstOffsetFromGEP.cpp 799 gep_type_iterator GTI = gep_type_begin(*GEP);
801 I != E; ++I, ++GTI) {
803 if (GTI.isSequential()) {
818 gep_type_iterator GTI = gep_type_begin(*GEP);
819 for (unsigned I = 1, E = GEP->getNumOperands(); I != E; ++I, ++GTI) {
820 if (GTI.isSequential()) {
830 ConstantOffset * DL->getTypeAllocSize(GTI.getIndexedType());
833 StructType *StTy = GTI.getStructType();
864 gep_type_iterator GTI = gep_type_begin(*Variadic);
867 for (unsigned I = 1, E = Variadic->getNumOperands(); I != E; ++I, ++GTI) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 503 gep_type_iterator GTI = gep_type_begin(GEPOp);
508 I != E; ++I, ++GTI) {
511 if (StructType *STy = GTI.getStructTypeOrNull()) {
526 DL.getTypeAllocSize(GTI.getIndexedType()).getFixedSize() *
534 DL.getTypeAllocSize(GTI.getIndexedType()).getFixedSize());
ValueTracking.cpp 1274 gep_type_iterator GTI = gep_type_begin(I);
1275 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i, ++GTI) {
1287 if (StructType *STy = GTI.getStructTypeOrNull()) {
1304 Type *IndexedTy = GTI.getIndexedType();
2054 for (gep_type_iterator GTI = gep_type_begin(GEP), GTE = gep_type_end(GEP);
2055 GTI != GTE; ++GTI) {
2057 if (StructType *STy = GTI.getStructTypeOrNull()) {
2058 ConstantInt *OpC = cast<ConstantInt>(GTI.getOperand());
2068 if (Q.DL.getTypeAllocSize(GTI.getIndexedType()).getKnownMinSize() == 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 871 auto GTI = gep_type_begin(PointeeType, Operands);
879 for (auto I = Operands.begin(); I != Operands.end(); ++I, ++GTI) {
880 TargetType = GTI.getIndexedType();
887 if (StructType *STy = GTI.getStructTypeOrNull()) {
898 DL.getTypeAllocSize(GTI.getIndexedType()).getFixedSize();
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsFastISel.cpp 490 gep_type_iterator GTI = gep_type_begin(U);
492 ++i, ++GTI) {
494 if (StructType *STy = GTI.getStructTypeOrNull()) {
499 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 345 gep_type_iterator GTI = gep_type_begin(U);
347 II != IE; ++II, ++GTI) {
349 if (StructType *STy = GTI.getStructTypeOrNull()) {
354 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMFastISel.cpp 743 gep_type_iterator GTI = gep_type_begin(U);
745 i != e; ++i, ++GTI) {
747 if (StructType *STy = GTI.getStructTypeOrNull()) {
752 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86FastISel.cpp 907 gep_type_iterator GTI = gep_type_begin(U);
911 i != e; ++i, ++GTI) {
913 if (StructType *STy = GTI.getStructTypeOrNull()) {
921 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 389 gep_type_iterator GTI = gep_type_begin(GEP);
398 for (i = 1; i != e; ++i, ++GTI) {
404 if (StructType *STy = GTI.getStructTypeOrNull()) {
407 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
423 uint64_t VariableScale = DL.getTypeAllocSize(GTI.getIndexedType());
426 for (++i, ++GTI; i != e; ++i, ++GTI) {
434 if (StructType *STy = GTI.getStructTypeOrNull()) {
437 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
InstructionCombining.cpp 1891 gep_type_iterator GTI = gep_type_begin(GEP);
1893 ++I, ++GTI) {
1895 if (GTI.isStruct())
1907 Type *EltTy = GTI.getIndexedType();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 4566 gep_type_iterator GTI = gep_type_begin(AddrInst);
4567 for (unsigned i = 1, e = AddrInst->getNumOperands(); i != e; ++i, ++GTI) {
4568 if (StructType *STy = GTI.getStructTypeOrNull()) {
4574 TypeSize TS = DL.getTypeAllocSize(GTI.getIndexedType());
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 11070 gep_type_iterator GTI = gep_type_begin(Instr);
11072 std::advance(GTI, U.getOperandNo()-1);
11073 Type *IdxTy = GTI.getIndexedType();

Completed in 84 milliseconds