Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInstCount.cpp29 #define HANDLE_INST(N, OPCODE, CLASS) \
30 STATISTIC(Num##OPCODE##Inst, "Number of " #OPCODE " insts");
41 #define HANDLE_INST(N, OPCODE, CLASS) \ in visitBasicBlock()
42 void visit##OPCODE(CLASS &) { \
43 ++Num##OPCODE##Inst; \ argument
31 HANDLE_INST(N,OPCODE,CLASS) global() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstVisitor.h24 #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) { \
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp6374 #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 …]
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DSandboxIRValues.def24 #define DEF_INSTR(ID, OPCODE, CLASS)
/freebsd/stand/ficl/
H A Dvm.c191 } OPCODE;
202 OPCODE o = (*ip++).i;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp3488 #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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1755 #define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM, in InstructionOpcodeToISD() argument
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrMisc.td1602 // OPCODE 0F 01 FE
1617 // OPCODE 0F 01 FF
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1383 #define HANDLE_INST(NUM, OPCODE, CLASS) \ in visit() argument
1384 case Instruction::OPCODE: visit##OPCODE((const CLASS&)I); break; in visit()