Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: src/IceInstX8664.h

Issue 1257643004: Subzero. Buildable, non-functional TargetLoweringX8664. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: git pull Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceAssemblerX86BaseImpl.h ('k') | src/IceInstX8664.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstX8664.h
diff --git a/src/IceInstX8632.h b/src/IceInstX8664.h
similarity index 53%
copy from src/IceInstX8632.h
copy to src/IceInstX8664.h
index 44939ddba21d84355631ac5d65aa5732f97f0493..75e371965cd3489c854a562af57b08157fe85fdf 100644
--- a/src/IceInstX8632.h
+++ b/src/IceInstX8664.h
@@ -1,4 +1,4 @@
-//===- subzero/src/IceInstX8632.h - x86-32 machine instructions -*- C++ -*-===//
+//===- subzero/src/IceInstX8664.h - x86-64 machine instructions -*- C++ -*-===//
//
// The Subzero Code Generator
//
@@ -8,30 +8,27 @@
//===----------------------------------------------------------------------===//
///
/// \file
-/// This file used to house all the X8632 instructions. Subzero has been
+/// This file used to house all the X8664 instructions. Subzero has been
/// modified to use templates for X86 instructions, so all those definitions are
/// are in IceInstX86Base.h
///
-/// When interacting with the X8632 target (which should only happen in the
-/// X8632 TargetLowering) clients have should use the Ice::X8632::Traits::Insts
+/// When interacting with the X8664 target (which should only happen in the
+/// X8664 TargetLowering) clients have should use the Ice::X8664::Traits::Insts
/// traits, which hides all the template verboseness behind a type alias.
///
-/// For example, to create an X8632 MOV Instruction, clients should do
+/// For example, to create an X8664 MOV Instruction, clients should do
///
-/// ::Ice::X8632::Traits::Insts::Mov::create
-///
-/// In the future, this file might be used to declare X8632 specific
-/// instructions (e.g., FLD, and FSTP.)
+/// ::Ice::X8664::Traits::Insts::Mov::create
///
//===----------------------------------------------------------------------===//
-#ifndef SUBZERO_SRC_ICEINSTX8632_H
-#define SUBZERO_SRC_ICEINSTX8632_H
+#ifndef SUBZERO_SRC_ICEINSTX8664_H
+#define SUBZERO_SRC_ICEINSTX8664_H
#include "IceDefs.h"
#include "IceInst.h"
#include "IceInstX86Base.h"
#include "IceOperand.h"
-#include "IceTargetLoweringX8632Traits.h"
+#include "IceTargetLoweringX8664Traits.h"
-#endif // SUBZERO_SRC_ICEINSTX8632_H
+#endif // SUBZERO_SRC_ICEINSTX8664_H
« no previous file with comments | « src/IceAssemblerX86BaseImpl.h ('k') | src/IceInstX8664.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698