OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Conf
(Results
1 - 14
of
14
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/LTO/
LTOBackend.cpp
181
createTargetMachine(const Config &
Conf
, const Target *TheTarget, Module &M) {
185
for (const std::string &A :
Conf
.MAttrs)
189
if (
Conf
.RelocModel)
190
RelocModel = *
Conf
.RelocModel;
196
if (
Conf
.CodeModel)
197
CodeModel = *
Conf
.CodeModel;
202
TheTriple,
Conf
.CPU, Features.getString(),
Conf
.Options, RelocModel,
203
CodeModel,
Conf
.CGOptLevel));
208
static void runNewPMPasses(const Config &
Conf
, Module &Mod, TargetMachine *TM
[
all
...]
LTO.cpp
79
SmallString<40> &Key, const Config &
Conf
, const ModuleSummaryIndex &Index,
113
AddString(
Conf
.CPU);
118
AddUnsigned(
Conf
.Options.RelaxELFRelocations);
119
AddUnsigned(
Conf
.Options.FunctionSections);
120
AddUnsigned(
Conf
.Options.DataSections);
121
AddUnsigned((unsigned)
Conf
.Options.DebuggerTuning);
122
for (auto &A :
Conf
.MAttrs)
124
if (
Conf
.RelocModel)
125
AddUnsigned(*
Conf
.RelocModel);
128
if (
Conf
.CodeModel
[
all
...]
ThinLTOCodeGenerator.cpp
349
llvm::lto::Config
Conf
;
350
Conf
.OptLevel = OptLevel;
351
Conf
.Options = TMBuilder.Options;
352
Conf
.CPU = TMBuilder.MCpu;
353
Conf
.MAttrs.push_back(TMBuilder.MAttr);
354
Conf
.RelocModel = TMBuilder.RelocModel;
355
Conf
.CGOptLevel = TMBuilder.CGOptLevel;
356
Conf
.Freestanding = Freestanding;
358
computeLTOCacheKey(Key,
Conf
, Index, ModuleID, ImportList, ExportList,
510
// TODO
Conf
.VisibilityScheme can be lto::Config::ELF for ELF
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-lto2/
llvm-lto2.cpp
238
Config
Conf
;
239
Conf
.DiagHandler = [](const DiagnosticInfo &DI) {
247
Conf
.CPU = codegen::getMCPU();
248
Conf
.Options = codegen::InitTargetOptionsFromCodeGenFlags(Triple());
249
Conf
.MAttrs = codegen::getMAttrs();
251
Conf
.RelocModel = RM.getValue();
252
Conf
.CodeModel = codegen::getExplicitCodeModel();
254
Conf
.DebugPassManager = DebugPassManager;
257
check(
Conf
.addSaveTemps(OutputFilename + "."),
261
Conf
.RemarksFilename = RemarksFilename
[
all
...]
/src/usr.sbin/wsmoused/
config_yacc.y
58
static struct block *
Conf
;
77
main {
Conf
= $1;
78
Conf
->b_name = strdup("global"); }
142
Conf
= NULL;
147
return
Conf
;
/src/external/apache2/llvm/dist/llvm/tools/gold/
gold-plugin.cpp
868
Config
Conf
;
871
Conf
.CPU = options::mcpu;
872
Conf
.Options = codegen::InitTargetOptionsFromCodeGenFlags(Triple());
876
Conf
.Options.RelaxELFRelocations = false;
880
Conf
.Options.FunctionSections = SplitSections;
882
Conf
.Options.DataSections = SplitSections;
884
Conf
.MAttrs = codegen::getMAttrs();
885
Conf
.RelocModel = RelocationModel;
886
Conf
.CodeModel = codegen::getExplicitCodeModel();
887
Conf
.CGOptLevel = getCGOptLevel()
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
COFFDumper.cpp
124
void printCOFFLoadConfig(const T *
Conf
, LoadConfigTables &Tables);
831
void COFFDumper::printCOFFLoadConfig(const T *
Conf
, LoadConfigTables &Tables) {
832
if (!
Conf
)
837
time_t TDS =
Conf
->TimeDateStamp;
839
W.printHex("Size",
Conf
->Size);
843
if (
Conf
->Size < offsetof(T, SEHandlerTable))
846
W.printHex("MajorVersion",
Conf
->MajorVersion);
847
W.printHex("MinorVersion",
Conf
->MinorVersion);
848
W.printHex("GlobalFlagsClear",
Conf
->GlobalFlagsClear);
849
W.printHex("GlobalFlagsSet",
Conf
->GlobalFlagsSet)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
BackendUtil.cpp
1524
lto::Config
Conf
;
1526
if (Error E =
Conf
.addSaveTemps(CGOpts.SaveTempsFilePrefix + ".",
1534
Conf
.CPU = TOpts.CPU;
1535
Conf
.CodeModel = getCodeModel(CGOpts);
1536
Conf
.MAttrs = TOpts.Features;
1537
Conf
.RelocModel = CGOpts.RelocationModel;
1538
Conf
.CGOptLevel = getCGOptLevel(CGOpts);
1539
Conf
.OptLevel = CGOpts.OptimizationLevel;
1540
initTargetOptions(Diags,
Conf
.Options, CGOpts, TOpts, LOpts, HeaderOpts);
1541
Conf
.SampleProfile = std::move(SampleProfile)
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/LTO/
LTOBackend.h
37
bool opt(const Config &
Conf
, TargetMachine *TM, unsigned Task, Module &Mod,
LTO.h
66
SmallString<40> &Key, const lto::Config &
Conf
,
276
/// FIXME: We do currently require the DiagHandler field to be set in
Conf
.
278
LTO(Config
Conf
, ThinBackend Backend = nullptr,
307
Config
Conf
;
311
const Config &
Conf
);
/src/external/bsd/openldap/dist/servers/slapd/
config.c
131
ConfigTable *config_find_keyword(ConfigTable *
Conf
, ConfigArgs *c) {
134
for(i = 0;
Conf
[i].name; i++)
135
if( (
Conf
[i].length && (!strncasecmp(c->argv[0],
Conf
[i].name,
Conf
[i].length))) ||
136
(!strcasecmp(c->argv[0],
Conf
[i].name)) ) break;
137
if ( !
Conf
[i].name ) return NULL;
138
if ((
Conf
[i].arg_type & ARGS_TYPES ) == ARG_BINARY ) {
151
c->ca_desc =
Conf
+i;
155
int config_check_vals(ConfigTable *
Conf
, ConfigArgs *c, int check_only )
[
all
...]
/src/external/bsd/openldap/dist/servers/lloadd/
config.c
217
/*
conf
-file only option */
2270
lload_config_find_keyword( ConfigTable *
Conf
, ConfigArgs *c )
2274
for ( i = 0;
Conf
[i].name; i++ )
2275
if ( (
Conf
[i].length &&
2277
c->argv[0],
Conf
[i].name,
Conf
[i].length ) ) ) ||
2278
( !strcasecmp( c->argv[0],
Conf
[i].name ) ) )
2280
if ( !
Conf
[i].name ) return NULL;
2281
if ( (
Conf
[i].arg_type & ARGS_TYPES) == ARG_BINARY ) {
2293
c->ca_desc =
Conf
+ i
[
all
...]
/src/external/mpl/bind/dist/doc/arm/_ext/
iscconf.py
57
@param confname Humand-readable name for texts, e.g. named.
conf
593
Conf
= domain_factory(domainname, confname, docutilsplaceholder, grammar)
594
app.add_domain(
Conf
)
595
app.connect("doctree-read",
Conf
.process_statementlist_nodes)
/src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/
llvm-exegesis.cpp
366
for (const BenchmarkCode &
Conf
: Configurations) {
368
Conf
, NumRepetitions, Repetitors, DumpObjectToDisk));
Completed in 50 milliseconds
Indexes created Wed Sep 23 00:26:21 UTC 2026