Home
last modified time | relevance | path

Searched refs:RType (Results 1 – 20 of 20) sorted by relevance

/freebsd-13.1/sys/mips/mips/
H A Ddb_disasm.c168 if (i.RType.func == OP_ADDU && i.RType.rt == 0) { in md_printins()
170 reg_name[i.RType.rd], reg_name[i.RType.rs]); in md_printins()
185 reg_name[i.RType.rt], i.RType.shamt); in md_printins()
277 reg_name[i.RType.rt], c0_reg[i.RType.rd]); in md_printins()
282 reg_name[i.RType.rt], c0_reg[i.RType.rd]); in md_printins()
287 reg_name[i.RType.rt], c0_reg[i.RType.rd]); in md_printins()
292 reg_name[i.RType.rt], c0_reg[i.RType.rd]); in md_printins()
310 reg_name[i.RType.rt], i.RType.rd); in md_printins()
315 reg_name[i.RType.rt], i.RType.rd); in md_printins()
320 reg_name[i.RType.rt], i.RType.rd); in md_printins()
[all …]
H A Dtrap.c897 switch (inst.RType.op) { in trap()
899 switch (inst.RType.func) { in trap()
902 if (inst.RType.rd == 29) { in trap()
1184 switch ((int)inst.RType.func) { in MipsEmulateBranch()
1187 retAddr = regsPtr[inst.RType.rs]; in MipsEmulateBranch()
1202 if ((int)(regsPtr[inst.RType.rs]) < 0) in MipsEmulateBranch()
1240 if (regsPtr[inst.RType.rs] == regsPtr[inst.RType.rt]) in MipsEmulateBranch()
1248 if (regsPtr[inst.RType.rs] != regsPtr[inst.RType.rt]) in MipsEmulateBranch()
1256 if ((int)(regsPtr[inst.RType.rs]) <= 0) in MipsEmulateBranch()
1264 if ((int)(regsPtr[inst.RType.rs]) > 0) in MipsEmulateBranch()
[all …]
H A Dstack_machdep.c123 if (insn.RType.func == OP_JR) { in stack_capture()
124 if (insn.RType.rs != RA) in stack_capture()
H A Ddb_interface.c259 switch ((int)inst.RType.func) { in db_inst_type()
305 switch (inst.RType.rs) { in db_inst_type()
H A Ddb_trace.c224 switch (i.RType.func) { in stacktrace_subr()
250 switch (i.RType.rs) { in stacktrace_subr()
/freebsd-13.1/sys/mips/include/
H A Dmips_opcode.h76 } RType; member
108 } RType; member
/freebsd-13.1/sys/cddl/dev/dtrace/mips/
H A Ddtrace_isa.c376 switch (i.RType.func) { in dtrace_next_frame()
402 switch (i.RType.rs) { in dtrace_next_frame()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMicroMipsSizeReduction.cpp96 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
/freebsd-13.1/sys/dev/hwpmc/
H A Dhwpmc_mips.c539 switch (i.RType.func) { in pmc_next_frame()
565 switch (i.RType.rs) { in pmc_next_frame()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp2179 uint64_t RType = getRelocationType(Rel); in getRelocationTypeName() local
2193 if (RType > 5) in getRelocationTypeName()
2196 res = Table[RType]; in getRelocationTypeName()
2212 if (RType > 9) in getRelocationTypeName()
2215 res = Table[RType]; in getRelocationTypeName()
2231 if (RType > 9) in getRelocationTypeName()
2234 res = Table[RType]; in getRelocationTypeName()
2248 if (RType >= array_lengthof(Table)) in getRelocationTypeName()
2251 res = Table[RType]; in getRelocationTypeName()
2273 if (RType > 15) in getRelocationTypeName()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp962 if (uint32_t RType = in writeRelocations() local
966 ERE32.setSymbolAndType(0, RType); in writeRelocations()
970 if (uint32_t RType = in writeRelocations() local
974 ERE32.setSymbolAndType(0, RType); in writeRelocations()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td442 foreach RType = [Float, Double, Half, Char, UChar, Short,
447 foreach sat = !cond(!eq(RType.Name, "float") : [""],
448 !eq(RType.Name, "double") : [""],
449 !eq(RType.Name, "half") : [""],
452 def : Builtin<"convert_" # RType.Name # sat # rnd, [RType, IType],
455 def : Builtin<"convert_" # RType.Name # v # sat # rnd,
456 [VectorType<RType, v>, VectorType<IType, v>],
H A DSemaInit.cpp654 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) in FillInEmptyInitForField() local
655 if (!RType->getDecl()->isUnion()) in FillInEmptyInitForField()
776 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in FillInEmptyInitializations() local
777 const RecordDecl *RDecl = RType->getDecl(); in FillInEmptyInitializations()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp1210 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in EmitNewArrayInitializer() local
1211 if (RType->getDecl()->isStruct()) { in EmitNewArrayInitializer()
1213 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl())) in EmitNewArrayInitializer()
1215 for (auto *Field : RType->getDecl()->fields()) in EmitNewArrayInitializer()
H A DCGBuiltin.cpp2020 static llvm::Value *dumpRecord(CodeGenFunction &CGF, QualType RType, in dumpRecord() argument
2024 RecordDecl *RD = RType->castAs<RecordType>()->getDecl()->getDefinition(); in dumpRecord()
2028 CGF.Builder.CreateGlobalStringPtr(RType.getAsString() + " {\n"); in dumpRecord()
2059 FieldPtr = CGF.Builder.CreateStructGEP(CGF.ConvertType(RType), FieldPtr, in dumpRecord()
/freebsd-13.1/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp2040 RecTy *RType = resolveTypes(Type, VTy); in ParseOperationCond() local
2041 if (!RType) { in ParseOperationCond()
2046 Type = RType; in ParseOperationCond()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp464 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
465 if (RType != MachO::X86_64_RELOC_UNSIGNED) in getMachORelocationValueString()
512 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
514 if (RType != MachO::GENERIC_RELOC_PAIR) in getMachORelocationValueString()
534 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
535 if (RType != MachO::GENERIC_RELOC_PAIR) in getMachORelocationValueString()
574 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
575 if (RType != MachO::ARM_RELOC_PAIR) in getMachORelocationValueString()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2783 Type *RType = RVal->getType(); in isCompatibleIVType() local
2784 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy() && in isCompatibleIVType()
2789 RType->getPointerAddressSpace())); in isCompatibleIVType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp8556 EVT RType = Node->getValueType(1); in expandMULO() local
8557 if (RType.bitsLT(Overflow.getValueType())) in expandMULO()
8558 Overflow = DAG.getNode(ISD::TRUNCATE, dl, RType, Overflow); in expandMULO()
8560 assert(RType.getSizeInBits() == Overflow.getValueSizeInBits() && in expandMULO()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp700 SCEVTypes LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in CompareSCEVComplexity() local
701 if (LType != RType) in CompareSCEVComplexity()
702 return (int)LType - (int)RType; in CompareSCEVComplexity()