FunctionJITRuntimeInfo.h 620 B

123456789101112131415161718
  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. #pragma once
  6. class FunctionJITRuntimeInfo
  7. {
  8. public:
  9. FunctionJITRuntimeInfo(FunctionJITRuntimeIDL * data);
  10. intptr_t GetClonedInlineCache(uint index) const;
  11. bool HasClonedInlineCaches() const;
  12. private:
  13. FunctionJITRuntimeIDL m_data;
  14. };