[llvm-dev] Generate Register Indirect mode instruction
Friedman, Eli via llvm-dev
llvm-dev at lists.llvm.org
Wed Oct 12 14:10:54 PDT 2016
On 10/10/2016 7:23 AM, Alex Bradley via llvm-dev wrote:
> Hi All,
>
> I am new to llvm backend. I am trying out few examples to understand
> backend codegen. I have ported llvm LEG @
> https://github.com/frasercrmck/llvm-leg to llvm 3.9 successfully.
>
> Currently, the LEG instructions are RISC load-store type instruction.
> I want to generate some instructions for register indirect mode, like
> following:
>
> IR:
>
> @a = local_unnamed_addr global i32 0, align 4
> @b = local_unnamed_addr global i32 0, align 4
> @c = local_unnamed_addr global i32 0, align 4
>
> ; Function Attrs: norecurse nounwind
> define void @foo() {
> entry:
> %0 = load i32, i32* @a, align 4
> %1 = load i32, i32* @b, align 4
> %add = add nsw i32 %1, %0
> store i32 %add, i32* @c, align 4
> ret void
> }
>
>
> Expected assembly instructions:
> MOV R0, #A // R0 pointing to address of A
> MOV R1, #B // R1 pointing to address of B
> ADD *R0, *R1 // Adding both memory operands
> MOV #C, *R0 // Moving result to address of C
>
> How should i define such mov and add instruction in my .td files? How
> will ISD::LOAD be seleted in ISelDAGtoDAG in select() function? I want
> to start with simple .td definitions and would later like to
> encapsulate them in multiclass once basic example works.
>
> Can someone please help how to achieve this?
You probably want to look at the x86 backend; it has a lot of
instructions which involve both computation and memory. Take the
following IR, a variant of your example:
define void @foo(i32 *%a, i32 *%b, i32 *%c) {
entry:
%0 = load i32, i32* %a, align 4
%1 = load i32, i32* %b, align 4
%add = add nsw i32 %1, %0
store i32 %add, i32* %c, align 4
ret void
}
The x86 backend generates the following:
movl (%rsi), %eax
addl (%rdi), %eax
movl %eax, (%rdx)
retq
Note in particular the memory operand embedded into the addition.
The way the LLVM x86 backend models this is just to pattern match it
during instruction selection: it matches a pattern like (add r, (load
addr)) to a single instruction.
-Eli
--
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project
More information about the llvm-dev
mailing list