@@ -132,20 +132,17 @@ class java_bytecode_parsert final : public parsert
132
132
T read ()
133
133
{
134
134
static_assert (
135
- std::is_unsigned<T>::value, " T should be an unsigned integer" );
135
+ std::is_unsigned<T>::value || std::is_signed<T>::value,
136
+ " T should be a signed or unsigned integer" );
136
137
const constexpr size_t bytes = sizeof (T);
137
- u8 result = 0 ;
138
- for (size_t i = 0 ; i < bytes; i++)
138
+ T result;
139
+ in->read (reinterpret_cast <char *>(&result), bytes);
140
+ if (!*in || static_cast <std::size_t >(in->gcount ()) < bytes)
139
141
{
140
- if (!*in)
141
- {
142
- log .error () << " unexpected end of bytecode file" << messaget::eom;
143
- throw 0 ;
144
- }
145
- result <<= 8u ;
146
- result |= static_cast <u1>(in->get ());
142
+ log .error () << " unexpected end of bytecode file" << messaget::eom;
143
+ throw 0 ;
147
144
}
148
- return narrow_cast<T>( result) ;
145
+ return result;
149
146
}
150
147
151
148
void store_unknown_method_handle (size_t bootstrap_method_index);
@@ -942,15 +939,15 @@ void java_bytecode_parsert::rbytecode(std::vector<instructiont> &instructions)
942
939
943
940
case ' b' : // a signed byte
944
941
{
945
- const s1 c = read <u1 >();
942
+ const s1 c = read <s1 >();
946
943
instruction.args .push_back (from_integer (c, signedbv_typet (8 )));
947
944
}
948
945
address+=1 ;
949
946
break ;
950
947
951
948
case ' o' : // two byte branch offset, signed
952
949
{
953
- const s2 offset = read <u2 >();
950
+ const s2 offset = read <s2 >();
954
951
// By converting the signed offset into an absolute address (by adding
955
952
// the current address) the number represented becomes unsigned.
956
953
instruction.args .push_back (
@@ -961,7 +958,7 @@ void java_bytecode_parsert::rbytecode(std::vector<instructiont> &instructions)
961
958
962
959
case ' O' : // four byte branch offset, signed
963
960
{
964
- const s4 offset = read <u4 >();
961
+ const s4 offset = read <s4 >();
965
962
// By converting the signed offset into an absolute address (by adding
966
963
// the current address) the number represented becomes unsigned.
967
964
instruction.args .push_back (
@@ -994,15 +991,15 @@ void java_bytecode_parsert::rbytecode(std::vector<instructiont> &instructions)
994
991
{
995
992
const u2 v = read <u2>();
996
993
instruction.args .push_back (from_integer (v, unsignedbv_typet (16 )));
997
- const s2 c = read <u2 >();
994
+ const s2 c = read <s2 >();
998
995
instruction.args .push_back (from_integer (c, signedbv_typet (16 )));
999
996
address+=4 ;
1000
997
}
1001
998
else // local variable index (one byte) plus one signed byte
1002
999
{
1003
1000
const u1 v = read <u1>();
1004
1001
instruction.args .push_back (from_integer (v, unsignedbv_typet (8 )));
1005
- const s1 c = read <u1 >();
1002
+ const s1 c = read <s1 >();
1006
1003
instruction.args .push_back (from_integer (c, signedbv_typet (8 )));
1007
1004
address+=2 ;
1008
1005
}
@@ -1032,7 +1029,7 @@ void java_bytecode_parsert::rbytecode(std::vector<instructiont> &instructions)
1032
1029
}
1033
1030
1034
1031
// now default value
1035
- const s4 default_value = read <u4 >();
1032
+ const s4 default_value = read <s4 >();
1036
1033
// By converting the signed offset into an absolute address (by adding
1037
1034
// the current address) the number represented becomes unsigned.
1038
1035
instruction.args .push_back (
@@ -1045,8 +1042,8 @@ void java_bytecode_parsert::rbytecode(std::vector<instructiont> &instructions)
1045
1042
1046
1043
for (std::size_t i=0 ; i<npairs; i++)
1047
1044
{
1048
- const s4 match = read <u4 >();
1049
- const s4 offset = read <u4 >();
1045
+ const s4 match = read <s4 >();
1046
+ const s4 offset = read <s4 >();
1050
1047
instruction.args .push_back (
1051
1048
from_integer (match, signedbv_typet (32 )));
1052
1049
// By converting the signed offset into an absolute address (by adding
@@ -1070,23 +1067,23 @@ void java_bytecode_parsert::rbytecode(std::vector<instructiont> &instructions)
1070
1067
}
1071
1068
1072
1069
// now default value
1073
- const s4 default_value = read <u4 >();
1070
+ const s4 default_value = read <s4 >();
1074
1071
instruction.args .push_back (
1075
1072
from_integer (base_offset+default_value, signedbv_typet (32 )));
1076
1073
address+=4 ;
1077
1074
1078
1075
// now low value
1079
- const s4 low_value = read <u4 >();
1076
+ const s4 low_value = read <s4 >();
1080
1077
address+=4 ;
1081
1078
1082
1079
// now high value
1083
- const s4 high_value = read <u4 >();
1080
+ const s4 high_value = read <s4 >();
1084
1081
address+=4 ;
1085
1082
1086
1083
// there are high-low+1 offsets, and they are signed
1087
1084
for (s4 i=low_value; i<=high_value; i++)
1088
1085
{
1089
- s4 offset = read <u4 >();
1086
+ s4 offset = read <s4 >();
1090
1087
instruction.args .push_back (from_integer (i, signedbv_typet (32 )));
1091
1088
// By converting the signed offset into an absolute address (by adding
1092
1089
// the current address) the number represented becomes unsigned.
@@ -1130,7 +1127,7 @@ void java_bytecode_parsert::rbytecode(std::vector<instructiont> &instructions)
1130
1127
1131
1128
case ' s' : // a signed short
1132
1129
{
1133
- const s2 s = read <u2 >();
1130
+ const s2 s = read <s2 >();
1134
1131
instruction.args .push_back (from_integer (s, signedbv_typet (16 )));
1135
1132
}
1136
1133
address+=2 ;
0 commit comments