Merge remote-tracking branch 'origin/GP-1393_James_columns_for_function_attributes--SQUASHED'

This commit is contained in:
Ryan Kurtz 2021-10-15 07:58:39 -04:00
commit e6594cad09
5 changed files with 160 additions and 0 deletions

View file

@ -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;
}

View file

@ -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();
}
}

View file

@ -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();
}
}

View file

@ -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();
}
}

View file

@ -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();
}
}