Searched refs:GetInstructionSetInstructionAlignment (Results 1 – 5 of 5) sorted by relevance
/art/libartbase/arch/ |
D | instruction_set_test.cc | 47 TEST(InstructionSetTest, GetInstructionSetInstructionAlignment) { in TEST() argument 48 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kThumb2), in TEST() 50 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kArm64), in TEST() 52 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kX86), in TEST() 54 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kX86_64), in TEST() 56 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kMips), in TEST() 58 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kMips64), in TEST()
|
D | instruction_set.h | 118 constexpr size_t GetInstructionSetInstructionAlignment(InstructionSet isa) { in GetInstructionSetInstructionAlignment() function
|
/art/runtime/ |
D | stack_map.h | 154 DCHECK_ALIGNED_PARAM(native_pc, GetInstructionSetInstructionAlignment(isa)); in PackNativePc() 155 return native_pc / GetInstructionSetInstructionAlignment(isa); in PackNativePc() 159 uint32_t native_pc = packed_native_pc * GetInstructionSetInstructionAlignment(isa); in UnpackNativePc() 160 DCHECK_EQ(native_pc / GetInstructionSetInstructionAlignment(isa), packed_native_pc); in UnpackNativePc()
|
/art/compiler/ |
D | exception_test.cc | 74 CHECK_ALIGNED_PARAM(native_pc_offset, GetInstructionSetInstructionAlignment(kRuntimeISA)); in SetUp()
|
/art/compiler/optimizing/ |
D | stack_map_test.cc | 48 constexpr static uint32_t kPcAlign = GetInstructionSetInstructionAlignment(kRuntimeISA);
|