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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
package CType;
use 5.6.0;
use strict;
use warnings;
use Carp;
sub type
{
my $self = shift;
return $self;
}
sub set_location
{
my $self = shift;
my $location = shift;
$self->{file} = $location->{file};
$self->{line} = $location->{line};
$self->{pos} = $location->{pos};
}
sub file
{
my $self = shift;
return $self->{file};
}
sub location
{
my $self = shift;
return '' unless $self->{file};
return "$self->{file}:$self->{line}";
}
sub dump_location
{
my $self = shift;
my $skip_cpp = shift;
return '' if $skip_cpp;
return '' unless $self->{file};
return "# $self->{line} \"$self->{file}\"\n";
}
sub set_qualifiers
{
my $self = shift;
my $qualifiers = shift;
my %qualifiers = map {$_=>1} @$qualifiers;
$self->{const} = $qualifiers{const} || 0;
$self->{volatile} = $qualifiers{volatile} || 0;
$self->{restrict} = $qualifiers{restrict} || 0;
}
sub check_sizes
{
my $self = shift;
my $other = shift;
return 'abi' unless $other->width == $self->width;
return 'abi' unless $other->signed == $self->signed;
return 'ok';
}
sub check_qualifiers
{
my $self = shift;
my $other = shift;
if ($self->{const} != $other->{const})
{
return 'both';
}
if ($self->{volatile} != $other->{volatile})
{
return 'abi';
}
if ($self->{restrict} != $other->{restrict})
{
return 'both';
}
return 'ok';
}
sub const
{
my $self = shift;
return $self->{const};
}
sub volatile
{
my $self = shift;
return $self->{volatile};
}
sub restrict
{
my $self = shift;
return $self->{restrict};
}
sub dump_c_qualifiers
{
my $self = shift;
my @qualifiers;
push @qualifiers, 'const' if $self->const;
push @qualifiers, 'volatile' if $self->volatile;
push @qualifiers, 'restrict' if $self->restrict;
my @attributes;
# We emit alignment expressions iff the analysis logic decided
# that this object had an interesting alignment.
if ($self->{alignment})
{
my @alignments = $self->alignment_exprs;
if (scalar @alignments)
{
push @attributes, map {'aligned(' . $_->dump_c . ')'} @alignments;
}
}
if ($self->{packed})
{
push @attributes, 'packed';
}
if (scalar @attributes)
{
push @qualifiers, '__attribute__((' . join(', ', @attributes) . '))';
}
return join(' ', @qualifiers);
}
sub describe_qualifiers
{
my $self = shift;
my @qualifiers;
push @qualifiers, 'const' if $self->const;
push @qualifiers, 'volatile' if $self->volatile;
push @qualifiers, 'restrict' if $self->restrict;
push @qualifiers, ($self->alignment . "-bit aligned") if $self->{alignment};
return join(' ', @qualifiers);
}
sub width
{
my $self = shift;
unless (defined $self->{width})
{
confess "Width of type is unknown (for $self)";
}
return $self->{width};
}
sub alignment
{
my $self = shift;
unless (defined $self->{alignment})
{
confess "Alignment of type is unknown (for $self)";
}
return $self->{alignment};
}
sub signed
{
my $self = shift;
unless (defined $self->{signed})
{
confess "Signedness of type is unknown (for $self)";
}
return $self->{signed};
}
sub set_packed
{
my $self = shift;
$self->{packed} = shift;
}
sub packed
{
my $self = shift;
return $self->{packed};
}
sub process_attributes
{
my $self = shift;
my $attributes = shift;
foreach my $attribute (@$attributes)
{
if ($attribute->name eq 'aligned')
{
if (scalar @{$attribute->args})
{
if ($self->can("add_alignment"))
{
$self->add_alignment($attribute->args->[0]->get_expr);
}
else
{
my $arg = $attribute->args->[0]->get_expr->compute;
$self->{alignment} = $arg * 8;
}
}
else
{
confess "Automatic alignment is not supported";
}
}
}
}
sub capture_declarator
{
return 0;
}
sub best_type_for_comparison
{
my $self = shift;
return $self;
}
sub check_interface
{
my $self = shift;
my $other = shift;
my ($self_type, $other_type);
if ($self->isa('CType::Ref') and $other->isa('CType::Ref')
and $self->kind eq $other->kind and $self->name eq $other->name)
{
# These are strictly matching references, so we'll not bother
# looking through them
$self_type = $self;
$other_type = $other;
}
else
{
# Anything else, we look through just to be sure we know
# what's going on
$self_type = $self->best_type_for_comparison;
$other_type = $other->best_type_for_comparison;
}
my @ret = $self_type->_check_interface($other_type);
my $ret = {};
my ($local_api, $local_abi);
foreach (@ret)
{
if (ref $_)
{
foreach my $key (keys %$_)
{
$ret->{$key} = 1 if $_->{$key};
}
}
elsif ($_ eq 'ok')
{
}
elsif ($_ eq 'abi')
{
$ret->{abi_forward} = 1;
$ret->{abi_backward} = 1;
$local_abi = 1;
}
elsif ($_ eq 'api')
{
$ret->{api_forward} = 1;
$ret->{api_backward} = 1;
$local_api = 1;
}
elsif ($_ eq 'both')
{
$ret->{abi_forward} = 1;
$ret->{abi_backward} = 1;
$ret->{api_forward} = 1;
$ret->{api_backward} = 1;
$local_abi = 1;
$local_api = 1;
}
}
if ($local_abi and $local_api)
{
print "ABI and API mismatch between:\n";
my $dump = $self_type->dump_c(1);
$dump =~ s/\n?$/\n/;
$dump =~ s/^/ /mg;
print $dump;
print "and:\n";
my $other_dump = $other_type->dump_c(1);
$other_dump =~ s/\n?$/\n/;
$other_dump =~ s/^/ /mg;
print $other_dump;
}
elsif ($local_abi)
{
print "ABI mismatch between:\n";
my $dump = $self_type->dump_c(1);
$dump =~ s/\n?$/\n/;
$dump =~ s/^/ /mg;
print $dump;
print "and:\n";
my $other_dump = $other_type->dump_c(1);
$other_dump =~ s/\n?$/\n/;
$other_dump =~ s/^/ /mg;
print $other_dump;
}
elsif ($local_api)
{
print "API mismatch between:\n";
my $dump = $self_type->dump_c(1);
$dump =~ s/\n?$/\n/;
$dump =~ s/^/ /mg;
print $dump;
print "and:\n";
my $other_dump = $other_type->dump_c(1);
$other_dump =~ s/\n?$/\n/;
$other_dump =~ s/^/ /mg;
print $other_dump;
}
return $ret;
}
sub complete
{
1;
}
1;
|