Home
last modified time | relevance | path

Searched refs:InstrConverterBase (Results 1 – 1 of 1) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86DomainReassignment.cpp82 class InstrConverterBase { class
87 InstrConverterBase(unsigned SrcOpcode) : SrcOpcode(SrcOpcode) {} in InstrConverterBase() function in __anonb853a5be0111::InstrConverterBase
89 virtual ~InstrConverterBase() = default;
113 class InstrIgnore : public InstrConverterBase {
115 InstrIgnore(unsigned SrcOpcode) : InstrConverterBase(SrcOpcode) {} in InstrIgnore()
130 class InstrReplacer : public InstrConverterBase {
136 : InstrConverterBase(SrcOpcode), DstOpcode(DstOpcode) {} in InstrReplacer()
140 if (!InstrConverterBase::isLegal(MI, TII)) in isLegal()
172 class InstrReplacerDstCOPY : public InstrConverterBase {
177 : InstrConverterBase(SrcOpcode), DstOpcode(DstOpcode) {} in InstrReplacerDstCOPY()
[all …]