HomeSort by relevance Sort by last modified time
    Searched refs:CSI (Results 26 - 50 of 170) sorted by null

12 3 4 5 6 7

  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 134 const std::vector<CalleeSavedInfo> &CSI,
136 if (CSI.empty())
149 for (unsigned I = 0, E = CSI.size(); I != E; ++I) {
150 unsigned Reg = CSI[I].getReg();
195 for (unsigned I = 0, E = CSI.size(); I != E; ++I) {
196 unsigned Reg = CSI[I].getReg();
208 for (unsigned I = 0, E = CSI.size(); I != E; ++I) {
209 unsigned Reg = CSI[I].getReg();
212 TII->storeRegToStackSlot(MBB, MBBI, Reg, true, CSI[I].getFrameIdx(),
223 const std::vector<CalleeSavedInfo> &CSI,
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 183 const std::vector<CalleeSavedInfo> &CSI,
185 if (CSI.empty())
194 MFI->setCalleeSavedFrameSize(CSI.size() * 2);
196 for (unsigned i = CSI.size(); i != 0; --i) {
197 unsigned Reg = CSI[i-1].getReg();
209 const std::vector<CalleeSavedInfo> &CSI,
211 if (CSI.empty())
220 for (unsigned i = 0, e = CSI.size(); i != e; ++i)
221 BuildMI(MBB, MI, DL, TII.get(MSP430::POP16r), CSI[i].getReg());
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
Thumb1FrameLowering.cpp 59 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
84 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
85 unsigned Reg = CSI[i].getReg();
86 int FI = CSI[i].getFrameIdx();
291 const std::vector<CalleeSavedInfo> &CSI,
293 if (CSI.empty())
304 for (unsigned i = CSI.size(); i != 0; --i) {
305 unsigned Reg = CSI[i-1].getReg();
330 const std::vector<CalleeSavedInfo> &CSI,
332 if (CSI.empty()
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEFrameLowering.h 35 const std::vector<CalleeSavedInfo> &CSI,
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.h 100 const std::vector<CalleeSavedInfo> &CSI,
109 const std::vector<CalleeSavedInfo> &CSI,
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreFrameLowering.cpp 204 CalleeSavedInfo &CSI = SpillLabels[I].second;
205 int Offset = MFI->getObjectOffset(CSI.getFrameIdx());
206 unsigned Reg = CSI.getReg();
276 const std::vector<CalleeSavedInfo> &CSI,
278 if (CSI.empty())
290 for (std::vector<CalleeSavedInfo>::const_iterator it = CSI.begin();
291 it != CSI.end(); ++it) {
310 const std::vector<CalleeSavedInfo> &CSI,
319 for (std::vector<CalleeSavedInfo>::const_iterator it = CSI.begin();
320 it != CSI.end(); ++it)
    [all...]
  /system/core/adb/
sysdeps_win32.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 223 unsigned getMaxCalleeSavedReg(const std::vector<CalleeSavedInfo> &CSI,
227 if (CSI.empty())
230 unsigned Max = getMax32BitSubRegister(CSI[0].getReg(), TRI);
231 for (unsigned I = 1, E = CSI.size(); I < E; ++I) {
232 unsigned Reg = getMax32BitSubRegister(CSI[I].getReg(), TRI);
447 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
454 insertCSRSpillsInBlock(*PrologB, CSI, HRI, PrologueStubs);
458 insertCSRRestoresInBlock(*EpilogB, CSI, HRI);
463 insertCSRRestoresInBlock(B, CSI, HRI);
475 for (auto &R : CSI)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
PrologEpilogInserter.cpp 224 std::vector<CalleeSavedInfo> CSI;
229 CSI.push_back(CalleeSavedInfo(Reg));
234 CSI.push_back(CalleeSavedInfo(Reg));
241 if (CSI.empty())
251 I = CSI.begin(), E = CSI.end(); I != E; ++I) {
288 MFI->setCalleeSavedInfo(CSI);
297 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
302 if (CSI.empty())
313 if (!TFI->spillCalleeSavedRegisters(*EntryBlock, I, CSI, TRI))
    [all...]
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 335 std::vector<CalleeSavedInfo> CSI;
339 CSI.push_back(CalleeSavedInfo(Reg));
344 if (!TFI->assignCalleeSavedSpillSlots(F, RegInfo, CSI)) {
347 if (CSI.empty())
356 for (auto &CS : CSI) {
395 MFI->setCalleeSavedInfo(CSI);
443 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
445 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
447 MCPhysReg Reg = CSI[i].getReg();
464 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo()
    [all...]
  /external/llvm/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
194 const std::vector<CalleeSavedInfo> &CSI,
205 const std::vector<CalleeSavedInfo> &CSI,
  /external/llvm/lib/Target/X86/
X86FrameLowering.h 83 std::vector<CalleeSavedInfo> &CSI) const override;
87 const std::vector<CalleeSavedInfo> &CSI,
92 const std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
199 const std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
199 const std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
199 const std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
196 /// If it returns true, and any of the registers in CSI is not restored,
197 /// it sets the corresponding Restored flag in CSI to false.
201 std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
196 /// If it returns true, and any of the registers in CSI is not restored,
197 /// it sets the corresponding Restored flag in CSI to false.
201 std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
196 /// If it returns true, and any of the registers in CSI is not restored,
197 /// it sets the corresponding Restored flag in CSI to false.
201 std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
196 /// If it returns true, and any of the registers in CSI is not restored,
197 /// it sets the corresponding Restored flag in CSI to false.
201 std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
199 const std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
199 const std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
199 const std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
196 /// If it returns true, and any of the registers in CSI is not restored,
197 /// it sets the corresponding Restored flag in CSI to false.
201 std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
196 /// If it returns true, and any of the registers in CSI is not restored,
197 /// it sets the corresponding Restored flag in CSI to false.
201 std::vector<CalleeSavedInfo> &CSI,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Target/
TargetFrameLowering.h 116 /// assign frame slots to all CSI entries and return true. If this method
119 /// CSI.
123 std::vector<CalleeSavedInfo> &CSI) const {
188 const std::vector<CalleeSavedInfo> &CSI,
196 /// If it returns true, and any of the registers in CSI is not restored,
197 /// it sets the corresponding Restored flag in CSI to false.
201 std::vector<CalleeSavedInfo> &CSI,

Completed in 1382 milliseconds

12 3 4 5 6 7