Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/decoder/include/berberis/decoder/riscv64/
Ddecoder.h1056 DecodeCompressedLoadStore<LoadStore::kLoad, FloatOperandType::kDouble>(); in DecodeCompressedInstruction()
1059 DecodeCompressedLoadStore<LoadStore::kLoad, LoadOperandType::k32bitSigned>(); in DecodeCompressedInstruction()
1062 DecodeCompressedLoadStore<LoadStore::kLoad, LoadOperandType::k64bit>(); in DecodeCompressedInstruction()
1065 DecodeCompressedLoadStore<LoadStore::kStore, FloatOperandType::kDouble>(); in DecodeCompressedInstruction()
1068 DecodeCompressedLoadStore<LoadStore::kStore, MemoryDataOperandType::k32bit>(); in DecodeCompressedInstruction()
1071 DecodeCompressedLoadStore<LoadStore::kStore, MemoryDataOperandType::k64bit>(); in DecodeCompressedInstruction()
1271 enum class LoadStore { kLoad, kStore }; enum
1273 template <enum LoadStore kLoadStore, auto kOperandType>
1286 if constexpr (kLoadStore == LoadStore::kStore) { in DecodeCompressedLoadStore()