2018-05-11 23:54:46 +08:00
|
|
|
# RUN: llc -o - %s -mtriple=x86_64-- -verify-cfiinstrs -run-pass=cfi-instr-inserter
|
|
|
|
|
|
|
|
--- |
|
|
|
|
define void @foo() { ret void }
|
|
|
|
...
|
|
|
|
---
|
|
|
|
name: foo
|
|
|
|
body: |
|
|
|
|
bb.0:
|
[X86] Merge the different Jcc instructions for each condition code into single instructions that store the condition code as an operand.
Summary:
This avoids needing an isel pattern for each condition code. And it removes translation switches for converting between Jcc instructions and condition codes.
Now the printer, encoder and disassembler take care of converting the immediate. We use InstAliases to handle the assembly matching. But we print using the asm string in the instruction definition. The instruction itself is marked IsCodeGenOnly=1 to hide it from the assembly parser.
Reviewers: spatel, lebedev.ri, courbet, gchatelet, RKSimon
Reviewed By: RKSimon
Subscribers: MatzeB, qcolombet, eraman, hiraditya, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60228
llvm-svn: 357802
2019-04-06 03:28:09 +08:00
|
|
|
JCC_1 %bb.3, 4, implicit $eflags
|
2018-05-11 23:54:46 +08:00
|
|
|
bb.1:
|
|
|
|
CFI_INSTRUCTION def_cfa_offset 24
|
|
|
|
bb.2:
|
|
|
|
CFI_INSTRUCTION def_cfa_offset 8
|
|
|
|
bb.3:
|
|
|
|
RET 0
|
|
|
|
...
|