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

  /external/llvm/lib/CodeGen/
RegisterClassInfo.cpp 50 const MCPhysReg *CSR = TRI->getCalleeSavedRegs(MF);
51 if (Update || CSR != CalleeSaved) {
52 // Build a CSRNum map. Every CSR alias gets an entry pointing to the last
53 // overlapping CSR.
56 for (unsigned N = 0; unsigned Reg = CSR[N]; ++N)
58 CSRNum[*AI] = N + 1; // 0 means no CSR, 1 means CalleeSaved[0], ...
61 CalleeSaved = CSR;
76 /// registers filtered out. Volatile registers come first followed by CSR
77 /// aliases ordered according to the CSR order specified by the target.
105 // PhysReg aliases a CSR, save it for later
    [all...]
MachineFunction.cpp 579 for (const uint16_t *CSR = TRI->getCalleeSavedRegs(MF); CSR && *CSR; ++CSR)
580 BV.set(*CSR);
    [all...]
RegAllocGreedy.cpp 720 // Don't start using a CSR when the CostPerUseLimit is low.
722 if (unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg))
723 if (!MRI->isPhysRegUsed(CSR)) {
724 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " would clobber CSR "
725 << PrintReg(CSR, TRI) << '\n');
    [all...]
  /external/chromium_org/net/data/ssl/scripts/
generate-duplicate-cn-certs.sh 43 echo Generate the B CSR.
54 -out out/B.csr \
63 -in out/B.csr \
69 echo Generate the A1 end-entity CSR.
74 -out out/A1.csr \
77 echo Generate the A2 end-entity CSR
82 -out out/A2.csr \
97 -in out/A1.csr \
112 -in out/A2.csr \
generate-redundant-test-chains.sh 54 echo Generate the D CSR.
65 -out out/D.csr \
74 -in out/D.csr \
79 echo Generate the C2 root CSR.
90 -out out/C2.csr \
99 -in out/C2.csr \
118 -out out/$i.csr \
135 -in out/C.csr \
151 -in out/B.csr \
155 echo Generate the A end-entity CSR
    [all...]
generate-client-certificates.sh 45 echo Generate the C CSR
52 -out out/C.csr \
61 -in out/C.csr \
73 -out out/B.csr \
82 -in out/B.csr \
92 -out out/E.csr \
101 -in out/E.csr \
113 -out out/$id.csr \
124 -in out/A.csr \
135 -in out/D.csr \
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp 394 for (const uint16_t *CSR = TRI->getCalleeSavedRegs(); *CSR; ++CSR) {
395 unsigned CalleeSavedReg = *CSR;
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 146 milliseconds