11.2Salnsn/*	$NetBSD: sljit_machdep.h,v 1.2 2015/06/10 23:16:27 alnsn Exp $	*/
21.1Salnsn
31.1Salnsn/*-
41.1Salnsn * Copyright (c) 2012-2013 The NetBSD Foundation, Inc.
51.1Salnsn * All rights reserved.
61.1Salnsn *
71.1Salnsn * Redistribution and use in source and binary forms, with or without
81.1Salnsn * modification, are permitted provided that the following conditions
91.1Salnsn * are met:
101.1Salnsn * 1. Redistributions of source code must retain the above copyright
111.1Salnsn *    notice, this list of conditions and the following disclaimer.
121.1Salnsn * 2. Redistributions in binary form must reproduce the above copyright
131.1Salnsn *    notice, this list of conditions and the following disclaimer in the
141.1Salnsn *    documentation and/or other materials provided with the distribution.
151.1Salnsn *
161.1Salnsn * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
171.1Salnsn * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
181.1Salnsn * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
191.1Salnsn * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
201.1Salnsn * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
211.1Salnsn * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
221.1Salnsn * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
231.1Salnsn * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
241.1Salnsn * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
251.1Salnsn * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
261.1Salnsn * POSSIBILITY OF SUCH DAMAGE.
271.1Salnsn */
281.1Salnsn
291.1Salnsn#ifndef _AMD64_SLJITARCH_H
301.1Salnsn#define _AMD64_SLJITARCH_H
311.1Salnsn
321.2Salnsn#if !defined __i386__
331.2Salnsn
341.1Salnsn#define SLJIT_CONFIG_X86_64 1
351.1Salnsn
361.1Salnsn#define SLJIT_CACHE_FLUSH(from, to)
371.1Salnsn
381.2Salnsn#else	/*	!__i386__	*/
391.2Salnsn
401.2Salnsn#include <i386/sljit_machdep.h>
411.2Salnsn
421.2Salnsn#endif
431.2Salnsn
441.1Salnsn#endif
45