about summary refs log tree commit diff
path: root/src/libstd/sys/sgx/abi/mem.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-47/+0
2020-03-26Rename asm! to llvm_asm!Amanieu d'Antras-1/+1
asm! is left as a wrapper around llvm_asm! to maintain compatibility.
2019-12-24x.py fmt after previous deignoreMark Rousskov-5/+3
2019-05-02Fix potential integer overflow in SGX memory range calculation.Jethro Beekman-4/+8
Thanks to Eduard Marin and David Oswald at the University of Burmingham, and Jo Van Bulck at KU Leuven for discovering this issue.
2019-01-09Exposing enclave image-base to the enclave applicationVardhan Thigle-1/+3
image-base could be used by crates like backtrace to providing to make symbol resolution easier.
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-20Add `std::os::fortanix_sgx` moduleJethro Beekman-2/+6
2018-12-19Revert "Remove some dead code from `sgx`"Jethro Beekman-0/+7
This reverts commit 134661917bf4b086b027a2c58219d50ba57a1453.
2018-12-11Remove some dead code from `sgx`Oliver Scherer-7/+0
2018-12-07SGX target: implement user memory managementJethro Beekman-3/+21
2018-12-07Add x86_64-fortanix-unknown-sgx target to libstd and dependenciesJethro Beekman-0/+31
The files src/libstd/sys/sgx/*.rs are mostly copied/adapted from the wasm target. This also updates the dlmalloc submodule to the very latest version.