Lines Matching defs:cl
55 static cl::opt<bool>
57 cl::desc("Coalesce copies (default=true)"),
58 cl::init(true));
61 static cl::opt<bool>
63 cl::desc("Coalesce copies on split edges (default=subtarget)"), cl::Hidden);
66 static cl::opt<cl::boolOrDefault>
68 cl::desc("Coalesce copies that span blocks (default=subtarget)"),
69 cl::init(cl::BOU_UNSET), cl::Hidden);
71 static cl::opt<bool>
73 cl::desc("Verify machine instrs before and after register coalescing"),
74 cl::Hidden);
855 // CL = COPY vreg2.sub_8bit
859 // ECX<def, dead> = remat ; CL<imp-def>
861 // vreg1 will see the inteferences with CL but not with CH since
2072 unsigned cl = LHS->MBB->pred_size() + LHS->MBB->succ_size();
2074 if (cl != cr)
2075 return cl > cr ? -1 : 1;
2218 if (EnableGlobalCopies == cl::BOU_UNSET)
2221 JoinGlobalCopies = (EnableGlobalCopies == cl::BOU_TRUE);