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
|
require "spec"
{% if flag?(:interpreted) && !flag?(:win32) %}
# TODO: figure out how to link against libstdc++ in interpreted code (#14398)
pending LLVM::ABI::ARM
{% skip_file %}
{% end %}
require "llvm"
{% if LibLLVM::BUILT_TARGETS.includes?(:arm) %}
LLVM.init_arm
{% end %}
private def abi
triple = "arm-unknown-linux-gnueabihf"
target = LLVM::Target.from_triple(triple)
machine = target.create_target_machine(triple)
machine.enable_global_isel = false
LLVM::ABI::ARM.new(machine)
end
private def test(msg, &block : LLVM::ABI, LLVM::Context ->)
it msg do
abi = abi()
ctx = LLVM::Context.new
block.call(abi, ctx)
end
end
class LLVM::ABI
describe ARM do
{% if LibLLVM::BUILT_TARGETS.includes?(:arm) %}
describe "align" do
test "for integer" do |abi, ctx|
abi.align(ctx.int1).should be_a(::Int32)
abi.align(ctx.int1).should eq(1)
abi.align(ctx.int8).should eq(1)
abi.align(ctx.int16).should eq(2)
abi.align(ctx.int32).should eq(4)
abi.align(ctx.int64).should eq(8)
end
test "for pointer" do |abi, ctx|
abi.align(ctx.int8.pointer).should eq(4)
end
test "for float" do |abi, ctx|
abi.align(ctx.float).should eq(4)
end
test "for double" do |abi, ctx|
abi.align(ctx.double).should eq(8)
end
test "for struct" do |abi, ctx|
abi.align(ctx.struct([ctx.int32, ctx.int64])).should eq(8)
abi.align(ctx.struct([ctx.int8, ctx.int16])).should eq(2)
end
test "for packed struct" do |abi, ctx|
abi.align(ctx.struct([ctx.int32, ctx.int64], packed: true)).should eq(1)
end
test "for array" do |abi, ctx|
abi.align(ctx.int16.array(10)).should eq(2)
end
end
describe "size" do
test "for integer" do |abi, ctx|
abi.size(ctx.int1).should be_a(::Int32)
abi.size(ctx.int1).should eq(1)
abi.size(ctx.int8).should eq(1)
abi.size(ctx.int16).should eq(2)
abi.size(ctx.int32).should eq(4)
abi.size(ctx.int64).should eq(8)
end
test "for pointer" do |abi, ctx|
abi.size(ctx.int8.pointer).should eq(4)
end
test "for float" do |abi, ctx|
abi.size(ctx.float).should eq(4)
end
test "for double" do |abi, ctx|
abi.size(ctx.double).should eq(8)
end
test "for struct" do |abi, ctx|
abi.size(ctx.struct([ctx.int32, ctx.int64])).should eq(16)
abi.size(ctx.struct([ctx.int16, ctx.int8])).should eq(4)
abi.size(ctx.struct([ctx.int32, ctx.int8, ctx.int8])).should eq(8)
end
test "for packed struct" do |abi, ctx|
abi.size(ctx.struct([ctx.int32, ctx.int64], packed: true)).should eq(12)
end
test "for array" do |abi, ctx|
abi.size(ctx.int16.array(10)).should eq(20)
end
end
describe "abi_info" do
test "does with primitives" do |abi, ctx|
arg_types = [ctx.int32, ctx.int64]
return_type = ctx.int8
info = abi.abi_info(arg_types, return_type, true, ctx)
info.arg_types.size.should eq(2)
info.arg_types[0].should eq(ArgType.direct(ctx.int32))
info.arg_types[1].should eq(ArgType.direct(ctx.int64))
info.return_type.should eq(ArgType.direct(ctx.int8))
end
test "does with structs less than 64 bits" do |abi, ctx|
str = ctx.struct([ctx.int8, ctx.int16])
arg_types = [str]
return_type = str
info = abi.abi_info(arg_types, return_type, true, ctx)
info.arg_types.size.should eq(1)
info.arg_types[0].should eq(ArgType.direct(str, cast: ctx.int32.array(1)))
info.return_type.should eq(ArgType.direct(str, cast: ctx.int32))
end
test "does with structs between 64 and 128 bits" do |abi, ctx|
str = ctx.struct([ctx.int64, ctx.int16])
arg_types = [str]
return_type = str
info = abi.abi_info(arg_types, return_type, true, ctx)
info.arg_types.size.should eq(1)
info.arg_types[0].should eq(ArgType.direct(str, cast: ctx.int64.array(2)))
info.return_type.should eq(ArgType.indirect(str, Attribute::StructRet))
end
test "does with structs between 64 and 128 bits" do |abi, ctx|
str = ctx.struct([ctx.int64, ctx.int64, ctx.int8])
arg_types = [str]
return_type = str
info = abi.abi_info(arg_types, return_type, true, ctx)
info.arg_types.size.should eq(1)
info.arg_types[0].should eq(ArgType.direct(str, cast: ctx.int64.array(3)))
info.return_type.should eq(ArgType.indirect(str, Attribute::StructRet))
end
end
{% end %}
end
end
|