OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Producer
(Results
1 - 18
of
18
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Object/
IRSymtab.cpp
325
setStr(Hdr.
Producer
, kExpectedProducerName);
399
// We cannot use the regular reader to read the version and
producer
, because
401
// can rely on is that the version and
producer
will be present as the first
405
StringRef
Producer
= Hdr->
Producer
.get(BFC.StrtabForSymtab);
407
Producer
!= kExpectedProducerName)
IRSymtab.cpp
325
setStr(Hdr.
Producer
, kExpectedProducerName);
399
// We cannot use the regular reader to read the version and
producer
, because
401
// can rely on is that the version and
producer
will be present as the first
405
StringRef
Producer
= Hdr->
Producer
.get(BFC.StrtabForSymtab);
407
Producer
!= kExpectedProducerName)
/src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
wasm2yaml.cpp
156
WasmYAML::ProducerEntry
Producer
;
157
Producer
.Name = E.first;
158
Producer
.Version = E.second;
159
ProducersSec->Languages.push_back(
Producer
);
162
WasmYAML::ProducerEntry
Producer
;
163
Producer
.Name = E.first;
164
Producer
.Version = E.second;
165
ProducersSec->Tools.push_back(
Producer
);
168
WasmYAML::ProducerEntry
Producer
;
169
Producer
.Name = E.first
[
all
...]
wasm2yaml.cpp
156
WasmYAML::ProducerEntry
Producer
;
157
Producer
.Name = E.first;
158
Producer
.Version = E.second;
159
ProducersSec->Languages.push_back(
Producer
);
162
WasmYAML::ProducerEntry
Producer
;
163
Producer
.Name = E.first;
164
Producer
.Version = E.second;
165
ProducersSec->Tools.push_back(
Producer
);
168
WasmYAML::ProducerEntry
Producer
;
169
Producer
.Name = E.first
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCChecker.cpp
428
auto
Producer
= registerProducer(Op.getReg(), Consumer);
429
if (std::get<0>(
Producer
) == nullptr) {
430
reportError(I.getLoc(), "New value register consumer has no
producer
");
435
if (std::get<2>(
Producer
).isPredicated() &&
439
std::get<0>(
Producer
)->getLoc(),
440
"Register
producer
is predicated and consumer is unconditional");
442
"Instruction does not have a valid new register
producer
");
445
if (std::get<2>(
Producer
).Register != Hexagon::NoRegister &&
446
std::get<2>(
Producer
).Register != Consumer.Register) {
447
reportNote(std::get<0>(
Producer
)->getLoc()
[
all
...]
HexagonMCChecker.cpp
428
auto
Producer
= registerProducer(Op.getReg(), Consumer);
429
if (std::get<0>(
Producer
) == nullptr) {
430
reportError(I.getLoc(), "New value register consumer has no
producer
");
435
if (std::get<2>(
Producer
).isPredicated() &&
439
std::get<0>(
Producer
)->getLoc(),
440
"Register
producer
is predicated and consumer is unconditional");
442
"Instruction does not have a valid new register
producer
");
445
if (std::get<2>(
Producer
).Register != Hexagon::NoRegister &&
446
std::get<2>(
Producer
).Register != Consumer.Register) {
447
reportNote(std::get<0>(
Producer
)->getLoc()
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
IRSymtab.h
137
/// The
producer
's version string (LLVM_VERSION_STRING " " LLVM_REVISION).
138
/// Consumers should rebuild the symbol table from IR if the
producer
's
141
Str
Producer
;
IRSymtab.h
137
/// The
producer
's version string (LLVM_VERSION_STRING " " LLVM_REVISION).
138
/// Consumers should rebuild the symbol table from IR if the
producer
's
141
Str
Producer
;
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/Disassembler/
HexagonDisassembler.cpp
477
// Couldn't find
producer
493
unsigned
Producer
= SubregBit ?
496
assert(
Producer
!= Hexagon::NoRegister);
497
MCO.setReg(
Producer
);
499
unsigned
Producer
=
502
if (HexagonMCInstrInfo::IsVecRegPair(
Producer
)) {
503
const bool Rev = HexagonMCInstrInfo::IsReverseVecRegPair(
Producer
);
505
Rev ?
Producer
- Hexagon::WR0 :
Producer
- Hexagon::W0;
506
Producer
= (ProdPairIndex << 1) + SubregBit + Hexagon::V0
[
all
...]
HexagonDisassembler.cpp
477
// Couldn't find
producer
493
unsigned
Producer
= SubregBit ?
496
assert(
Producer
!= Hexagon::NoRegister);
497
MCO.setReg(
Producer
);
499
unsigned
Producer
=
502
if (HexagonMCInstrInfo::IsVecRegPair(
Producer
)) {
503
const bool Rev = HexagonMCInstrInfo::IsReverseVecRegPair(
Producer
);
505
Rev ?
Producer
- Hexagon::WR0 :
Producer
- Hexagon::W0;
506
Producer
= (ProdPairIndex << 1) + SubregBit + Hexagon::V0
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ModuloSchedule.cpp
1356
MachineInstr *
Producer
= MRI.getUniqueVRegDef(Reg);
1357
if (!
Producer
)
1361
if (!
Producer
->isPHI()) {
1363
// difference between the consumer and
producer
stages.
1364
if (
Producer
->getParent() != BB)
1365
//
Producer
was not inside the loop. Use the register as-is.
1367
int ProducerStage = S.getStage(
Producer
);
1382
auto LoopProducer =
Producer
;
1397
// In addition, Consumer's cycle must be scheduled after
Producer
in the
1406
// Peel off the first phi from Defaults and insert a phi between
producer
[
all
...]
ModuloSchedule.cpp
1356
MachineInstr *
Producer
= MRI.getUniqueVRegDef(Reg);
1357
if (!
Producer
)
1361
if (!
Producer
->isPHI()) {
1363
// difference between the consumer and
producer
stages.
1364
if (
Producer
->getParent() != BB)
1365
//
Producer
was not inside the loop. Use the register as-is.
1367
int ProducerStage = S.getStage(
Producer
);
1382
auto LoopProducer =
Producer
;
1397
// In addition, Consumer's cycle must be scheduled after
Producer
in the
1406
// Peel off the first phi from Defaults and insert a phi between
producer
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFLinker.cpp
1757
// prologue over and that works because we act as both
producer
and
2240
StringRef
Producer
;
2245
Producer
= StringPool.internString("dsymutil");
2250
Producer
= StringPool.internString("dwarfopt");
2257
DIEInteger(StringPool.getStringOffset(
Producer
)));
DWARFLinker.cpp
1757
// prologue over and that works because we act as both
producer
and
2240
StringRef
Producer
;
2245
Producer
= StringPool.internString("dsymutil");
2250
Producer
= StringPool.internString("dwarfopt");
2257
DIEInteger(StringPool.getStringOffset(
Producer
)));
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp
587
std::string
Producer
= getClangFullVersion();
638
LangTag, CUFile, CGOpts.EmitVersionIdentMetadata ?
Producer
: "",
CGDebugInfo.cpp
587
std::string
Producer
= getClangFullVersion();
638
LangTag, CUFile, CGOpts.EmitVersionIdentMetadata ?
Producer
: "",
/src/sys/external/bsd/acpica/dist/include/
actbl2.h
2160
UINT32
Producer
;
actbl2.h
2160
UINT32
Producer
;
Completed in 66 milliseconds
Indexes created Fri Jun 19 00:25:02 UTC 2026