Searched refs:HANDLE_CAST_INST (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instruction.def | 79 #ifndef HANDLE_CAST_INST 81 #define HANDLE_CAST_INST(num, opcode, Class) 83 #define HANDLE_CAST_INST(num, opcode, Class) HANDLE_INST(num, opcode, Class) 184 HANDLE_CAST_INST(38, Trunc , TruncInst ) // Truncate integers 185 HANDLE_CAST_INST(39, ZExt , ZExtInst ) // Zero extend integers 186 HANDLE_CAST_INST(40, SExt , SExtInst ) // Sign extend integers 187 HANDLE_CAST_INST(41, FPToUI , FPToUIInst ) // floating point -> UInt 188 HANDLE_CAST_INST(42, FPToSI , FPToSIInst ) // floating point -> SInt 189 HANDLE_CAST_INST(43, UIToFP , UIToFPInst ) // UInt -> floating point 190 HANDLE_CAST_INST(44, SIToFP , SIToFPInst ) // SInt -> floating point [all …]
|
H A D | Instruction.h | 975 #define HANDLE_CAST_INST(N, OPC, CLASS) OPC = N,
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InstructionSimplify.cpp | 7178 #define HANDLE_CAST_INST(num, opc, clas) case Instruction::opc: in simplifyInstructionWithOperands() macro 7180 #undef HANDLE_CAST_INST in simplifyInstructionWithOperands()
|