[llvm-dev] Post definition register alias in tablegen.

Krzysztof Parzyszek via llvm-dev llvm-dev at lists.llvm.org
Tue Nov 24 10:01:25 PST 2015


Aliases are supposed to be symmetric.  Having something like
   def A: Register<...>;
   let Aliases = [A] in
   def B: Register<...>;
should be enough.

-Krzysztof


On 11/24/2015 10:28 AM, Micah Villmow via llvm-dev wrote:
> I have two registers A and B that are aliases of each other. I have not
> found a way to define this in tablegen yet. Would anyone know how?
>
> I’ve tried:
>
> def A : Register<”%a”>;
>
> def B : Register<”%b”>;
>
> let Aliases = [A] in {
>
> B;
>
> }
>
> let Aliases = [B] in {
>
> A;
>
> }
>
> I’ve also tried forward definitions.
>
> def A;
>
> def B : RegisterWithAlias<”%b”, A>;
>
> def A: RegisterWithAlias<”%a”, B>;
>
> So, is there a way to specify that they are aliases of each other? Or
> does setting A as an alias of B also make sure that B is an alias of A?
>
> Thanks,
>
> Micah
>
>
>
> _______________________________________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>


-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, 
hosted by The Linux Foundation


More information about the llvm-dev mailing list