Displaying 3 results from an estimated 3 matches for "volatilei1".
2011 Oct 04
0
[LLVMdev] [RFC] Proposal to make LLVM-IR endian agnostic
...type> @llvm.portable.load.E.<type>(<type>* ptr, i32 alignment,
i1 host, i1 atomic, i1 volatile, i1 nontemporal, i1 singlethread)
// big endian load
declare void @llvm.portable.store.e.<type>(<type> data, <type>* ptr,
i32 alignment, i1 host, i1 atomic, i1 volatilei1 nontemporal,
i1 singlethread) // little endian store
declare void @llvm.portable.store.E.<type>(<type> data, <type>* ptr,
i32 alignment, i1 host, i1 atomic, i1 volatile, i1 nontemporal,
i1 singlethread) // big endian store
. I don't like the 'e'/'...
2011 Oct 03
6
[LLVMdev] [RFC] Proposal to make LLVM-IR endian agnostic
...lare <type> @llvm.portable.load.E.<type>(<type>* ptr, i32 alignment,
i1 host, i1 atomic, i1 volatile, i1 nontemporal, i1 singlethread)
// big endian load
declare void @llvm.portable.store.e.<type>(<type> data, <type>* ptr,
i32 alignment, i1 host, i1 atomic, i1 volatilei1 nontemporal,
i1 singlethread) // little endian store
declare void @llvm.portable.store.E.<type>(<type> data, <type>* ptr,
i32 alignment, i1 host, i1 atomic, i1 volatile, i1 nontemporal,
i1 singlethread) // big endian store
A second smaller set could be:
declare <type> @llv...
2011 Oct 04
2
[LLVMdev] [RFC] Proposal to make LLVM-IR endian agnostic
...lare <type> @llvm.portable.load.E.<type>(<type>* ptr, i32 alignment,
i1 host, i1 atomic, i1 volatile, i1 nontemporal, i1 singlethread)
// big endian load
declare void @llvm.portable.store.e.<type>(<type> data, <type>* ptr,
i32 alignment, i1 host, i1 atomic, i1 volatilei1 nontemporal,
i1 singlethread) // little endian store
declare void @llvm.portable.store.E.<type>(<type> data, <type>* ptr,
i32 alignment, i1 host, i1 atomic, i1 volatile, i1 nontemporal,
i1 singlethread) // big endian store
* I don't like the 'e'/'E' r...