HomeSort by relevance Sort by last modified time
    Searched refs:AllocasForType (Results 1 - 3 of 3) 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);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
Inliner.cpp 187 std::vector<AllocaInst *> &AllocasForType = InlinedArrayAllocas[ATy];
189 // Loop over the allocas in AllocasForType to see if we can reuse one. Note
193 // function. Also, AllocasForType can be empty of course!
195 for (AllocaInst *AvailableAlloca : AllocasForType) {
253 AllocasForType.push_back(AI);
    [all...]

Completed in 1970 milliseconds