Displaying 2 results from an estimated 2 matches for "scope0".
Did you mean:
scope
2013 Nov 04
3
[LLVMdev] [RFC] Scoped no-alias metadata (redux)
...ction). For use in representing C99 restrict pointers, a scope may represent the entire function, or some other statement block within the function (or a block within a block, etc.) created by the frontend.
As in my previous proposal, and similar to how TBAA is implemented, we define some scopes:
!scope0 = metadata !{ metadata !"scope of foo()" }
!scope1 = metadata !{ metadata !"scope 1", metadata !scope0 }
!scope2 = metadata !{ metadata !"scope 2", metadata !scope0 }
!scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 }
!scope4 = metadata !{ metada...
2013 Nov 14
0
[LLVMdev] [RFC] Scoped no-alias metadata (redux)
...> restrict pointers, a scope may represent the entire function, or
> some other statement block within the function (or a block within a
> block, etc.) created by the frontend.
>
> As in my previous proposal, and similar to how TBAA is implemented,
> we define some scopes:
> !scope0 = metadata !{ metadata !"scope of foo()" }
> !scope1 = metadata !{ metadata !"scope 1", metadata !scope0 }
> !scope2 = metadata !{ metadata !"scope 2", metadata !scope0 }
> !scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 }
> !scope4...