Home
last modified time | relevance | path

Searched refs:IS_64_BITS (Results 1 - 11 of 11) sorted by relevance

/arkcompiler/runtime_core/libpandabase/utils/
H A Darch.h50 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 Darch.h50 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 Dcframe.cpp81 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 Dtarget_info.h236 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 Delf_builder.h98 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 Dstack_walker_base.h27 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 Dcode_info.h268 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 Dcframe.h81 using SlotType = std::conditional_t<ArchTraits<ARCH>::IS_64_BITS, uint64_t, uint32_t>;
H A Dstack_walker.h83 using SlotType = std::conditional_t<ArchTraits<RUNTIME_ARCH>::IS_64_BITS, uint64_t, uint32_t>;
/arkcompiler/runtime_core/compiler/tests/
H A Dcode_info_test.cpp98 if constexpr (!ArchTraits<RUNTIME_ARCH>::IS_64_BITS) { // NOLINT in TEST_F()
/arkcompiler/runtime_core/static_core/compiler/tests/
H A Dcode_info_test.cpp149 if constexpr (!ArchTraits<RUNTIME_ARCH>::IS_64_BITS) { // NOLINT in TEST_F()

Completed in 15 milliseconds