JITTimePolymorphicInlineCache.h 617 B

12345678910111213141516171819
  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 JITTimePolymorphicInlineCache
  7. {
  8. public:
  9. JITTimePolymorphicInlineCache();
  10. intptr_t GetAddr() const;
  11. intptr_t GetInlineCachesAddr() const;
  12. uint16 GetSize() const;
  13. private:
  14. PolymorphicInlineCacheIDL m_data;
  15. };