HomeSort by: relevance | last modified time | path
    Searched defs:instr_labels (Results 1 - 2 of 2) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/intel/tools/
i965_asm.c 41 struct list_head instr_labels; variable in typeref:struct:list_head
138 LIST_FOR_EACH_ENTRY_SAFE(ilabel, s, &instr_labels, link) {
200 LIST_FOR_EACH_ENTRY(ilabel, &instr_labels, link) {
204 return list_is_empty(&instr_labels);
220 list_inithead(&instr_labels);
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
aco_optimizer.cpp 132 static constexpr uint64_t instr_labels = instr_usedef_labels | instr_mod_labels; member in namespace:aco
139 static_assert((instr_labels & temp_labels) == 0, "labels cannot intersect");
140 static_assert((instr_labels & val_labels) == 0, "labels cannot intersect");
162 label &= ~instr_labels;
168 label &= ~(instr_labels | val_labels); /* instr, temp and val alias */
175 label &= ~(instr_labels | temp_labels); /* instr, temp and val alias */
178 label &= ~(instr_labels | temp_labels); /* instr, temp and val alias */
616 if (info.label & instr_labels && info.instr == tmp.get())

Completed in 7 milliseconds