forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rustc: Use an out pointer to return structs in x86 C ABI. rust-lang#5347
This Adds a bunch of tests for passing and returning structs of various sizes to C. It fixes the struct return rules on unix, and on windows for structs of size > 8 bytes. Struct passing on unix for structs under a certain size appears to still be broken.
- Loading branch information
Showing
19 changed files
with
397 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
use driver::session::os_win32; | ||
use core::option::*; | ||
use lib::llvm::*; | ||
use lib::llvm::llvm::*; | ||
use super::cabi::*; | ||
use super::common::*; | ||
use super::machine::*; | ||
|
||
struct X86_ABIInfo { | ||
ccx: @CrateContext | ||
} | ||
|
||
impl ABIInfo for X86_ABIInfo { | ||
fn compute_info(&self, | ||
atys: &[TypeRef], | ||
rty: TypeRef, | ||
ret_def: bool) -> FnType { | ||
let mut arg_tys = do atys.map |a| { | ||
LLVMType { cast: false, ty: *a } | ||
}; | ||
let mut ret_ty = LLVMType { | ||
cast: false, | ||
ty: rty | ||
}; | ||
let mut attrs = do atys.map |_| { | ||
None | ||
}; | ||
|
||
// Rules for returning structs taken from | ||
// http://www.angelcode.com/dev/callconv/callconv.html | ||
let sret = { | ||
let returning_a_struct = unsafe { LLVMGetTypeKind(rty) == Struct && ret_def }; | ||
let big_struct = if self.ccx.sess.targ_cfg.os != os_win32 { | ||
true | ||
} else { | ||
llsize_of_alloc(self.ccx, rty) > 8 | ||
}; | ||
returning_a_struct && big_struct | ||
}; | ||
|
||
if sret { | ||
let ret_ptr_ty = LLVMType { | ||
cast: false, | ||
ty: T_ptr(ret_ty.ty) | ||
}; | ||
arg_tys = ~[ret_ptr_ty] + arg_tys; | ||
attrs = ~[Some(StructRetAttribute)] + attrs; | ||
ret_ty = LLVMType { | ||
cast: false, | ||
ty: T_void(), | ||
}; | ||
} | ||
|
||
return FnType { | ||
arg_tys: arg_tys, | ||
ret_ty: ret_ty, | ||
attrs: attrs, | ||
sret: sret | ||
}; | ||
} | ||
} | ||
|
||
pub fn abi_info(ccx: @CrateContext) -> @ABIInfo { | ||
return @X86_ABIInfo { | ||
ccx: ccx | ||
} as @ABIInfo; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
a5ddc00
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r+