HomeSort by relevance Sort by last modified time
    Searched refs:GTI (Results 26 - 50 of 55) sorted by null

12 3

  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 44 gep_type_iterator GTI = gep_type_begin(GEP);
45 for (unsigned i = 1; i != Idx; ++i, ++GTI)
50 for (unsigned i = Idx, e = GEP->getNumOperands(); i != e; ++i, ++GTI) {
57 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
64 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 492 gep_type_iterator GTI = gep_type_begin(GEP);
494 if (!isa<SequentialType>(*GTI++))
506 uint64_t ElementSize = DL->getTypeAllocSize(*GTI);
MemCpyOptimizer.cpp 42 gep_type_iterator GTI = gep_type_begin(GEP);
43 for (unsigned i = 1; i != Idx; ++i, ++GTI)
48 for (unsigned i = Idx, e = GEP->getNumOperands(); i != e; ++i, ++GTI) {
55 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
62 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
SROA.cpp 688 for (gep_type_iterator GTI = gep_type_begin(GEPI),
690 GTI != GTE; ++GTI) {
691 ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand());
696 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
706 DL.getTypeAllocSize(GTI.getIndexedType()));
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 234 for (gep_type_iterator GTI = gep_type_begin(U), E = gep_type_end(U);
235 GTI != E; ++GTI) {
236 const Value *Op = GTI.getOperand();
237 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
242 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ValueTracking.cpp 559 gep_type_iterator GTI = gep_type_begin(I);
560 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i, ++GTI) {
562 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
572 Type *IndexedTy = GTI.getIndexedType();
    [all...]
BasicAliasAnalysis.cpp 316 gep_type_iterator GTI = gep_type_begin(GEPOp);
321 if (StructType *STy = dyn_cast<StructType>(*GTI++)) {
333 BaseOffs += TD->getTypeAllocSize(*GTI)*CIdx->getSExtValue();
337 uint64_t Scale = TD->getTypeAllocSize(*GTI);
    [all...]
ConstantFolding.cpp 213 gep_type_iterator GTI = gep_type_begin(CE);
215 i != e; ++i, ++GTI) {
220 if (StructType *ST = dyn_cast<StructType>(*GTI)) {
224 SequentialType *SQT = cast<SequentialType>(*GTI);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Value.cpp 368 gep_type_iterator GTI = gep_type_begin(GEP);
372 Type *Ty = *GTI++;
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 403 gep_type_iterator GTI = gep_type_begin(GEP);
416 ++i, ++GTI) {
418 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType()) & PtrSizeMask;
423 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
InstCombineCompares.cpp 472 gep_type_iterator GTI = gep_type_begin(GEP);
481 for (i = 1; i != e; ++i, ++GTI) {
487 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
490 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType());
506 uint64_t VariableScale = TD.getTypeAllocSize(GTI.getIndexedType());
509 for (++i, ++GTI; i != e; ++i, ++GTI) {
517 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
520 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType());
    [all...]
InstructionCombining.cpp 813 gep_type_iterator GTI = gep_type_begin(GEP);
815 I != E; ++I, ++GTI) {
817 SequentialType *SeqTy = dyn_cast<SequentialType>(*GTI);
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 410 gep_type_iterator GTI = gep_type_begin(GEPOp);
416 if (StructType *STy = dyn_cast<StructType>(*GTI++)) {
432 DL.getTypeAllocSize(*GTI) * CIdx->getSExtValue();
436 uint64_t Scale = DL.getTypeAllocSize(*GTI);
    [all...]
ValueTracking.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 499 for (gep_type_iterator GTI = gep_type_begin(I), E = gep_type_end(I);
500 GTI != E; ++GTI) {
501 const Value *Idx = GTI.getOperand();
502 if (auto *StTy = dyn_cast<StructType>(*GTI)) {
516 Type *Ty = GTI.getIndexedType();
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 554 for (gep_type_iterator GTI = gep_type_begin(U), E = gep_type_end(U);
555 GTI != E; ++GTI) {
556 const Value *Op = GTI.getOperand();
557 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
562 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 514 gep_type_iterator GTI = gep_type_begin(GEP);
523 for (i = 1; i != e; ++i, ++GTI) {
529 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
532 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
548 uint64_t VariableScale = DL.getTypeAllocSize(GTI.getIndexedType());
551 for (++i, ++GTI; i != e; ++i, ++GTI) {
559 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
562 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 449 gep_type_iterator GTI = gep_type_begin(U);
451 ++i, ++GTI) {
453 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
458 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 357 gep_type_iterator GTI = gep_type_begin(U);
359 II != IE; ++II, ++GTI) {
361 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
366 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMFastISel.cpp 757 gep_type_iterator GTI = gep_type_begin(U);
759 i != e; ++i, ++GTI) {
761 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
766 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86FastISel.cpp 399 gep_type_iterator GTI = gep_type_begin(U);
403 i != e; ++i, ++GTI) {
405 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
413 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 763 gep_type_iterator GTI = gep_type_begin(U);
765 i != e; ++i, ++GTI) {
767 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
772 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 892 gep_type_iterator GTI = gep_type_begin(U);
896 i != e; ++i, ++GTI) {
898 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
906 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
    [all...]

Completed in 1847 milliseconds

12 3