WebAssemblyInstrControl.td 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. //===- WebAssemblyInstrControl.td-WebAssembly control-flow ------*- tablegen -*-
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. ///
  9. /// \file
  10. /// WebAssembly control-flow code-gen constructs.
  11. ///
  12. //===----------------------------------------------------------------------===//
  13. let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in {
  14. // The condition operand is a boolean value which WebAssembly represents as i32.
  15. defm BR_IF : I<(outs), (ins bb_op:$dst, I32:$cond),
  16. (outs), (ins bb_op:$dst),
  17. [(brcond I32:$cond, bb:$dst)],
  18. "br_if \t$dst, $cond", "br_if \t$dst", 0x0d>;
  19. let isCodeGenOnly = 1 in
  20. defm BR_UNLESS : I<(outs), (ins bb_op:$dst, I32:$cond),
  21. (outs), (ins bb_op:$dst), []>;
  22. let isBarrier = 1 in
  23. defm BR : NRI<(outs), (ins bb_op:$dst),
  24. [(br bb:$dst)],
  25. "br \t$dst", 0x0c>;
  26. } // isBranch = 1, isTerminator = 1, hasCtrlDep = 1
  27. def : Pat<(brcond (i32 (setne I32:$cond, 0)), bb:$dst),
  28. (BR_IF bb_op:$dst, I32:$cond)>;
  29. def : Pat<(brcond (i32 (seteq I32:$cond, 0)), bb:$dst),
  30. (BR_UNLESS bb_op:$dst, I32:$cond)>;
  31. def : Pat<(brcond (i32 (xor bool_node:$cond, (i32 1))), bb:$dst),
  32. (BR_UNLESS bb_op:$dst, I32:$cond)>;
  33. // A list of branch targets enclosed in {} and separated by comma.
  34. // Used by br_table only.
  35. def BrListAsmOperand : AsmOperandClass { let Name = "BrList"; }
  36. let OperandNamespace = "WebAssembly", OperandType = "OPERAND_BRLIST" in
  37. def brlist : Operand<i32> {
  38. let ParserMatchClass = BrListAsmOperand;
  39. let PrintMethod = "printBrList";
  40. }
  41. // Duplicating a BR_TABLE is almost never a good idea. In particular, it can
  42. // lead to some nasty irreducibility due to tail merging when the br_table is in
  43. // a loop.
  44. let isTerminator = 1, hasCtrlDep = 1, isBarrier = 1, isNotDuplicable = 1 in {
  45. defm BR_TABLE_I32 : I<(outs), (ins I32:$index, variable_ops),
  46. (outs), (ins brlist:$brl),
  47. [(WebAssemblybr_table I32:$index)],
  48. "br_table \t$index", "br_table \t$brl",
  49. 0x0e>;
  50. // TODO: SelectionDAG's lowering insists on using a pointer as the index for
  51. // jump tables, so in practice we don't ever use BR_TABLE_I64 in wasm32 mode
  52. // currently.
  53. defm BR_TABLE_I64 : I<(outs), (ins I64:$index, variable_ops),
  54. (outs), (ins brlist:$brl),
  55. [(WebAssemblybr_table I64:$index)],
  56. "br_table \t$index", "br_table \t$brl",
  57. 0x0e>;
  58. } // isTerminator = 1, hasCtrlDep = 1, isBarrier = 1, isNotDuplicable = 1
  59. // This is technically a control-flow instruction, since all it affects is the
  60. // IP.
  61. defm NOP : NRI<(outs), (ins), [], "nop", 0x01>;
  62. // Placemarkers to indicate the start or end of a block or loop scope.
  63. // These use/clobber VALUE_STACK to prevent them from being moved into the
  64. // middle of an expression tree.
  65. let Uses = [VALUE_STACK], Defs = [VALUE_STACK] in {
  66. defm BLOCK : NRI<(outs), (ins Signature:$sig), [], "block \t$sig", 0x02>;
  67. defm LOOP : NRI<(outs), (ins Signature:$sig), [], "loop \t$sig", 0x03>;
  68. defm IF : I<(outs), (ins Signature:$sig, I32:$cond),
  69. (outs), (ins Signature:$sig),
  70. [], "if \t$sig, $cond", "if \t$sig", 0x04>;
  71. defm ELSE : NRI<(outs), (ins), [], "else", 0x05>;
  72. // END_BLOCK, END_LOOP, END_IF and END_FUNCTION are represented with the same
  73. // opcode in wasm.
  74. defm END_BLOCK : NRI<(outs), (ins), [], "end_block", 0x0b>;
  75. defm END_LOOP : NRI<(outs), (ins), [], "end_loop", 0x0b>;
  76. defm END_IF : NRI<(outs), (ins), [], "end_if", 0x0b>;
  77. // Generic instruction, for disassembler.
  78. let IsCanonical = 1 in
  79. defm END : NRI<(outs), (ins), [], "end", 0x0b>;
  80. let isTerminator = 1, isBarrier = 1 in
  81. defm END_FUNCTION : NRI<(outs), (ins), [], "end_function", 0x0b>;
  82. } // Uses = [VALUE_STACK], Defs = [VALUE_STACK]
  83. let hasCtrlDep = 1, isBarrier = 1 in {
  84. let isTerminator = 1 in {
  85. let isReturn = 1 in {
  86. defm RETURN : I<(outs), (ins variable_ops), (outs), (ins),
  87. [(WebAssemblyreturn)],
  88. "return", "return", 0x0f>;
  89. // Equivalent to RETURN, for use at the end of a function when wasm
  90. // semantics return by falling off the end of the block.
  91. let isCodeGenOnly = 1 in
  92. defm FALLTHROUGH_RETURN : I<(outs), (ins variable_ops), (outs), (ins), []>;
  93. } // isReturn = 1
  94. let IsCanonical = 1, isTrap = 1 in
  95. defm UNREACHABLE : NRI<(outs), (ins), [(trap)], "unreachable", 0x00>;
  96. } // isTerminator = 1
  97. // debugtrap explicitly returns despite trapping because it is supposed to just
  98. // get the attention of the debugger. Unfortunately, because UNREACHABLE is a
  99. // terminator, lowering debugtrap to UNREACHABLE can create an invalid
  100. // MachineBasicBlock when there is additional code after it. Lower it to this
  101. // non-terminator version instead.
  102. // TODO: Actually execute the debugger statement when running on the Web
  103. let isTrap = 1 in
  104. defm DEBUG_UNREACHABLE : NRI<(outs), (ins), [(debugtrap)], "unreachable", 0x00>;
  105. } // hasCtrlDep = 1, isBarrier = 1
  106. //===----------------------------------------------------------------------===//
  107. // Exception handling instructions
  108. //===----------------------------------------------------------------------===//
  109. let Predicates = [HasExceptionHandling] in {
  110. // Throwing an exception: throw / rethrow
  111. let isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 in {
  112. defm THROW : I<(outs), (ins tag_op:$tag, variable_ops),
  113. (outs), (ins tag_op:$tag), [],
  114. "throw \t$tag", "throw \t$tag", 0x08>;
  115. defm RETHROW : NRI<(outs), (ins i32imm:$depth), [], "rethrow \t$depth", 0x09>;
  116. } // isTerminator = 1, hasCtrlDep = 1, isBarrier = 1
  117. // The depth argument will be computed in CFGStackify. We set it to 0 here for
  118. // now.
  119. def : Pat<(int_wasm_rethrow), (RETHROW 0)>;
  120. // Region within which an exception is caught: try / end_try
  121. let Uses = [VALUE_STACK], Defs = [VALUE_STACK] in {
  122. defm TRY : NRI<(outs), (ins Signature:$sig), [], "try \t$sig", 0x06>;
  123. defm END_TRY : NRI<(outs), (ins), [], "end_try", 0x0b>;
  124. } // Uses = [VALUE_STACK], Defs = [VALUE_STACK]
  125. // Catching an exception: catch / catch_all
  126. let hasCtrlDep = 1, hasSideEffects = 1 in {
  127. let variadicOpsAreDefs = 1 in
  128. defm CATCH : I<(outs), (ins tag_op:$tag, variable_ops),
  129. (outs), (ins tag_op:$tag), [],
  130. "catch", "catch \t$tag", 0x07>;
  131. defm CATCH_ALL : NRI<(outs), (ins), [], "catch_all", 0x19>;
  132. }
  133. // Delegating an exception: delegate
  134. let isTerminator = 1, hasCtrlDep = 1, hasSideEffects = 1 in
  135. defm DELEGATE : NRI<(outs), (ins bb_op:$dst), [], "delegate \t $dst", 0x18>;
  136. // Pseudo instructions: cleanupret / catchret
  137. let isTerminator = 1, hasSideEffects = 1, isBarrier = 1, hasCtrlDep = 1,
  138. isPseudo = 1, isEHScopeReturn = 1 in {
  139. defm CLEANUPRET : NRI<(outs), (ins), [(cleanupret)], "cleanupret", 0>;
  140. defm CATCHRET : NRI<(outs), (ins bb_op:$dst, bb_op:$from),
  141. [(catchret bb:$dst, bb:$from)], "catchret", 0>;
  142. } // isTerminator = 1, hasSideEffects = 1, isBarrier = 1, hasCtrlDep = 1,
  143. // isPseudo = 1, isEHScopeReturn = 1
  144. } // Predicates = [HasExceptionHandling]