OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BestRC
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetRegisterInfo.cpp
217
const TargetRegisterClass*
BestRC
= nullptr;
220
RC->contains(reg) && (!
BestRC
||
BestRC
->hasSubClass(RC)))
221
BestRC
= RC;
224
assert(
BestRC
&& "Couldn't find the register class");
225
return
BestRC
;
235
const TargetRegisterClass *
BestRC
= nullptr;
238
(!
BestRC
||
BestRC
->hasSubClass(RC)))
239
BestRC
= RC
[
all
...]
TargetLoweringBase.cpp
1243
const TargetRegisterClass *
BestRC
= RC;
1247
if (TRI->getSpillSize(*SuperRC) <= TRI->getSpillSize(*
BestRC
))
1251
BestRC
= SuperRC;
1253
return std::make_pair(
BestRC
, 1);
/src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kRegisterInfo.cpp
90
const TargetRegisterClass *
BestRC
= nullptr;
96
(!
BestRC
||
97
(
BestRC
->hasSubClass(RC) && RC->getNumRegs() >
BestRC
->getNumRegs())))
98
BestRC
= RC;
101
assert(
BestRC
&& "Couldn't find the register class");
102
return
BestRC
;
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenRegisters.cpp
2382
const CodeGenRegisterClass *
BestRC
= nullptr;
2385
RC.contains(Reg) && (!
BestRC
||
BestRC
->hasSubClass(&RC)))
2386
BestRC
= &RC;
2389
assert(
BestRC
&& "Couldn't find the register class");
2390
return
BestRC
;
Completed in 31 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026