OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CSR
(Results
1 - 9
of
9
) sorted by null
/external/swiftshader/third_party/LLVM/lib/CodeGen/
RegisterClassInfo.cpp
42
const unsigned *
CSR
= TRI->getCalleeSavedRegs(MF);
43
if (Update ||
CSR
!= CalleeSaved) {
44
// Build a CSRNum map. Every
CSR
alias gets an entry pointing to the last
45
// overlapping
CSR
.
48
for (unsigned N = 0; unsigned Reg =
CSR
[N]; ++N)
51
CSRNum[Alias] = N + 1; // 0 means no
CSR
, 1 means CalleeSaved[0], ...
54
CalleeSaved =
CSR
;
68
/// registers filtered out. Volatile registers come first followed by
CSR
69
/// aliases ordered according to the
CSR
order specified by the target.
91
// PhysReg aliases a
CSR
, save it for later
[
all
...]
/external/llvm/lib/CodeGen/
RegisterClassInfo.cpp
51
const MCPhysReg *
CSR
= TRI->getCalleeSavedRegs(MF);
52
if (Update ||
CSR
!= CalleeSaved) {
53
// Build a CSRNum map. Every
CSR
alias gets an entry pointing to the last
54
// overlapping
CSR
.
57
for (unsigned N = 0; unsigned Reg =
CSR
[N]; ++N)
59
CSRNum[*AI] = N + 1; // 0 means no
CSR
, 1 means CalleeSaved[0], ...
62
CalleeSaved =
CSR
;
77
/// registers filtered out. Volatile registers come first followed by
CSR
78
/// aliases ordered according to the
CSR
order specified by the target.
107
// PhysReg aliases a
CSR
, save it for later
[
all
...]
RegAllocPBQP.cpp
554
const MCPhysReg *
CSR
= TRI.getCalleeSavedRegs(&MF);
555
for (unsigned i = 0;
CSR
[i] != 0; ++i)
556
if (TRI.regsOverlap(reg,
CSR
[i]))
RegAllocGreedy.cpp
100
CSRFirstTimeCost("regalloc-
csr
-first-time-cost",
847
unsigned
CSR
= RegClassInfo.getLastCalleeSavedAlias(PhysReg);
848
if (
CSR
== 0)
[
all
...]
/external/llvm/lib/Target/Hexagon/
HexagonGenExtract.cpp
87
ConstantInt *CSL = 0, *
CSR
= 0, *CM = 0;
94
bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(
CSR
)),
101
Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(
CSR
)),
108
CSR
= ConstantInt::get(Type::getInt32Ty(Ctx), 0);
118
Match = match(In, m_And(m_LShr(m_Value(BF), m_ConstantInt(
CSR
)),
125
Match = match(In, m_And(m_AShr(m_Value(BF), m_ConstantInt(
CSR
)),
132
Match = match(In, m_Shl(m_LShr(m_Value(BF), m_ConstantInt(
CSR
)),
139
Match = match(In, m_Shl(m_AShr(m_Value(BF), m_ConstantInt(
CSR
)),
152
uint32_t SR =
CSR
->getZExtValue();
/device/google/contexthub/firmware/os/platform/stm32/
pwr.c
51
volatile uint32_t
CSR
;
59
volatile uint32_t
CSR
;
157
static uint32_t pwrParseCsr(uint32_t
csr
)
161
if (
csr
& RCC_CSR_LPWRRSTF)
163
if (
csr
& RCC_CSR_WWDGRSTF)
165
if (
csr
& RCC_CSR_IWDGRSTF)
167
if (
csr
& RCC_CSR_SFTRSTF)
169
if (
csr
& RCC_CSR_PORRSTF)
171
if (
csr
& RCC_CSR_PINRSTF)
173
if (
csr
& RCC_CSR_BORRSTF
[
all
...]
bl.c
86
volatile uint32_t
CSR
;
/external/llvm/include/llvm/ADT/
Triple.h
134
CSR
,
/external/clang/lib/Sema/
SemaChecking.cpp
[
all
...]
Completed in 2372 milliseconds