HomeSort by relevance Sort by last modified time
    Searched defs:CSR (Results 1 - 8 of 8) sorted by null

  /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 547 const MCPhysReg *CSR = TRI.getCalleeSavedRegs(&MF);
548 for (unsigned i = 0; CSR[i] != 0; ++i)
549 if (TRI.regsOverlap(reg, CSR[i]))
RegAllocGreedy.cpp 99 CSRFirstTimeCost("regalloc-csr-first-time-cost",
845 unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg);
846 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/src/platform/stm32f4xx/
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 81 volatile uint32_t CSR;
    [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 129 CSR,
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 744 milliseconds