BackEndOpcodeAttrAsmJs.h 650 B

1234567891011
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. namespace OpCodeAttrAsmJs
  6. {
  7. // False if the opcode results in jump to end of the function and there cannot be fallthrough.
  8. bool HasFallThrough(Js::OpCodeAsmJs opcode);
  9. // True if the opcode has a small/large layout
  10. bool HasMultiSizeLayout(Js::OpCodeAsmJs opcode);
  11. };