Displaying 1 result from an estimated 1 matches for "resource_end".
2018 Nov 01
2
RFC: System (cache, etc.) model for LLVM
...ource(unsigned Resource) const;
>
> /// getNumResources - Return the number of resources this target has.
> ///
> unsigned getNumResources() const;
>
> /// Resource iterators
> ///
> resource_iterator resource_begin() const;
> resource_iterator resource_end() const;
> };
>
> The target execution engine allows optimizers to make intelligent
> choices for cache optimization in the presence of parallelism, where
> multiple threads may be competing for cache resources.
Do you have examples on what optimizations make use of this
informati...