Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DInstCount.cpp31 #define HANDLE_INST(N, OPCODE, CLASS) \ argument
32 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
44 #define HANDLE_INST(N, OPCODE, CLASS) \ argument
45 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
/minix/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DInstVisitor.h27 #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) { \
/minix/external/bsd/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp2483 OPCODE(CALL); in getTargetNodeName()
2487 OPCODE(IABS); in getTargetNodeName()
2488 OPCODE(ICMP); in getTargetNodeName()
2490 OPCODE(TM); in getTargetNodeName()
2499 OPCODE(MVC); in getTargetNodeName()
2501 OPCODE(NC); in getTargetNodeName()
2503 OPCODE(OC); in getTargetNodeName()
2505 OPCODE(XC); in getTargetNodeName()
2507 OPCODE(CLC); in getTargetNodeName()
2512 OPCODE(IPM); in getTargetNodeName()
[all …]
/minix/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1378 #define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM, in InstructionOpcodeToISD() argument
/minix/external/bsd/bind/dist/bin/tests/dst/
H A Dt2_data_1.in1431 OPCODE A four bit field that specifies kind of query in this
2261 Header | OPCODE=IQUERY, ID=997 |
2298 Header | OPCODE=RESPONSE, ID=997 |
H A Dt2_data_2.in1431 OPCODE A four bit field that specifies kind of query in this
2261 Header | OPCODE=IQUERY, ID=997 |
2298 Header | OPCODE=RESPONSE, ID=997 |
/minix/external/bsd/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp985 #define HANDLE_INST(NUM, OPCODE, CLASS) \ in visit() argument
986 case Instruction::OPCODE: visit##OPCODE((const CLASS&)I); break; in visit()
/minix/external/bsd/llvm/dist/llvm/docs/
H A DLangRef.rst2729 ``OPCODE (LHS, RHS)``
2730 Perform the specified operation of the LHS and RHS constants. OPCODE
/minix/external/gpl3/binutils/patches/
H A D0000-binutils_nbsd.patch15972 -/* Handle of the OPCODE hash table. */
17152 +/* handle of the OPCODE hash table */
17231 +#define OPCODE_MATCHES(OPCODE, OP) \
17232 + (((OPCODE) & MASK_##OP) == MATCH_##OP)