reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/X86/X86FrameLowering.cpp
   44   Is64Bit = STI.is64Bit();
  264     unsigned Rax = (unsigned)(Is64Bit ? X86::RAX : X86::EAX);
  269       Reg = findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
  271     unsigned MovRIOpc = Is64Bit ? X86::MOV64ri : X86::MOV32ri;
  273         isSub ? getSUBrrOpcode(Is64Bit) : getADDrrOpcode(Is64Bit);
  273         isSub ? getSUBrrOpcode(Is64Bit) : getADDrrOpcode(Is64Bit);
  291       assert(Is64Bit && "can't have 32-bit 16GB stack frame");
  325         ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX)
  326         : findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
  329           ? (Is64Bit ? X86::PUSH64r : X86::PUSH32r)
  330           : (Is64Bit ? X86::POP64r  : X86::POP32r);
  769   if (Is64Bit && IsLargeCodeModel && STI.useRetpolineIndirectCalls())
  774   if (Is64Bit)
  786   if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
  882   return Is64Bit && !IsWin64CC && !Fn.hasFnAttribute(Attribute::NoRedZone);
 1024   if (Fn.getCallingConv() == CallingConv::X86_INTR && Is64Bit &&
 1110     BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
 1249       if (Is64Bit) {
 1262     if (Is64Bit) {
 1293       if (Is64Bit)
 1641     BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::POP64r : X86::POP32r),
 1646           TRI->getDwarfRegNum(Is64Bit ? X86::RSP : X86::ESP, true);
 2299   unsigned ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
 2333   if (Is64Bit)
 2355   if (Is64Bit) {
 2419         ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, true);
 2423         ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, false);
 2457   if (Is64Bit) {
 2482   if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
 2509     if (Is64Bit)
 2598                      Is64Bit ? "AMD64_LEAF_WORDS" : "X86_LEAF_WORDS");
 2599   const unsigned CCRegisteredArgs = Is64Bit ? 6 : 5;
 2671     if (Is64Bit) {
 2685     ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
 2747       Is64Bit ? X86::GR64_NOREX_NOSPRegClass : X86::GR32_NOREX_NOSPRegClass;
lib/Target/X86/X86RegisterInfo.cpp
  735   } else if (TFI->Is64Bit && (MBB.isEHFuncletEntry() || IsEHFuncletEpilogue)) {