[BOLT][NFC] Move isMOVSX64rm32 out of MCPlusBuilder
authorAmir Ayupov <aaupov@fb.com>
Wed, 16 Mar 2022 15:14:50 +0000 (08:14 -0700)
committerAmir Ayupov <aaupov@fb.com>
Wed, 16 Mar 2022 15:18:56 +0000 (08:18 -0700)
Reviewed By: rafauler

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

bolt/include/bolt/Core/MCPlusBuilder.h
bolt/lib/Target/X86/X86MCPlusBuilder.cpp

index 2378f2b..c88e7c2 100644 (file)
@@ -526,11 +526,6 @@ public:
     return false;
   }
 
-  virtual bool isMOVSX64rm32(const MCInst &Inst) const {
-    llvm_unreachable("not implemented");
-    return false;
-  }
-
   virtual bool isLeave(const MCInst &Inst) const {
     llvm_unreachable("not implemented");
     return false;
index facb262..dba085e 100644 (file)
@@ -265,6 +265,10 @@ bool isTEST(unsigned Opcode) {
   }
 }
 
+bool isMOVSX64rm32(const MCInst &Inst) {
+  return Inst.getOpcode() == X86::MOVSX64rm32;
+}
+
 class X86MCPlusBuilder : public MCPlusBuilder {
 public:
   X86MCPlusBuilder(const MCInstrAnalysis *Analysis, const MCInstrInfo *Info,
@@ -542,10 +546,6 @@ public:
     return Inst.getOpcode() == X86::LEA64r;
   }
 
-  bool isMOVSX64rm32(const MCInst &Inst) const override {
-    return Inst.getOpcode() == X86::MOVSX64rm32;
-  }
-
   bool isLeave(const MCInst &Inst) const override {
     return Inst.getOpcode() == X86::LEAVE || Inst.getOpcode() == X86::LEAVE64;
   }