Home | History | Annotate | Download | only in SPIRV

Lines Matching refs:newId

247     spv::Id spirvbin_t::localId(spv::Id id, spv::Id newId)
249 assert(id != spv::NoResult && newId != spv::NoResult);
254 if (newId != unmapped && newId != unused) {
262 if (isNewIdMapped(newId))
263 error(std::string("ID already used in module: ") + std::to_string(newId));
265 msg(4, 4, std::string("map: ") + std::to_string(id) + " -> " + std::to_string(newId));
266 setMapped(newId);
267 largestNewId = std::max(largestNewId, newId);
270 return idMapL[id] = newId;