Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/interpreter/riscv64/
Dinterpreter.cc452 void Branch(Decoder::BranchOpcode opcode, Register arg1, Register arg2, int16_t offset) { in Branch()
455 case Decoder::BranchOpcode::kBeq: in Branch()
458 case Decoder::BranchOpcode::kBne: in Branch()
461 case Decoder::BranchOpcode::kBltu: in Branch()
464 case Decoder::BranchOpcode::kBgeu: in Branch()
467 case Decoder::BranchOpcode::kBlt: in Branch()
470 case Decoder::BranchOpcode::kBge: in Branch()
/frameworks/libs/binary_translation/decoder/include/berberis/decoder/riscv64/
Ddecoder.h274 enum class BranchOpcode { enum
411 BranchOpcode opcode;
811 BranchOpcode opcode{GetBits<uint8_t, 12, 3>()}; in DecodeBranch()