Home
last modified time | relevance | path

Searched refs:CodeOffset (Results 1 – 5 of 5) sorted by relevance

/art/runtime/arch/
Dcode_offset.h32 class CodeOffset {
34 ALWAYS_INLINE static CodeOffset FromOffset(uint32_t offset, InstructionSet isa = kRuntimeISA) {
35 return CodeOffset(offset / GetInstructionSetInstructionAlignment(isa));
38 ALWAYS_INLINE static CodeOffset FromCompressedOffset(uint32_t offset) { in FromCompressedOffset()
39 return CodeOffset(offset); in FromCompressedOffset()
53 ALWAYS_INLINE CodeOffset() = default;
54 ALWAYS_INLINE CodeOffset(const CodeOffset&) = default;
55 ALWAYS_INLINE CodeOffset& operator=(const CodeOffset&) = default;
56 ALWAYS_INLINE CodeOffset& operator=(CodeOffset&&) = default;
59 ALWAYS_INLINE explicit CodeOffset(uint32_t value) : value_(value) {} in CodeOffset() function
[all …]
/art/compiler/optimizing/
Dstack_map_stream.h113 CodeOffset native_pc_code_offset;
164 CodeOffset::FromOffset(native_pc_offset, instruction_set_); in SetStackMapNativePcOffset()
181 CodeOffset ComputeMaxNativePcCodeOffset() const;
Dstack_map_test.cc931 CodeOffset offset_thumb2 = in TEST()
932 CodeOffset::FromOffset(kThumb2InstructionAlignment, InstructionSet::kThumb2); in TEST()
933 CodeOffset offset_arm64 = in TEST()
934 CodeOffset::FromOffset(kArm64InstructionAlignment, InstructionSet::kArm64); in TEST()
935 CodeOffset offset_x86 = in TEST()
936 CodeOffset::FromOffset(kX86InstructionAlignment, InstructionSet::kX86); in TEST()
937 CodeOffset offset_x86_64 = in TEST()
938 CodeOffset::FromOffset(kX86_64InstructionAlignment, InstructionSet::kX86_64); in TEST()
939 CodeOffset offset_mips = in TEST()
940 CodeOffset::FromOffset(kMipsInstructionAlignment, InstructionSet::kMips); in TEST()
[all …]
Dstack_map_stream.cc36 current_entry_.native_pc_code_offset = CodeOffset::FromOffset(native_pc_offset, instruction_set_); in BeginStackMapEntry()
149 CodeOffset StackMapStream::ComputeMaxNativePcCodeOffset() const { in ComputeMaxNativePcCodeOffset()
150 CodeOffset max_native_pc_offset; in ComputeMaxNativePcCodeOffset()
169 CodeOffset max_native_pc_offset = ComputeMaxNativePcCodeOffset(); in PrepareForFillIn()
Dcode_generator.cc1083 CodeOffset native_pc_offset = stack_map_stream->GetStackMap(count - 1).native_pc_code_offset; in HasStackMapAtCurrentPc()