Lines Matching refs:WebAssembly

32     : WebAssemblyGenInstrInfo(WebAssembly::ADJCALLSTACKDOWN,  in WebAssemblyInstrInfo()
33 WebAssembly::ADJCALLSTACKUP, in WebAssemblyInstrInfo()
34 WebAssembly::CATCHRET), in WebAssemblyInstrInfo()
40 case WebAssembly::CONST_I32: in isReallyTriviallyReMaterializable()
41 case WebAssembly::CONST_I64: in isReallyTriviallyReMaterializable()
42 case WebAssembly::CONST_F32: in isReallyTriviallyReMaterializable()
43 case WebAssembly::CONST_F64: in isReallyTriviallyReMaterializable()
65 if (RC == &WebAssembly::I32RegClass) in copyPhysReg()
66 CopyOpcode = WebAssembly::COPY_I32; in copyPhysReg()
67 else if (RC == &WebAssembly::I64RegClass) in copyPhysReg()
68 CopyOpcode = WebAssembly::COPY_I64; in copyPhysReg()
69 else if (RC == &WebAssembly::F32RegClass) in copyPhysReg()
70 CopyOpcode = WebAssembly::COPY_F32; in copyPhysReg()
71 else if (RC == &WebAssembly::F64RegClass) in copyPhysReg()
72 CopyOpcode = WebAssembly::COPY_F64; in copyPhysReg()
73 else if (RC == &WebAssembly::V128RegClass) in copyPhysReg()
74 CopyOpcode = WebAssembly::COPY_V128; in copyPhysReg()
107 case WebAssembly::BR_IF: in analyzeBranch()
118 case WebAssembly::BR_UNLESS: in analyzeBranch()
129 case WebAssembly::BR: in analyzeBranch()
177 BuildMI(&MBB, DL, get(WebAssembly::BR)).addMBB(TBB); in insertBranch()
184 BuildMI(&MBB, DL, get(WebAssembly::BR_IF)).addMBB(TBB).add(Cond[1]); in insertBranch()
186 BuildMI(&MBB, DL, get(WebAssembly::BR_UNLESS)).addMBB(TBB).add(Cond[1]); in insertBranch()
191 BuildMI(&MBB, DL, get(WebAssembly::BR)).addMBB(FBB); in insertBranch()