mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Merge remote-tracking branch 'origin/GP-1393_James_columns_for_function_attributes--SQUASHED'
This commit is contained in:
commit
e6594cad09
5 changed files with 160 additions and 0 deletions
|
@ -63,6 +63,18 @@ public class FunctionTableModel extends AddressBasedTableModel<FunctionRowObject
|
|||
descriptor.addHiddenColumn(
|
||||
DiscoverableTableUtils.adaptColumForModel(this, new FunctionTagTableColumn()));
|
||||
|
||||
descriptor.addHiddenColumn(
|
||||
DiscoverableTableUtils.adaptColumForModel(this, new IsFunctionInlineTableColumn()));
|
||||
|
||||
descriptor.addHiddenColumn(
|
||||
DiscoverableTableUtils.adaptColumForModel(this, new IsFunctionNonReturningTableColumn()));
|
||||
|
||||
descriptor.addHiddenColumn(
|
||||
DiscoverableTableUtils.adaptColumForModel(this, new IsFunctionVarargsTableColumn()));
|
||||
|
||||
descriptor.addHiddenColumn(
|
||||
DiscoverableTableUtils.adaptColumForModel(this, new IsFunctionCustomStorageTableColumn()));
|
||||
|
||||
return descriptor;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ghidra.util.table.field;
|
||||
|
||||
import ghidra.docking.settings.Settings;
|
||||
import ghidra.framework.plugintool.ServiceProvider;
|
||||
import ghidra.program.model.listing.Function;
|
||||
import ghidra.program.model.listing.Program;
|
||||
|
||||
public class IfFunctionCustomStorageTableColumn
|
||||
extends ProgramBasedDynamicTableColumnExtensionPoint<Function, Boolean> {
|
||||
|
||||
@Override
|
||||
public String getColumnName() {
|
||||
return "Custom Storage";
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean getValue(Function rowObject, Settings settings, Program data,
|
||||
ServiceProvider serviceProvider) throws IllegalArgumentException {
|
||||
return rowObject.hasCustomVariableStorage();
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,37 @@
|
|||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ghidra.util.table.field;
|
||||
|
||||
import ghidra.docking.settings.Settings;
|
||||
import ghidra.framework.plugintool.ServiceProvider;
|
||||
import ghidra.program.model.listing.Function;
|
||||
import ghidra.program.model.listing.Program;
|
||||
|
||||
public class IsFunctionInlineTableColumn
|
||||
extends ProgramBasedDynamicTableColumnExtensionPoint<Function, Boolean> {
|
||||
|
||||
@Override
|
||||
public String getColumnName() {
|
||||
return "Inline";
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean getValue(Function rowObject, Settings settings, Program data,
|
||||
ServiceProvider serviceProvider) throws IllegalArgumentException {
|
||||
return rowObject.isInline();
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,37 @@
|
|||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ghidra.util.table.field;
|
||||
|
||||
import ghidra.docking.settings.Settings;
|
||||
import ghidra.framework.plugintool.ServiceProvider;
|
||||
import ghidra.program.model.listing.Function;
|
||||
import ghidra.program.model.listing.Program;
|
||||
|
||||
public class IsFunctionNonReturningTableColumn
|
||||
extends ProgramBasedDynamicTableColumnExtensionPoint<Function, Boolean> {
|
||||
|
||||
@Override
|
||||
public String getColumnName() {
|
||||
return "Non-returning";
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean getValue(Function rowObject, Settings settings, Program data,
|
||||
ServiceProvider serviceProvider) throws IllegalArgumentException {
|
||||
return rowObject.hasNoReturn();
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,37 @@
|
|||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ghidra.util.table.field;
|
||||
|
||||
import ghidra.docking.settings.Settings;
|
||||
import ghidra.framework.plugintool.ServiceProvider;
|
||||
import ghidra.program.model.listing.Function;
|
||||
import ghidra.program.model.listing.Program;
|
||||
|
||||
public class IsFunctionVarargsTableColumn
|
||||
extends ProgramBasedDynamicTableColumnExtensionPoint<Function, Boolean>{
|
||||
|
||||
@Override
|
||||
public String getColumnName() {
|
||||
return "Varargs";
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean getValue(Function rowObject, Settings settings, Program data,
|
||||
ServiceProvider serviceProvider) throws IllegalArgumentException {
|
||||
return rowObject.hasVarArgs();
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue