move_non_temporal.py (5081:2ccce8600a9d) move_non_temporal.py (6595:2aec993cdd8f)
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

--- 41 unchanged lines hidden (view full) ---

50# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54# Authors: Gabe Black
55
56microcode = '''
57# MOVNTDQ
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

--- 41 unchanged lines hidden (view full) ---

50# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54# Authors: Gabe Black
55
56microcode = '''
57# MOVNTDQ
58# MASKMOVDQU
58
59def macroop MASKMOVDQU_XMM_XMM {
60 ldfp ufp1, ds, [1, t0, rdi], dataSize=8
61 ldfp ufp2, ds, [1, t0, rdi], 8, dataSize=8
62 maskmov ufp1, xmml, xmmlm, size=1
63 maskmov ufp2, xmmh, xmmhm, size=1
64 stfp ufp1, ds, [1, t0, rdi], dataSize=8
65 stfp ufp2, ds, [1, t0, rdi], 8, dataSize=8
66};
59'''
67'''