Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ddc05962bc647dd838c6475f86b5809996c840b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>

   <extension
         point="org.eclipse.ui.views">
      <view
            name="Perf Profile View"
            icon="icons/file.gif"
            category="org.eclipse.linuxtools.profiling.ui"
            class="org.eclipse.linuxtools.internal.perf.ui.PerfProfileView"
            id="org.eclipse.linuxtools.perf.ui.ProfileView">
      </view>
      <view
            category="org.eclipse.linuxtools.profiling.ui"
            class="org.eclipse.linuxtools.internal.perf.ui.PerfProfileView"
            icon="icons/file.gif"
            id="org.eclipse.linuxtools.perf.ui.RemoteProfileView"
            name="Remote Perf Profile View"
            restorable="true">
      </view>
      <view
            allowMultiple="true"
            category="org.eclipse.linuxtools.profiling.ui"
            class="org.eclipse.linuxtools.internal.perf.ui.SourceDisassemblyView"
            icon="icons/symbol.gif"
            id="org.eclipse.linuxtools.perf.ui.SourceDisassemblyView"
            name="Source Disassembly">
      </view>
   </extension>
   <extension
         point="org.eclipse.help.contexts">
      <contexts
            file="contexts.xml">
      </contexts>
   </extension>
   <extension
         point="org.eclipse.debug.ui.launchShortcuts">
      <shortcut
            class="org.eclipse.linuxtools.internal.perf.launch.PerfLaunchShortcut"
            icon="icons/symbol.gif"
            id="org.eclipse.linuxtools.perf.launch.profileshortcut"
            label="Profile with Perf"
            modes="linuxtools">
         <contextualLaunch>
            <enablement>
               <with
                     variable="selection">
                  <count
                        value="1">
                  </count>
                  <iterate>
                     <or>
                        <instanceof
                              value="org.eclipse.cdt.core.model.IBinary">
                        </instanceof>
                        <instanceof
                              value="org.eclipse.cdt.core.model.ICProject">
                        </instanceof>
                        <test
                              property="org.eclipse.cdt.launch.isExecutable">
                        </test>
                        <test
                              property="org.eclipse.cdt.launch.isCProject">
                        </test>
                        <and>
                           <instanceof
                                 value="org.eclipse.ui.IFileEditorInput">
                           </instanceof>
                           <adapt
                                 type="org.eclipse.core.resources.IResource">
                              <adapt
                                    type="org.eclipse.cdt.core.model.ICElement">
                              </adapt>
                           </adapt>
                        </and>
                     </or>
                  </iterate>
               </with>
            </enablement>
         </contextualLaunch>
      </shortcut>
   </extension>
   <extension
         point="org.eclipse.debug.core.launchConfigurationTypes">
      <launchConfigurationType
            delegate="org.eclipse.linuxtools.internal.perf.launch.PerfLaunchConfigDelegate"
            id="org.eclipse.linuxtools.perf.launch.profile"
            modes="linuxtools"
            name="Profile with Perf"
            public="true"
            sourceLocatorId="org.eclipse.cdt.launch.DefaultSourceLocator"
            sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
      </launchConfigurationType>
      <launchConfigurationType
            delegate="org.eclipse.linuxtools.internal.perf.remote.launch.PerfLaunchConfigDelegate"
            id="org.eclipse.linuxtools.perf.remote.launch.profile"
            modes="linuxtools"
            name="Profile with Remote Perf"
            public="true"
            sourceLocatorId="org.eclipse.cdt.launch.DefaultSourceLocator"
            sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
      </launchConfigurationType>
   </extension>
   <extension
         point="org.eclipse.debug.ui.launchConfigurationTabGroups">
      <launchConfigurationTabGroup
            class="org.eclipse.linuxtools.internal.perf.launch.PerfLaunchConfigurationTabGroup"
            description="%launchConfigurationTabGroup.description.0"
            id="org.eclipse.linuxtools.perf.launch.launchConfigurationTabGroup"
            type="org.eclipse.linuxtools.perf.launch.profile">
      </launchConfigurationTabGroup>
      <launchConfigurationTabGroup
            class="org.eclipse.linuxtools.internal.perf.remote.launch.PerfLaunchConfigurationTabGroup"
            description="%launchConfigurationTabGroup.description.1"
            id="org.eclipse.linuxtools.perf.remote.launch.launchConfigurationTabGroup"
            type="org.eclipse.linuxtools.perf.remote.launch.profile">
      </launchConfigurationTabGroup>
   </extension>
   <extension
         point="org.eclipse.debug.ui.launchConfigurationTypeImages">
      <launchConfigurationTypeImage
            configTypeID="org.eclipse.linuxtools.perf.launch.profile"
            icon="icons/symbol.gif"
            id="org.eclipse.linuxtools.perf.launch.perfImage">
      </launchConfigurationTypeImage>
      <launchConfigurationTypeImage
            configTypeID="org.eclipse.linuxtools.perf.remote.launch.profile"
            icon="icons/symbol.gif"
            id="org.eclipse.linuxtools.perf.remote.launch.perfImage">
      </launchConfigurationTypeImage>
   </extension>
   <extension
         point="org.eclipse.ui.editors">
      <editor
            default="true"
            filenames="perf.data, perf.data.old"
            id="org.eclipse.linuxtools.perf.editor"
            launcher="org.eclipse.linuxtools.internal.perf.launch.PerfOpenData"
            name="Perf Viewer">
      </editor>
   </extension>
   <extension
         point="org.eclipse.linuxtools.profiling.launch.launchProvider">
      <provider
            delegate="org.eclipse.linuxtools.internal.perf.launch.PerfLaunchConfigDelegate"
            description="%perfLaunchConfiguration.description"
            id="org.eclipse.linuxtools.perf.provider"
            information="%perfLaunchConfiguration.information"
            name="%perfLaunchConfiguration.name.0"
            priority="1"
            shortcut="org.eclipse.linuxtools.internal.perf.launch.PerfLaunchShortcut"
            tabgroup="org.eclipse.linuxtools.internal.perf.launch.PerfLaunchConfigurationTabGroup"
            type="timing">
      </provider>
   </extension>   
</plugin>

Back to the top