Rename ExecutionDepsFix files to ExecutionDomainFix
authorMarina Yatsina <marina.yatsina@intel.com>
Mon, 22 Jan 2018 10:06:33 +0000 (10:06 +0000)
committerMarina Yatsina <marina.yatsina@intel.com>
Mon, 22 Jan 2018 10:06:33 +0000 (10:06 +0000)
This is the one of multiple patches that fix bugzilla https://bugs.llvm.org/show_bug.cgi?id=33869
Most of the patches are intended at refactoring the existent code.

Additional relevant reviews:
https://reviews.llvm.org/D40330
https://reviews.llvm.org/D40331
https://reviews.llvm.org/D40333
https://reviews.llvm.org/D40334

Differential Revision: https://reviews.llvm.org/D40332

Change-Id: I6a048cca7fdafbfc42fb1bac94343e483befded8
llvm-svn: 323094

llvm/include/llvm/CodeGen/ExecutionDomainFix.h [moved from llvm/include/llvm/CodeGen/ExecutionDepsFix.h with 99% similarity]
llvm/lib/CodeGen/CMakeLists.txt
llvm/lib/CodeGen/ExecutionDomainFix.cpp [moved from llvm/lib/CodeGen/ExecutionDepsFix.cpp with 99% similarity]
llvm/lib/Target/ARM/ARMTargetMachine.cpp
llvm/lib/Target/X86/X86TargetMachine.cpp

@@ -1,4 +1,4 @@
-//==- llvm/CodeGen/ExecutionDepsFix.h - Execution Dependency Fix -*- C++ -*-==//
+//==--- llvm/CodeGen/ExecutionDepsFix.h - Execution Domain Fix -*- C++ -*---==//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 //
-/// \file Execution Dependency Fix pass.
+/// \file Execution Domain Fix pass.
 ///
 /// Some X86 SSE instructions like mov, and, or, xor are available in different
 /// variants for different operand types. These variant instructions are
index 3aeb491..8b8f8d0 100644 (file)
@@ -18,7 +18,7 @@ add_llvm_library(LLVMCodeGen
   DwarfEHPrepare.cpp
   EarlyIfConversion.cpp
   EdgeBundles.cpp
-  ExecutionDepsFix.cpp
+  ExecutionDomainFix.cpp
   ExpandISelPseudos.cpp
   ExpandMemCmp.cpp
   ExpandPostRAPseudos.cpp
similarity index 99%
rename from llvm/lib/CodeGen/ExecutionDepsFix.cpp
rename to llvm/lib/CodeGen/ExecutionDomainFix.cpp
index 1446b88..47ff393 100644 (file)
@@ -1,4 +1,4 @@
-//===- ExecutionDepsFix.cpp - Fix execution dependecy issues ----*- C++ -*-===//
+//===- ExecutionDepsFix.cpp - Fix execution domain issues ----*- C++ -*-===//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "llvm/CodeGen/ExecutionDepsFix.h"
+#include "llvm/CodeGen/ExecutionDomainFix.h"
 #include "llvm/ADT/PostOrderIterator.h"
 #include "llvm/CodeGen/MachineRegisterInfo.h"
 #include "llvm/CodeGen/TargetInstrInfo.h"
index c713ac1..66eaa3c 100644 (file)
@@ -22,7 +22,7 @@
 #include "llvm/ADT/StringRef.h"
 #include "llvm/ADT/Triple.h"
 #include "llvm/Analysis/TargetTransformInfo.h"
-#include "llvm/CodeGen/ExecutionDepsFix.h"
+#include "llvm/CodeGen/ExecutionDomainFix.h"
 #include "llvm/CodeGen/GlobalISel/CallLowering.h"
 #include "llvm/CodeGen/GlobalISel/IRTranslator.h"
 #include "llvm/CodeGen/GlobalISel/InstructionSelect.h"
index ca243b5..f07743a 100644 (file)
@@ -26,7 +26,7 @@
 #include "llvm/ADT/StringRef.h"
 #include "llvm/ADT/Triple.h"
 #include "llvm/Analysis/TargetTransformInfo.h"
-#include "llvm/CodeGen/ExecutionDepsFix.h"
+#include "llvm/CodeGen/ExecutionDomainFix.h"
 #include "llvm/CodeGen/GlobalISel/CallLowering.h"
 #include "llvm/CodeGen/GlobalISel/IRTranslator.h"
 #include "llvm/CodeGen/GlobalISel/InstructionSelect.h"