• Home
  • Raw
  • Download

Lines Matching refs:StackMapEncoding

38 class StackMapEncoding;  variable
706 class StackMapEncoding {
708 StackMapEncoding() {} in StackMapEncoding() function
798 ALWAYS_INLINE uint32_t GetDexPc(const StackMapEncoding& encoding) const { in GetDexPc()
802 ALWAYS_INLINE void SetDexPc(const StackMapEncoding& encoding, uint32_t dex_pc) { in SetDexPc()
806 ALWAYS_INLINE uint32_t GetNativePcOffset(const StackMapEncoding& encoding) const { in GetNativePcOffset()
810 …ALWAYS_INLINE void SetNativePcOffset(const StackMapEncoding& encoding, uint32_t native_pc_offset) { in SetNativePcOffset()
814 ALWAYS_INLINE uint32_t GetDexRegisterMapOffset(const StackMapEncoding& encoding) const { in GetDexRegisterMapOffset()
818 ALWAYS_INLINE void SetDexRegisterMapOffset(const StackMapEncoding& encoding, uint32_t offset) { in SetDexRegisterMapOffset()
822 ALWAYS_INLINE uint32_t GetInlineDescriptorOffset(const StackMapEncoding& encoding) const { in GetInlineDescriptorOffset()
826 ALWAYS_INLINE void SetInlineDescriptorOffset(const StackMapEncoding& encoding, uint32_t offset) { in SetInlineDescriptorOffset()
830 ALWAYS_INLINE uint32_t GetRegisterMask(const StackMapEncoding& encoding) const { in GetRegisterMask()
834 ALWAYS_INLINE void SetRegisterMask(const StackMapEncoding& encoding, uint32_t mask) { in SetRegisterMask()
838 ALWAYS_INLINE size_t GetNumberOfStackMaskBits(const StackMapEncoding& encoding) const { in GetNumberOfStackMaskBits()
842 ALWAYS_INLINE bool GetStackMaskBit(const StackMapEncoding& encoding, size_t index) const { in GetStackMaskBit()
846 ALWAYS_INLINE void SetStackMaskBit(const StackMapEncoding& encoding, size_t index, bool value) { in SetStackMaskBit()
850 ALWAYS_INLINE bool HasDexRegisterMap(const StackMapEncoding& encoding) const { in HasDexRegisterMap()
854 ALWAYS_INLINE bool HasInlineInfo(const StackMapEncoding& encoding) const { in HasInlineInfo()
1026 StackMapEncoding stack_map_encoding;
1038 static_assert(alignof(StackMapEncoding) == 1, in CodeInfoEncoding()
1040 stack_map_encoding = *reinterpret_cast<const StackMapEncoding*>(ptr); in CodeInfoEncoding()
1041 ptr += sizeof(StackMapEncoding); in CodeInfoEncoding()
1060 dest->insert(dest->end(), stack_map_ptr, stack_map_ptr + sizeof(StackMapEncoding)); in Compress()
1205 const StackMapEncoding& stack_map_encoding = encoding.stack_map_encoding; in GetOsrStackMapForDexPc()