Home
last modified time | relevance | path

Searched refs:IsLP64 (Results 1 – 1 of 1) sorted by relevance

/freebsd-9-stable/contrib/llvm/lib/Target/X86/
DX86FrameLowering.cpp58 static unsigned getSUBriOpcode(unsigned IsLP64, int64_t Imm) { in getSUBriOpcode() argument
59 if (IsLP64) { in getSUBriOpcode()
70 static unsigned getADDriOpcode(unsigned IsLP64, int64_t Imm) { in getADDriOpcode() argument
71 if (IsLP64) { in getADDriOpcode()
82 static unsigned getLEArOpcode(unsigned IsLP64) { in getLEArOpcode() argument
83 return IsLP64 ? X86::LEA64r : X86::LEA32r; in getLEArOpcode()
148 bool Is64Bit, bool IsLP64, bool UseLEA, in emitSPUpdate() argument
154 Opc = getLEArOpcode(IsLP64); in emitSPUpdate()
157 ? getSUBriOpcode(IsLP64, Offset) in emitSPUpdate()
158 : getADDriOpcode(IsLP64, Offset); in emitSPUpdate()
[all …]