diff options
| author | Sean Callanan <scallanan@apple.com> | 2009-09-16 02:57:13 +0000 |
|---|---|---|
| committer | Sean Callanan <scallanan@apple.com> | 2009-09-16 02:57:13 +0000 |
| commit | 771a1f1720f1d2e0f2d74bc0580a3697e767df9a (patch) | |
| tree | c8f580999ff21899c5b124aec6f3827b8f0b267b /llvm/lib | |
| parent | 0fdee532669339e9f74d4695b4177dc19cc1faa0 (diff) | |
| download | bcm5719-llvm-771a1f1720f1d2e0f2d74bc0580a3697e767df9a.tar.gz bcm5719-llvm-771a1f1720f1d2e0f2d74bc0580a3697e767df9a.zip | |
Added the ENTER instruction, which sets up a stack
frame, to the Intel instruction tables.
llvm-svn: 81995
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.td | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td index e310e646e7e..5d7b56934da 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.td +++ b/llvm/lib/Target/X86/X86InstrInfo.td @@ -694,6 +694,11 @@ let isCall = 1 in "lcall{l}\t{*}$dst", []>; } +// Constructing a stack frame. + +def ENTER : I<0xC8, RawFrm, (outs), (ins i16imm:$len, i8imm:$lvl), + "enter\t$len, $lvl", []>; + // Tail call stuff. let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in |

