Home
last modified time | relevance | path

Searched defs:opcode (Results 1 – 25 of 66) sorted by relevance

123

/frameworks/libs/binary_translation/assembler/instructions/
Dinsn_def_riscv.json21 "add": { "opcode": "0000_0033", "type": "R-type" }, string
22 "and": { "opcode": "0000_7033", "type": "R-type" }, string
23 "div": { "opcode": "0200_4033", "type": "R-type" }, string
24 "divu": { "opcode": "0200_5033", "type": "R-type" }, string
25 "mul": { "opcode": "0200_0033", "type": "R-type" }, string
26 "mulh": { "opcode": "0200_1033", "type": "R-type" }, string
27 "mulhsu": { "opcode": "0200_2033", "type": "R-type" }, string
28 "mulhu": { "opcode": "0200_3033", "type": "R-type" }, string
29 "or": { "opcode": "0000_6033", "type": "R-type" }, string
30 "rem": { "opcode": "0200_6033", "type": "R-type" }, string
[all …]
Dinsn_def_rv64.json21 "AddUW": { "opcode": "0800_003b", "type": "R-type" }, string
22 "addw": { "opcode": "0000_003b", "type": "R-type" }, string
23 "divuw": { "opcode": "0200_503b", "type": "R-type" }, string
24 "divw": { "opcode": "0200_403b", "type": "R-type" }, string
25 "mulw": { "opcode": "0200_003b", "type": "R-type" }, string
26 "remuw": { "opcode": "0200_703b", "type": "R-type" }, string
27 "remw": { "opcode": "0200_603b", "type": "R-type" }, string
28 "rorw": { "opcode": "6000_503b", "type": "R-type" }, string
29 "sllw": { "opcode": "0000_103b", "type": "R-type" }, string
30 "subw": { "opcode": "4000_003b", "type": "R-type" } string
[all …]
Dinsn_def_rv32.json21 "bexti": { "opcode": "4800_5013", "type": "I-type" }, string
22 "rori": { "opcode": "6000_5013", "type": "I-type" }, string
23 "slli": { "opcode": "0000_1013", "type": "I-type" }, string
24 "srai": { "opcode": "4000_5013", "type": "I-type" }, string
25 "srli": { "opcode": "0000_5013", "type": "I-type" } string
/frameworks/base/services/core/java/com/android/server/hdmi/
DHdmiCecMessage.java52 protected HdmiCecMessage(int source, int destination, int opcode, byte[] params, in HdmiCecMessage()
61 private HdmiCecMessage(int source, int destination, int opcode, byte[] params) { in HdmiCecMessage()
76 static HdmiCecMessage build(int source, int destination, int opcode, byte[] params) { in build()
87 static HdmiCecMessage build(int source, int destination, int opcode) { in build()
203 private static String opcodeToString(@FeatureOpcode int opcode) { in opcodeToString()
362 private static boolean filterMessageParameters(int opcode) { in filterMessageParameters()
377 private static boolean isUserControlPressedMessage(int opcode) { in isUserControlPressedMessage()
381 static boolean isCecTransportMessage(int opcode) { in isCecTransportMessage()
DHdmiCecMessageCache.java53 public HdmiCecMessage getMessage(int address, int opcode) { in getMessage()
85 int opcode = message.getOpcode(); in cacheMessage() local
99 private boolean isCacheable(int opcode) { in isCacheable()
DDelayedMessageBuffer.java79 boolean isBuffered(int opcode) { in isBuffered()
88 List<HdmiCecMessage> getBufferedMessagesWithOpcode(int opcode) { in getBufferedMessagesWithOpcode()
DNewDeviceAction.java133 int opcode = cmd.getOpcode(); in processCommand() local
175 private boolean mayProcessCommandIfCached(int destAddress, int opcode) { in mayProcessCommandIfCached()
DRequestArcInitiationAction.java77 int opcode = cmd.getOpcode(); in processCommand() local
DRequestArcTerminationAction.java77 int opcode = cmd.getOpcode(); in processCommand() local
DSetArcTransmissionStateAction.java124 int opcode = cmd.getOpcode(); in processCommand() local
DRoutingControlAction.java78 int opcode = cmd.getOpcode(); in processCommand() local
/frameworks/libs/binary_translation/lite_translator/riscv64_to_x86_64/
Dlite_translator.cc35 Register LiteTranslator::Op(Decoder::OpOpcode opcode, Register arg1, Register arg2) { in Op()
134 Register LiteTranslator::Op32(Decoder::Op32Opcode opcode, Register arg1, Register arg2) { in Op32()
176 Register LiteTranslator::OpImm(Decoder::OpImmOpcode opcode, Register arg, int16_t imm) { in OpImm()
213 Register LiteTranslator::OpImm32(Decoder::OpImm32Opcode opcode, Register arg, int16_t imm) { in OpImm32()
249 Register LiteTranslator::ShiftImm32(Decoder::ShiftImm32Opcode opcode, Register arg, uint16_t imm) { in ShiftImm32()
295 void LiteTranslator::CompareAndBranch(Decoder::BranchOpcode opcode, in CompareAndBranch()
448 Register LiteTranslator::UpdateCsr(Decoder::CsrOpcode opcode, Register arg, Register csr) { in UpdateCsr()
471 Register LiteTranslator::UpdateCsr(Decoder::CsrImmOpcode opcode, uint8_t imm, Register csr) { in UpdateCsr()
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
DStubCallMethodAdapter.java257 public void visitInsn(int opcode) { in visitInsn()
292 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn()
299 public void visitFieldInsn(int opcode, String owner, String name, String desc) { in visitFieldInsn()
320 public void visitIntInsn(int opcode, int operand) { in visitIntInsn()
327 public void visitJumpInsn(int opcode, Label label) { in visitJumpInsn()
370 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn()
377 public void visitVarInsn(int opcode, int var) { in visitVarInsn()
DStaticInitMethodAdapter.java179 public void visitInsn(int opcode) { in visitInsn()
200 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn()
207 public void visitFieldInsn(int opcode, String owner, String name, String desc) { in visitFieldInsn()
228 public void visitIntInsn(int opcode, int operand) { in visitIntInsn()
235 public void visitJumpInsn(int opcode, Label label) { in visitJumpInsn()
278 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn()
285 public void visitVarInsn(int opcode, int var) { in visitVarInsn()
DDelegateMethodAdapter.java373 public void visitInsn(int opcode) { in visitInsn()
394 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn()
401 public void visitFieldInsn(int opcode, String owner, String name, String desc) { in visitFieldInsn()
422 public void visitIntInsn(int opcode, int operand) { in visitIntInsn()
429 public void visitJumpInsn(int opcode, Label label) { in visitJumpInsn()
472 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn()
479 public void visitVarInsn(int opcode, int var) { in visitVarInsn()
519 public void visitMethodInsn(int opcode, String owner, String name, String descriptor) { in visitMethodInsn()
DICreateInfo.java160 public int opcode; field in ICreateInfo.MethodInformation
165 public MethodInformation(int opcode, String owner, String name, String desc) { in MethodInformation()
DDependencyFinder.java514 public void visitFieldInsn(int opcode, String owner, String name, String desc) { in visitFieldInsn()
532 public void visitInsn(int opcode) { in visitInsn()
537 public void visitIntInsn(int opcode, int operand) { in visitIntInsn()
542 public void visitJumpInsn(int opcode, Label label) { in visitJumpInsn()
586 public void visitMethodInsn(int opcode, String owner, String name, String desc, in visitMethodInsn()
628 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn()
635 public void visitVarInsn(int opcode, int var) { in visitVarInsn()
DAfterConstructorMethodAdapter.java78 public void visitInsn(int opcode) { in visitInsn()
DAsmAnalyzer.java715 public void visitFieldInsn(int opcode, String owner, String name, String desc) { in visitFieldInsn()
733 public void visitInsn(int opcode) { in visitInsn()
738 public void visitIntInsn(int opcode, int operand) { in visitIntInsn()
743 public void visitJumpInsn(int opcode, Label label) { in visitJumpInsn()
805 public void visitMethodInsn(int opcode, String owner, String name, String desc, in visitMethodInsn()
851 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn()
858 public void visitVarInsn(int opcode, int var) { in visitVarInsn()
/frameworks/libs/binary_translation/backend/testing/include/x86_64/
Dloop_guest_context_optimizer_test_checks.h53 inline void CheckGetInsn(MachineInsn* insn, MachineOpcode opcode, MachineReg reg, size_t disp) { in CheckGetInsn()
61 inline void CheckPutInsn(MachineInsn* insn, MachineOpcode opcode, MachineReg reg, size_t disp) { in CheckPutInsn()
/frameworks/libs/binary_translation/heavy_optimizer/riscv64/
Dfrontend.cc37 void HeavyOptimizerFrontend::CompareAndBranch(BranchOpcode opcode, in CompareAndBranch()
75 x86_64::Assembler::Condition HeavyOptimizerFrontend::ToAssemblerCond(BranchOpcode opcode) { in ToAssemblerCond()
284 Register HeavyOptimizerFrontend::Op(Decoder::OpOpcode opcode, Register arg1, Register arg2) { in Op()
390 Register HeavyOptimizerFrontend::Op32(Decoder::Op32Opcode opcode, Register arg1, Register arg2) { in Op32()
429 Register HeavyOptimizerFrontend::OpImm(Decoder::OpImmOpcode opcode, Register arg, int16_t imm) { in OpImm()
469 Register HeavyOptimizerFrontend::OpImm32(Decoder::OpImm32Opcode opcode, Register arg, int16_t imm) { in OpImm32()
505 Register HeavyOptimizerFrontend::ShiftImm32(Decoder::ShiftImm32Opcode opcode, in ShiftImm32()
730 Register HeavyOptimizerFrontend::UpdateCsr(Decoder::CsrOpcode opcode, Register arg, Register csr) { in UpdateCsr()
753 Register HeavyOptimizerFrontend::UpdateCsr(Decoder::CsrImmOpcode opcode, in UpdateCsr()
/frameworks/libs/binary_translation/decoder/include/berberis/decoder/riscv64/
Dsemantics_player.h62 Register Amo(typename Decoder::AmoOpcode opcode, Register arg1, Register arg2, bool aq, bool rl) { in Amo()
79 Register Amo(typename Decoder::AmoOpcode opcode, Register arg1, Register arg2) { in Amo()
289 void Fma(typename Decoder::FmaOpcode opcode, in Fma()
521 void OpFp(typename Decoder::OpFpOpcode opcode, int8_t rm, int8_t dst, int8_t src1, int8_t src2) { in OpFp()
559 void OpFpGpRegisterTargetNoRounding(typename Decoder::OpFpGpRegisterTargetNoRoundingOpcode opcode, in OpFpGpRegisterTargetNoRounding()
596 typename Decoder::OpFpGpRegisterTargetSingleInputNoRoundingOpcode opcode, in OpFpGpRegisterTargetSingleInputNoRounding()
623 void OpFpNoRounding(const typename Decoder::OpFpNoRoundingOpcode opcode, in OpFpNoRounding()
719 void OpFpSingleInput(typename Decoder::OpFpSingleInputOpcode opcode, in OpFpSingleInput()
749 void OpFpSingleInputNoRounding(typename Decoder::OpFpSingleInputNoRoundingOpcode opcode, in OpFpSingleInputNoRounding()
Ddecoder.h651 AmoOpcode opcode; member
661 BranchOpcode opcode; member
668 CsrOpcode opcode; member
675 CsrImmOpcode opcode; member
706 FenceOpcode opcode; member
726 FmaOpcode opcode; member
750 OpcodeType opcode; member
757 OpSingleInputOpcode opcode; member
766 OpFpOpcode opcode; member
775 OpFpGpRegisterTargetNoRoundingOpcode opcode; member
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/hdmi/
DHdmiCecMessageTest.java38 int opcode = 0x7f; in testEqualsHdmiCecMessage() local
/frameworks/av/media/libaaudio/src/binding/aidl/aaudio/
DIAAudioClient.aidl20 oneway void onStreamChange(int handle, int opcode, int value); in onStreamChange()

123