Home
last modified time | relevance | path

Searched refs:GetInstructionSetInstructionAlignment (Results 1 – 8 of 8) sorted by relevance

/art/libartbase/arch/
Dinstruction_set_test.cc43 TEST(InstructionSetTest, GetInstructionSetInstructionAlignment) { in TEST() argument
44 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kThumb2), in TEST()
46 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kArm64), in TEST()
48 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kX86), in TEST()
50 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kX86_64), in TEST()
Dinstruction_set.h129 constexpr size_t GetInstructionSetInstructionAlignment(InstructionSet isa) { in GetInstructionSetInstructionAlignment() function
/art/dex2oat/linker/
Dcode_info_table_deduper_test.cc31 constexpr static uint32_t kPcAlign = GetInstructionSetInstructionAlignment(kRuntimeISA); in TEST()
/art/runtime/
Dstack_map.h159 DCHECK_ALIGNED_PARAM(native_pc, GetInstructionSetInstructionAlignment(isa)); in PackNativePc()
160 return native_pc / GetInstructionSetInstructionAlignment(isa); in PackNativePc()
164 uint32_t native_pc = packed_native_pc * GetInstructionSetInstructionAlignment(isa); in UnpackNativePc()
165 DCHECK_EQ(native_pc / GetInstructionSetInstructionAlignment(isa), packed_native_pc); in UnpackNativePc()
/art/compiler/
Dexception_test.cc78 CHECK_ALIGNED_PARAM(native_pc_offset, GetInstructionSetInstructionAlignment(kRuntimeISA)); in SetUp()
/art/compiler/debug/
Delf_debug_writer.cc241 const uint32_t kPcAlign = GetInstructionSetInstructionAlignment(isa); in PackElfFileForJIT()
/art/compiler/optimizing/
Dstack_map_test.cc49 constexpr static uint32_t kPcAlign = GetInstructionSetInstructionAlignment(kRuntimeISA);
/art/runtime/jit/
Djit_code_cache.cc511 addr = AlignDown(addr, GetInstructionSetInstructionAlignment(kRuntimeISA)); // Thumb-bit. in FreeAllMethodHeaders()