| /src/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InstCount.cpp | 29 #define HANDLE_INST(N, OPCODE, CLASS) \ argument 30 STATISTIC(Num##OPCODE##Inst, "Number of " #OPCODE " insts"); 41 #define HANDLE_INST(N, OPCODE, CLASS) \ argument 42 void visit##OPCODE(CLASS &) { \ 43 ++Num##OPCODE##Inst; \
|
| /src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | InstVisitor.h | 24 #define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS; argument 122 #define HANDLE_INST(NUM, OPCODE, CLASS) \ in visit() argument 123 case Instruction::OPCODE: return \ in visit() 125 visit##OPCODE(static_cast<CLASS&>(I)); in visit() 154 #define HANDLE_INST(NUM, OPCODE, CLASS) \ argument 155 RetTy visit##OPCODE(CLASS &I) { \
|
| /src/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 6374 #define OPCODE(NAME) case SystemZISD::NAME: return "SystemZISD::" #NAME in getTargetNodeName() macro 6377 OPCODE(RET_GLUE); in getTargetNodeName() 6378 OPCODE(CALL); in getTargetNodeName() 6379 OPCODE(SIBCALL); in getTargetNodeName() 6380 OPCODE(TLS_GDCALL); in getTargetNodeName() 6381 OPCODE(TLS_LDCALL); in getTargetNodeName() 6382 OPCODE(PCREL_WRAPPER); in getTargetNodeName() 6383 OPCODE(PCREL_OFFSET); in getTargetNodeName() 6384 OPCODE(ICMP); in getTargetNodeName() 6385 OPCODE(FCMP); in getTargetNodeName() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
| H A D | SandboxIRValues.def | 24 #define DEF_INSTR(ID, OPCODE, CLASS)
|
| /src/stand/ficl/ |
| H A D | vm.c | 191 } OPCODE; 202 OPCODE o = (*ip++).i;
|
| /src/crypto/openssl/crypto/modes/asm/ |
| H A D | aes-gcm-avx512.pl | 623 my $OPCODE = $_[1]; # [in] instruction name 647 $code .= "$OPCODE $SRC2[$reg_idx],$SRC1[$reg_idx],$DST[$reg_idx]\n"; 657 $code .= "$OPCODE @{[XWORD($SRC2REG)]},@{[XWORD($SRC1REG)]},@{[XWORD($DSTREG)]}\n"; 659 $code .= "$OPCODE @{[YWORD($SRC2REG)]},@{[YWORD($SRC1REG)]},@{[YWORD($DSTREG)]}\n"; 661 $code .= "$OPCODE $SRC2REG,$SRC1REG,$DSTREG\n";
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | IRTranslator.cpp | 3488 #define HANDLE_INST(NUM, OPCODE, CLASS) \ in translate() argument 3489 case Instruction::OPCODE: \ in translate() 3490 return translate##OPCODE(Inst, *CurBuilder.get()); in translate() 3542 #define HANDLE_INST(NUM, OPCODE, CLASS) \ in translate() argument 3543 case Instruction::OPCODE: \ in translate() 3544 return translate##OPCODE(*CE, *EntryBuilder.get()); in translate()
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetLoweringBase.cpp | 1755 #define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM, in InstructionOpcodeToISD() argument
|
| /src/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrMisc.td | 1602 // OPCODE 0F 01 FE 1617 // OPCODE 0F 01 FF
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 1383 #define HANDLE_INST(NUM, OPCODE, CLASS) \ in visit() argument 1384 case Instruction::OPCODE: visit##OPCODE((const CLASS&)I); break; in visit()
|