diff options
author | Yonghong Song <yhs@fb.com> | 2018-02-23 23:49:21 +0000 |
---|---|---|
committer | Yonghong Song <yhs@fb.com> | 2018-02-23 23:49:21 +0000 |
commit | 0252f35362f34b2fd7a56c8f55fce5b49b4bf36e (patch) | |
tree | d853524354d61d8b39e80b82cd13a11d38bc5ee4 /llvm/lib/Target/BPF | |
parent | 3a564a8f6e9b60553ad4b7bebeee1ec8065b2a0f (diff) | |
download | bcm5719-llvm-0252f35362f34b2fd7a56c8f55fce5b49b4bf36e.tar.gz bcm5719-llvm-0252f35362f34b2fd7a56c8f55fce5b49b4bf36e.zip |
bpf: Define instruction patterns for extensions and truncations between i32 to i64
For transformations between i32 and i64, if it is explicit signed extension:
- first cast the operand to i64
- then use SLL + SRA to finish the extension.
if it is explicit zero extension:
- first cast the operand to i64
- then use SLL + SRL to finish the extension.
if it is explicit any extension:
- just refer to 64-bit register.
if it is explicit truncation:
- just refer to 32-bit subregister.
NOTE: Some of the zero extension sequences might be unnecessary, they will be
removed by an peephole pass on MachineInstruction layer.
Signed-off-by: Jiong Wang <jiong.wang@netronome.com>
Reviewed-by: Yonghong Song <yhs@fb.com>
llvm-svn: 325981
Diffstat (limited to 'llvm/lib/Target/BPF')
-rw-r--r-- | llvm/lib/Target/BPF/BPFInstrInfo.td | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/llvm/lib/Target/BPF/BPFInstrInfo.td b/llvm/lib/Target/BPF/BPFInstrInfo.td index d4f9c488f67..88f774cb11f 100644 --- a/llvm/lib/Target/BPF/BPFInstrInfo.td +++ b/llvm/lib/Target/BPF/BPFInstrInfo.td @@ -583,3 +583,23 @@ def LD_ABS_W : LOAD_ABS<BPF_W, "u32", int_bpf_load_word>; def LD_IND_B : LOAD_IND<BPF_B, "u8", int_bpf_load_byte>; def LD_IND_H : LOAD_IND<BPF_H, "u16", int_bpf_load_half>; def LD_IND_W : LOAD_IND<BPF_W, "u32", int_bpf_load_word>; + +let isCodeGenOnly = 1 in { + def MOV_32_64 : ALU_RR<BPF_ALU, BPF_MOV, + (outs GPR:$dst), (ins GPR32:$src), + "$dst = $src", []>; +} + +def : Pat<(i64 (sext GPR32:$src)), + (SRA_ri (SLL_ri (MOV_32_64 GPR32:$src), 32), 32)>; + +def : Pat<(i64 (zext GPR32:$src)), + (SRL_ri (SLL_ri (MOV_32_64 GPR32:$src), 32), 32)>; + +// For i64 -> i32 truncation, use the 32-bit subregister directly. +def : Pat<(i32 (trunc GPR:$src)), + (i32 (EXTRACT_SUBREG GPR:$src, sub_32))>; + +// For i32 -> i64 anyext, we don't care about the high bits. +def : Pat<(i64 (anyext GPR32:$src)), + (INSERT_SUBREG (i64 (IMPLICIT_DEF)), GPR32:$src, sub_32)>; |