HomeSort by relevance Sort by last modified time
    Searched refs:idx_begin (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/swiftshader/third_party/LLVM/include/llvm/
Operator.h 247 inline op_iterator idx_begin() { return op_begin()+1; } function in class:llvm::GEPOperator
248 inline const_op_iterator idx_begin() const { return op_begin()+1; } function in class:llvm::GEPOperator
280 for (const_op_iterator I = idx_begin(), E = idx_end(); I != E; ++I) {
293 for (const_op_iterator I = idx_begin(), E = idx_end(); I != E; ++I) {
  /external/llvm/include/llvm/IR/
Operator.h 383 inline op_iterator idx_begin() { return op_begin()+1; } function in class:llvm::GEPOperator
384 inline const_op_iterator idx_begin() const { return op_begin()+1; } function in class:llvm::GEPOperator
423 for (const_op_iterator I = idx_begin(), E = idx_end(); I != E; ++I) {
436 for (const_op_iterator I = idx_begin(), E = idx_end(); I != E; ++I) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Operator.h 455 inline op_iterator idx_begin() { return op_begin()+1; } function in class:llvm::GEPOperator
456 inline const_op_iterator idx_begin() const { return op_begin()+1; } function in class:llvm::GEPOperator
495 for (const_op_iterator I = idx_begin(), E = idx_end(); I != E; ++I) {
508 for (const_op_iterator I = idx_begin(), E = idx_end(); I != E; ++I) {
516 return count_if(make_range(idx_begin(), idx_end()), [](const Use& use) {
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
InstructionsTest.cpp 671 ASSERT_NE(GEPI->idx_begin(), GEPI->idx_end());
672 ASSERT_EQ(GEPI->idx_end(), std::next(GEPI->idx_begin(), 3));
673 EXPECT_EQ(Indices[0], GEPI->idx_begin()[0]);
674 EXPECT_EQ(Indices[1], GEPI->idx_begin()[1]);
675 EXPECT_EQ(Indices[2], GEPI->idx_begin()[2]);
676 EXPECT_EQ(GEPI->idx_begin(), GEPI->indices().begin());
680 ASSERT_NE(CGEPI->idx_begin(), CGEPI->idx_end());
681 ASSERT_EQ(CGEPI->idx_end(), std::next(CGEPI->idx_begin(), 3));
682 EXPECT_EQ(Indices[0], CGEPI->idx_begin()[0]);
683 EXPECT_EQ(Indices[1], CGEPI->idx_begin()[1])
    [all...]
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 109 if (SelIVI->getNumIndices() == 1 && *SelIVI->idx_begin() == 1) {
112 ExcIVI->getNumIndices() == 1 && *ExcIVI->idx_begin() == 0) {
SjLjEHPrepare.cpp 143 if (*EVI->idx_begin() == 0)
145 else if (*EVI->idx_begin() == 1)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 112 if (SelIVI->getNumIndices() == 1 && *SelIVI->idx_begin() == 1) {
115 ExcIVI->getNumIndices() == 1 && *ExcIVI->idx_begin() == 0) {
SjLjEHPrepare.cpp 146 if (*EVI->idx_begin() == 0)
148 else if (*EVI->idx_begin() == 1)
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
LoopDependenceAnalysis.cpp 258 for(GEPOperator::const_op_iterator aIdx = aGEP->idx_begin(),
260 bIdx = bGEP->idx_begin(),
  /external/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 240 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I)
268 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I) {
489 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I)
NaryReassociate.cpp 305 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I)
375 for (auto Index = GEP->idx_begin(); Index != GEP->idx_end(); ++Index)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 276 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I)
304 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I) {
525 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I)
NaryReassociate.cpp 301 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I)
373 for (auto Index = GEP->idx_begin(); Index != GEP->idx_end(); ++Index)
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
EarlyCSE.cpp 102 for (ExtractValueInst::idx_iterator I = EVI->idx_begin(),
106 for (InsertValueInst::idx_iterator I = IVI->idx_begin(),
  /external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp 159 SmallVector<Value *, 8> Indices(GEP->idx_begin(), GEP->idx_end());
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 230 index = *EV->idx_begin();
ArgumentPromotion.cpp 507 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
552 for (User::op_iterator i = GEP->idx_begin(), e = GEP->idx_end();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
IPConstantPropagation.cpp 259 index = *EV->idx_begin();
ArgumentPromotion.cpp 357 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
403 for (User::op_iterator i = GEP->idx_begin(), e = GEP->idx_end();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 236 index = *EV->idx_begin();
ArgumentPromotion.cpp 435 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
613 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
659 for (User::op_iterator i = GEP->idx_begin(), e = GEP->idx_end(); i != e;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineLoadStoreAlloca.cpp 729 SmallVector<Value *, 4> Ops(GEPI->idx_begin(), GEPI->idx_begin() + Idx);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]

Completed in 805 milliseconds

1 2 3 4