HomeSort by relevance Sort by last modified time
    Searched refs:AllocasForType (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
Inliner.cpp 147 std::vector<AllocaInst*> &AllocasForType = InlinedArrayAllocas[ATy];
149 // Loop over the allocas in AllocasForType to see if we can reuse one. Note
153 // function. Also, AllocasForType can be empty of course!
155 for (unsigned i = 0, e = AllocasForType.size(); i != e; ++i) {
156 AllocaInst *AvailableAlloca = AllocasForType[i];
190 AllocasForType.push_back(AI);
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 151 std::vector<AllocaInst*> &AllocasForType = InlinedArrayAllocas[ATy];
153 // Loop over the allocas in AllocasForType to see if we can reuse one. Note
157 // function. Also, AllocasForType can be empty of course!
159 for (AllocaInst *AvailableAlloca : AllocasForType) {
218 AllocasForType.push_back(AI);

Completed in 4473 milliseconds