Searched refs:IS_64_BITS (Results 1 - 11 of 11) sorted by relevance
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | arch.h | 50 static constexpr bool IS_64_BITS = false; member 72 static constexpr bool IS_64_BITS = true; member 94 static constexpr bool IS_64_BITS = false; member 117 static constexpr bool IS_64_BITS = true; member 139 static constexpr bool IS_64_BITS = false; member 174 DEF_ARCH_PROPERTY_GETTER(Is64BitsArch, IS_64_BITS)
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | arch.h | 50 static constexpr bool IS_64_BITS = false; member 80 static constexpr bool IS_64_BITS = true; member 104 static constexpr bool IS_64_BITS = false; member 127 static constexpr bool IS_64_BITS = true; member 149 static constexpr bool IS_64_BITS = false; member 184 DEF_ARCH_PROPERTY_GETTER(Is64BitsArch, IS_64_BITS)
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | cframe.cpp | 81 if constexpr (!ArchTraits<ARCH>::IS_64_BITS) { in GetVRegValueSlot() 107 if constexpr (!ArchTraits<ARCH>::IS_64_BITS) { in GetVRegValueRegister() 122 if (!ArchTraits<ARCH>::IS_64_BITS && vreg.Has64BitValue()) { in GetVRegValueRegister() 167 if (!ArchTraits<ARCH>::IS_64_BITS && vreg.Has64BitValue()) { in SetVRegValue() 180 if (!ArchTraits<ARCH>::IS_64_BITS && vreg.Has64BitValue()) { in SetVRegValue() 187 if constexpr (!ArchTraits<ARCH>::IS_64_BITS) { in SetVRegValue()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | target_info.h | 236 return ArchTraits<ARCH>::IS_64_BITS ? sizeof(uint64_t) : sizeof(uint32_t); 263 return Reg(Target::SP_REG, ArchTraits<ARCH>::IS_64_BITS ? INT64_TYPE : INT32_TYPE); 267 return Reg(Target::FP_REG, ArchTraits<ARCH>::IS_64_BITS ? INT64_TYPE : INT32_TYPE); 271 return Reg(Target::LR_REG, ArchTraits<ARCH>::IS_64_BITS ? INT64_TYPE : INT32_TYPE); 275 return Reg(Target::ZERO_REG, ArchTraits<ARCH>::IS_64_BITS ? INT64_TYPE : INT32_TYPE);
|
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/ |
H A D | elf_builder.h | 98 using ElfAddr = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Addr, Elf32_Addr>; 99 using ElfOff = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Off, Elf32_Off>; 100 using ElfHalf = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Half, Elf32_Half>; 101 using ElfWord = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Word, Elf32_Word>; 102 using ElfSword = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Sword, Elf32_Sword>; 103 using ElfXword = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Xword, Elf32_Xword>; 104 using ElfSxword = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Sxword, Elf32_Sxword>; 105 using ElfEhdr = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Ehdr, Elf32_Ehdr>; 106 using ElfShdr = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Shdr, Elf32_Shdr>; 107 using ElfSym = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, Elf64_Sy [all...] |
/arkcompiler/runtime_core/static_core/runtime/tooling/sampler/ |
H A D | stack_walker_base.h | 27 using SlotType = std::conditional_t<ArchTraits<RUNTIME_ARCH>::IS_64_BITS, uint64_t, uint32_t>;
|
/arkcompiler/runtime_core/static_core/compiler/code_info/ |
H A D | code_info.h | 268 if constexpr (ArchTraits<RUNTIME_ARCH>::IS_64_BITS) { in GetMethod() 608 if constexpr (!ArchTraits<RUNTIME_ARCH>::IS_64_BITS) { // NOLINT in EnumerateRoots()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | cframe.h | 81 using SlotType = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, uint64_t, uint32_t>;
|
H A D | stack_walker.h | 83 using SlotType = std::conditional_t<ArchTraits<RUNTIME_ARCH>::IS_64_BITS, uint64_t, uint32_t>;
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | code_info_test.cpp | 98 if constexpr (!ArchTraits<RUNTIME_ARCH>::IS_64_BITS) { // NOLINT in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | code_info_test.cpp | 149 if constexpr (!ArchTraits<RUNTIME_ARCH>::IS_64_BITS) { // NOLINT in TEST_F()
|
Completed in 10 milliseconds