Home
last modified time | relevance | path

Searched refs:postCallSB (Results 1 – 4 of 4) sorted by relevance

/external/deqp-deps/SPIRV-Tools/source/opt/
Dinline_pass.cpp177 std::unordered_map<uint32_t, uint32_t>* postCallSB, in CloneSameBlockOps() argument
181 [&postCallSB, &preCallSB, &block_ptr, this](uint32_t* iid) { in CloneSameBlockOps()
182 const auto mapItr = (*postCallSB).find(*iid); in CloneSameBlockOps()
183 if (mapItr == (*postCallSB).end()) { in CloneSameBlockOps()
189 CloneSameBlockOps(&sb_inst, postCallSB, preCallSB, block_ptr); in CloneSameBlockOps()
194 (*postCallSB)[rid] = nid; in CloneSameBlockOps()
216 std::unordered_map<uint32_t, uint32_t> postCallSB; in GenInlineCode() local
282 &multiBlocks, &postCallSB, &preCallSB, earlyReturn, in GenInlineCode()
460 CloneSameBlockOps(&cp_inst, &postCallSB, &preCallSB, &new_blk_ptr); in GenInlineCode()
464 postCallSB[rid] = rid; in GenInlineCode()
Dinline_pass.h96 std::unordered_map<uint32_t, uint32_t>* postCallSB,
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dinline_pass.cpp201 std::unordered_map<uint32_t, uint32_t>* postCallSB, in CloneSameBlockOps() argument
204 return (*inst)->WhileEachInId([&postCallSB, &preCallSB, &block_ptr, in CloneSameBlockOps()
206 const auto mapItr = (*postCallSB).find(*iid); in CloneSameBlockOps()
207 if (mapItr == (*postCallSB).end()) { in CloneSameBlockOps()
213 if (!CloneSameBlockOps(&sb_inst, postCallSB, preCallSB, block_ptr)) { in CloneSameBlockOps()
224 (*postCallSB)[rid] = nid; in CloneSameBlockOps()
247 std::unordered_map<uint32_t, uint32_t> postCallSB; in GenInlineCode() local
322 &calleeTypeId, &multiBlocks, &postCallSB, &preCallSB, earlyReturn, in GenInlineCode()
534 if (!CloneSameBlockOps(&cp_inst, &postCallSB, &preCallSB, in GenInlineCode()
542 postCallSB[rid] = rid; in GenInlineCode()
Dinline_pass.h99 std::unordered_map<uint32_t, uint32_t>* postCallSB,