| /openbsd-src/sys/arch/mips64/mips64/ |
| H A D | db_disasm.c | 578 if (i.RType.func == OP_DADDU && i.RType.rt == 0) { in dbmd_print_insn() 580 reg_name[i.RType.rd], reg_name[i.RType.rs]); in dbmd_print_insn() 584 if (i.RType.func == OP_MOVCI) { in dbmd_print_insn() 586 i.RType.rt & 1 ? 't' : 'f', in dbmd_print_insn() 587 reg_name[i.RType.rd], reg_name[i.RType.rs], in dbmd_print_insn() 588 i.RType.rt >> 2); in dbmd_print_insn() 593 insn = special_name[i.RType in dbmd_print_insn() [all...] |
| H A D | trap.c | 682 if (inst.RType.op == OP_SPECIAL3 && in itsa() 683 inst.RType.rs == 0 && in itsa() 684 inst.RType.rd == 29 && in itsa() 685 inst.RType.shamt == 0 && in itsa() 686 inst.RType.func == OP_RDHWR) { in itsa() 687 regs[inst.RType.rt] = (register_t)TCB_GET(p); in itsa() 885 switch ((int)inst.RType.func) { in MipsEmulateBranch() 888 retAddr = (vaddr_t)regsPtr[inst.RType.rs]; in MipsEmulateBranch() 901 if ((int64_t)(regsPtr[inst.RType.rs]) < 0) in MipsEmulateBranch() 910 if ((int64_t)(regsPtr[inst.RType in MipsEmulateBranch() [all...] |
| H A D | fp_emulate.c | 282 switch (inst.RType.rs) { in MipsFPTrap() 477 switch (inst.RType.rs) { in fpu_emulate() 1555 switch (inst.RType.rs) { in nofpu_emulate_cop1() 1626 cc = (inst.RType.rt & COPz_BC_CC_MASK) >> COPz_BC_CC_SHIFT; in nofpu_emulate_cop1() 1627 nd = inst.RType.rt & COPz_BCL_TF_MASK; in nofpu_emulate_cop1() 1628 istf = inst.RType.rt & COPz_BC_TF_MASK; in nofpu_emulate_cop1() 1846 if ((inst.RType.rt & 0x02) != 0 || inst.RType.shamt != 0) in nofpu_emulate_movci() 1849 cc = inst.RType.rt >> 2; in nofpu_emulate_movci() 1850 istf = inst.RType.rt & COPz_BC_TF_MASK; in nofpu_emulate_movci() 1853 if (inst.RType.rd != ZERO) in nofpu_emulate_movci() [all …]
|
| H A D | mips64_machdep.c | 357 switch (inst.RType.func) { in classify_insn() 395 switch (inst.RType.rs) { in classify_insn()
|
| /openbsd-src/sys/arch/mips64/include/ |
| H A D | mips_opcode.h | 71 } RType; member 113 } RType; member
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Mips/ |
| H A D | MicroMipsSizeReduction.cpp | 96 ReduceEntry(enum ReduceType RType, struct OpCodes Op, in ReduceEntry() 99 : eRType(RType), ReduceFunction(F), Ops(Op), OpInf(OpInf), Imm(Imm) {} in ReduceEntry() 110 enum ReduceType RType() const { return eRType; } in RType() function
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | ELFObjectWriter.cpp | 974 if (uint32_t RType = in writeRelocations() local 978 ERE32.setSymbolAndType(0, RType); in writeRelocations() 982 if (uint32_t RType = in writeRelocations() local 986 ERE32.setSymbolAndType(0, RType); in writeRelocations()
|
| /openbsd-src/gnu/llvm/llvm/lib/Object/ |
| H A D | MachOObjectFile.cpp | 2271 uint64_t RType = getRelocationType(Rel); in getRelocationTypeName() local 2285 if (RType > 5) in getRelocationTypeName() 2288 res = Table[RType]; in getRelocationTypeName() 2304 if (RType > 9) in getRelocationTypeName() 2307 res = Table[RType]; in getRelocationTypeName() 2323 if (RType > 9) in getRelocationTypeName() 2326 res = Table[RType]; in getRelocationTypeName() 2340 if (RType >= std::size(Table)) in getRelocationTypeName() 2343 res = Table[RType]; in getRelocationTypeName() 2365 if (RType > 15) in getRelocationTypeName() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | OpenCLBuiltins.td | 510 foreach RType = [Float, Double, Half, Char, UChar, Short, 515 foreach sat = !cond(!eq(RType.Name, "float") : [""], 516 !eq(RType.Name, "double") : [""], 517 !eq(RType.Name, "half") : [""], 520 def : Builtin<"convert_" # RType.Name # sat # rnd, [RType, IType], 523 def : Builtin<"convert_" # RType.Name # v # sat # rnd, 524 [VectorType<RType, v>, VectorType<IType, v>],
|
| H A D | SemaInit.cpp | 667 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) in FillInEmptyInitForField() local 668 if (!RType->getDecl()->isUnion()) in FillInEmptyInitForField() 789 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in FillInEmptyInitializations() local 790 const RecordDecl *RDecl = RType->getDecl(); in FillInEmptyInitializations()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGExprCXX.cpp | 1209 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in EmitNewArrayInitializer() local 1210 if (RType->getDecl()->isStruct()) { in EmitNewArrayInitializer() 1212 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl())) in EmitNewArrayInitializer() 1214 for (auto *Field : RType->getDecl()->fields()) in EmitNewArrayInitializer()
|
| /openbsd-src/gnu/llvm/llvm/lib/TableGen/ |
| H A D | TGParser.cpp | 2135 RecTy *RType = resolveTypes(Type, VTy); in ParseOperationCond() local 2136 if (!RType) { in ParseOperationCond() 2141 Type = RType; in ParseOperationCond()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 483 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local 484 if (RType != MachO::X86_64_RELOC_UNSIGNED) in getMachORelocationValueString() 531 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local 533 if (RType != MachO::GENERIC_RELOC_PAIR) in getMachORelocationValueString() 553 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local 554 if (RType != MachO::GENERIC_RELOC_PAIR) in getMachORelocationValueString() 593 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local 594 if (RType != MachO::ARM_RELOC_PAIR) in getMachORelocationValueString()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | LoopStrengthReduce.cpp | 2794 Type *RType = RVal->getType(); in isCompatibleIVType() local 2795 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy() && in isCompatibleIVType() 2800 RType->getPointerAddressSpace())); in isCompatibleIVType()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 10101 EVT RType = Node->getValueType(1); in expandMULO() local 10102 if (RType.bitsLT(Overflow.getValueType())) in expandMULO() 10103 Overflow = DAG.getNode(ISD::TRUNCATE, dl, RType, Overflow); in expandMULO() 10105 assert(RType.getSizeInBits() == Overflow.getValueSizeInBits() && in expandMULO()
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 750 SCEVTypes LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in CompareSCEVComplexity() local 751 if (LType != RType) in CompareSCEVComplexity() 752 return (int)LType - (int)RType; in CompareSCEVComplexity()
|