Home | History | Annotate | Download | only in gold

Lines Matching refs:General_options

69      debug_(0), incremental_mode_(General_options::INCREMENTAL_OFF),
89 Parameters::set_options(const General_options* options)
208 General_options::Endianness endianness = this->options().endianness();
209 if (endianness != General_options::ENDIANNESS_NOT_SET)
212 if (endianness == General_options::ENDIANNESS_BIG)
216 gold_assert(endianness == General_options::ENDIANNESS_LITTLE);
253 gold_assert(this->incremental_mode_ != General_options::INCREMENTAL_OFF);
254 if (this->incremental_mode_ == General_options::INCREMENTAL_UPDATE)
256 this->incremental_mode_ = General_options::INCREMENTAL_FULL;
265 return this->incremental_mode_ != General_options::INCREMENTAL_OFF;
273 return this->incremental_mode_ == General_options::INCREMENTAL_FULL;
281 return (this->incremental_mode_ == General_options::INCREMENTAL_UPDATE
282 || this->incremental_mode_ == General_options::INCREMENTAL_AUTO);
294 set_parameters_options(const General_options* options)
356 General_options::Endianness endianness = parameters->options().endianness();
357 if (endianness == General_options::ENDIANNESS_BIG)
359 else if (endianness == General_options::ENDIANNESS_LITTLE)