HomeSort by relevance Sort by last modified time
    Searched defs:GTI (Results 1 - 12 of 12) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
Local.h 201 gep_type_iterator GTI = gep_type_begin(GEP);
203 ++i, ++GTI) {
205 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType()) & PtrSizeMask;
211 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
  /external/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 602 gep_type_iterator GTI = gep_type_begin(*GEP);
604 I != E; ++I, ++GTI) {
606 if (isa<SequentialType>(*GTI)) {
629 gep_type_iterator GTI = gep_type_begin(*GEP);
632 ++I, ++GTI) {
633 if (isa<SequentialType>(*GTI)) {
658 gep_type_iterator GTI = gep_type_begin(*GEP);
659 for (unsigned I = 1, E = GEP->getNumOperands(); I != E; ++I, ++GTI) {
660 if (isa<SequentialType>(*GTI)) {
670 ConstantOffset * DL->getTypeAllocSize(GTI.getIndexedType())
    [all...]
MemCpyOptimizer.cpp 45 gep_type_iterator GTI = gep_type_begin(GEP);
46 for (unsigned i = 1; i != Idx; ++i, ++GTI)
51 for (unsigned i = Idx, e = GEP->getNumOperands(); i != e; ++i, ++GTI) {
58 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
65 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 348 gep_type_iterator GTI = gep_type_begin(GEPOp);
353 if (StructType *STy = dyn_cast<StructType>(*GTI++)) {
365 BaseOffs += DL->getTypeAllocSize(*GTI)*CIdx->getSExtValue();
369 uint64_t Scale = DL->getTypeAllocSize(*GTI);
    [all...]
ValueTracking.cpp 614 gep_type_iterator GTI = gep_type_begin(I);
615 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i, ++GTI) {
617 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
639 Type *IndexedTy = GTI.getIndexedType();
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 353 gep_type_iterator GTI = gep_type_begin(U);
355 ++i, ++GTI) {
357 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
362 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 321 gep_type_iterator GTI = gep_type_begin(U);
323 II != IE; ++II, ++GTI) {
325 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
330 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineCompares.cpp 509 gep_type_iterator GTI = gep_type_begin(GEP);
518 for (i = 1; i != e; ++i, ++GTI) {
524 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
527 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
543 uint64_t VariableScale = DL.getTypeAllocSize(GTI.getIndexedType());
546 for (++i, ++GTI; i != e; ++i, ++GTI) {
554 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
557 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 798 gep_type_iterator GTI = gep_type_begin(U);
800 i != e; ++i, ++GTI) {
802 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
807 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 728 gep_type_iterator GTI = gep_type_begin(U);
732 i != e; ++i, ++GTI) {
734 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
742 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]

Completed in 498 milliseconds