What is the difference between those approaches?
Use Facelet templates (as in <ui:include> and/or <ui:composition>) if you want to split main page layout fragments into reuseable templates. E.g. header, menu, footer, etc. An example can be found in my answer on this question: How to include another XHTML in XHTML using JSF 2.0 Facelets?
Use Facelet tag files if you want to have a reuseable group of components in order to prevent/minimize code duplication. E.g. a group of label+input+message components. The major difference with composite components is that the output of a Facelet tag file does not represent a single UIComponent and may in some circumstances be the only solution when a composite component doesn't suffice. An example can be found in my answer on those questions: How to make a grid of JSF composite component?, How to create a composite component for a datatable column? and Primefaces outputLabel for composite component.
Use Composite Components if you want to create a single and reuseable custom UIComponent with a single responsibility using pure XML. Such a composite component usually consists of a bunch of existing components and/or HTML and get physically rendered as single component. E.g. a component which shows a rating in stars based on a given integer value, or a component which represents a single date property by 3 dependent <h:selectOneMenu> components. An example can be found in our Composite Component wiki page and the blog titled "Composite Component with multiple input fields".
Use a Custom Component whenever the functionality cannot be achieved with Facelet tag files or composite components, because of the lack of support in the standard/available set of components. E.g. an <input type="file">. An example can be found in this blog: Uploading files with JSF 2.0 and Servlet 3.0. Or, when you want to control the building of the JSF component tree instead of rendering of the HTML output, then you should consider a Tag Handler. An example can be found in my answer on this question: Custom Facelet component in JSF.
Could performance differ?
The performance concern is negligible. The choice should be made based on the concrete functional requirements and the final degree of abstraction, reusability and maintainability of the implementation. Each approach has its own well definied purpose and limitations.