Merge pull request #2582 from jeannielynnmoulton/jeannie/parse-bridge-flag-for-thk123

Parse bridge flag [TG-4115]
This commit is contained in:
Matthias Güdemann 2018-07-17 13:21:41 +02:00 committed by GitHub
commit 7f8b2be54b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 71 additions and 5 deletions

View File

@ -371,6 +371,9 @@ void java_bytecode_convert_method_lazy(
if(m.is_static)
member_type.set(ID_is_static, true);
if(m.is_bridge)
member_type.set(ID_is_bridge_method, m.is_bridge);
// do we need to add 'this' as a parameter?
if(!m.is_static)
{

View File

@ -86,7 +86,7 @@ struct java_bytecode_parse_treet
struct methodt : public membert
{
irep_idt base_name;
bool is_native, is_abstract, is_synchronized;
bool is_native, is_abstract, is_synchronized, is_bridge;
source_locationt source_location;
typedef std::vector<instructiont> instructionst;
@ -164,10 +164,11 @@ struct java_bytecode_parse_treet
void output(std::ostream &out) const;
methodt():
is_native(false),
is_abstract(false),
is_synchronized(false)
methodt()
: is_native(false),
is_abstract(false),
is_synchronized(false),
is_bridge(false)
{
}
};

View File

@ -1766,6 +1766,7 @@ void java_bytecode_parsert::rmethod(classt &parsed_class)
method.is_private=(access_flags&ACC_PRIVATE)!=0;
method.is_synchronized=(access_flags&ACC_SYNCHRONIZED)!=0;
method.is_native=(access_flags&ACC_NATIVE)!=0;
method.is_bridge = (access_flags & ACC_BRIDGE) != 0;
method.name=pool_entry(name_index).s;
method.base_name=pool_entry(name_index).s;
method.descriptor=id2string(pool_entry(descriptor_index).s);

View File

@ -0,0 +1,5 @@
public class ClassWithBridgeMethod implements Comparable<ClassWithBridgeMethod> {
public int compareTo(ClassWithBridgeMethod other) {
return 0;
}
}

View File

@ -0,0 +1,55 @@
/*******************************************************************\
Module: Unit tests for converting constructors and static initializers
Author: Diffblue Limited.
\*******************************************************************/
#include <testing-utils/catch.hpp>
#include <util/symbol_table.h>
#include <java-testing-utils/load_java_class.h>
#include <java-testing-utils/require_type.h>
SCENARIO(
"java_bytecode_convert_bridge_method",
"[core][java_bytecode][java_bytecode_convert_method]")
{
GIVEN("A class with a bridge method")
{
const symbol_tablet symbol_table = load_java_class(
"ClassWithBridgeMethod", "./java_bytecode/java_bytecode_convert_method");
const std::string method_name = "java::ClassWithBridgeMethod.compareTo";
WHEN("When parsing the bridge method")
{
const symbolt function_symbol =
symbol_table.lookup_ref(method_name + ":(Ljava/lang/Object;)I");
const code_typet &function_type =
require_type::require_code(function_symbol.type);
THEN("The method should be marked as a bridge method")
{
REQUIRE(function_type.get_bool(ID_is_bridge_method));
}
}
WHEN("When parsing a non-bridge method")
{
THEN("THe method should not be marked as a bridge method")
{
const symbolt function_symbol =
symbol_table.lookup_ref(method_name + ":(LClassWithBridgeMethod;)I");
const code_typet &function_type =
require_type::require_code(function_symbol.type);
THEN("The method should be marked as a bridge method")
{
REQUIRE_FALSE(function_type.get_bool(ID_is_bridge_method));
}
}
}
}
}

View File

@ -676,6 +676,7 @@ IREP_ID_TWO(C_must_not_throw, #must_not_throw)
IREP_ID_ONE(is_inner_class)
IREP_ID_ONE(is_anonymous)
IREP_ID_ONE(outer_class)
IREP_ID_ONE(is_bridge_method)
// Projects depending on this code base that wish to extend the list of
// available ids should provide a file local_irep_ids.h in their source tree and