Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceInstMIPS32.h946 class InstMIPS32Sync : public InstMIPS32 {
947 InstMIPS32Sync() = delete;
948 InstMIPS32Sync(const InstMIPS32Sync &) = delete;
949 InstMIPS32Sync &operator=(const InstMIPS32Sync &) = delete;
952 static InstMIPS32Sync *create(Cfg *Func) { in create()
953 return new (Func->allocate<InstMIPS32Sync>()) InstMIPS32Sync(Func); in create()
976 InstMIPS32Sync(Cfg *Func) : InstMIPS32(Func, InstMIPS32::Sync, 0, nullptr) {} in InstMIPS32Sync() function
DIceInstMIPS32.cpp148 const char *InstMIPS32Sync::Opcode = "sync";
1203 void InstMIPS32Sync::emitIAS(const Cfg *Func) const { in emitIAS()
DIceTargetLoweringMIPS32.cpp641 Context.insert<InstMIPS32Sync>(); in genTargetHelperCallFor()
658 Context.insert<InstMIPS32Sync>(); in genTargetHelperCallFor()
664 Context.insert<InstMIPS32Sync>(); in genTargetHelperCallFor()
682 Context.insert<InstMIPS32Sync>(); in genTargetHelperCallFor()
689 Context.insert<InstMIPS32Sync>(); in genTargetHelperCallFor()
735 Context.insert<InstMIPS32Sync>(); in genTargetHelperCallFor()
741 Context.insert<InstMIPS32Sync>(); in genTargetHelperCallFor()
5686 if (llvm::isa<InstMIPS32Sync>(Instr)) { in lowerOther()
DIceTargetLoweringMIPS32.h576 void _sync() { Context.insert<InstMIPS32Sync>(); } in _sync()