Home | History | Annotate | Download | only in gold

Lines Matching full:parallelism

167   // Default parallelism of 0 used to indicate that user did not specify.
168 // Actual parallelism default value depends on implementation.
169 // Currently, code generation defaults to no parallelism, whereas
171 static unsigned Parallelism = 0;
247 if (StringRef(opt_ + 5).getAsInteger(10, Parallelism))
248 message(LDPL_FATAL, "Invalid parallelism level: %s", opt_ + 5);
1073 // Note that the default parallelism is 1 instead of the
1075 // parallelism levels (e.g. symbol ordering will be different, and some uses
1076 // of inline asm currently have issues with parallelism >1).
1077 unsigned int MaxThreads = options::Parallelism ? options::Parallelism : 1;
1218 unsigned int MaxThreads = options::Parallelism
1219 ? options::Parallelism