AMD64AsmOptions.java revision 12657:6ef01bd40ce2
166458Sdfr/*
266458Sdfr * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
366458Sdfr * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
466458Sdfr *
566458Sdfr * This code is free software; you can redistribute it and/or modify it
666458Sdfr * under the terms of the GNU General Public License version 2 only, as
766458Sdfr * published by the Free Software Foundation.
866458Sdfr *
966458Sdfr * This code is distributed in the hope that it will be useful, but WITHOUT
1066458Sdfr * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1166458Sdfr * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1266458Sdfr * version 2 for more details (a copy is included in the LICENSE file that
1366458Sdfr * accompanied this code).
1466458Sdfr *
1566458Sdfr * You should have received a copy of the GNU General Public License version
1666458Sdfr * 2 along with this work; if not, write to the Free Software Foundation,
1766458Sdfr * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1866458Sdfr *
1966458Sdfr * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2066458Sdfr * or visit www.oracle.com if you need additional information or have any
2166458Sdfr * questions.
2266458Sdfr */
2366458Sdfrpackage org.graalvm.compiler.asm.amd64;
2466458Sdfr
2566458Sdfrpublic class AMD64AsmOptions {
2666458Sdfr    public static final boolean UseNormalNop = false;
2766458Sdfr    public static final boolean UseAddressNop = true;
2866458Sdfr    public static final boolean UseIncDec = true;
29131840Sbrian    public static final boolean UseXmmLoadAndClearUpper = true;
3071785Speter    public static final boolean UseXmmRegToRegMoveAll = true;
3166458Sdfr}
3266458Sdfr