Searched refs:RType (Results 1 - 19 of 19) sorted by relevance

/freebsd-12-stable/sys/mips/mips/
H A Ddb_disasm.c168 if (i.RType.func == OP_ADDU && i.RType.rt == 0) {
170 reg_name[i.RType.rd], reg_name[i.RType.rs]);
173 db_printf("%s", spec_name[i.RType.func]);
174 switch (i.RType.func) {
184 db_printf("\t%s,%s,%d", reg_name[i.RType.rd],
185 reg_name[i.RType.rt], i.RType.shamt);
194 db_printf("\t%s,%s,%s", reg_name[i.RType
[all...]
H A Dstack_machdep.c99 if (insn.RType.func == OP_JR) {
102 if (insn.RType.rs != RA)
H A Dtrap.c900 switch (inst.RType.op) {
902 switch (inst.RType.func) {
905 if (inst.RType.rd == 29) {
907 frame_regs[inst.RType.rt] = (register_t)(intptr_t)td->td_md.md_tls;
908 frame_regs[inst.RType.rt] += td->td_md.md_tls_tcb_offset;
1187 switch ((int)inst.RType.func) {
1190 retAddr = regsPtr[inst.RType.rs];
1205 if ((int)(regsPtr[inst.RType.rs]) < 0)
1215 if ((int)(regsPtr[inst.RType.rs]) >= 0)
1243 if (regsPtr[inst.RType
[all...]
H A Ddb_interface.c260 switch ((int)inst.RType.func) {
306 switch (inst.RType.rs) {
H A Ddb_trace.c220 switch (i.RType.func) {
246 switch (i.RType.rs) {
/freebsd-12-stable/sys/mips/include/
H A Dmips_opcode.h76 } RType; member in union:__anon15817
108 } RType; member in union:__anon15817
/freebsd-12-stable/sys/cddl/dev/dtrace/mips/
H A Ddtrace_isa.c376 switch (i.RType.func) {
402 switch (i.RType.rs) {
/freebsd-12-stable/sys/dev/hwpmc/
H A Dhwpmc_mips.c539 switch (i.RType.func) {
565 switch (i.RType.rs) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMicroMipsSizeReduction.cpp96 ReduceEntry(enum ReduceType RType, struct OpCodes Op, argument
99 : eRType(RType), ReduceFunction(F), Ops(Op), OpInf(OpInf), Imm(Imm) {}
110 enum ReduceType RType() const { return eRType; } function in struct:__anon5246::ReduceEntry
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp959 if (uint32_t RType =
963 ERE32.setSymbolAndType(0, RType);
967 if (uint32_t RType =
971 ERE32.setSymbolAndType(0, RType);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp2161 uint64_t RType = getRelocationType(Rel); local
2175 if (RType > 5)
2178 res = Table[RType];
2194 if (RType > 9)
2197 res = Table[RType];
2213 if (RType > 9)
2216 res = Table[RType];
2230 if (RType >= array_lengthof(Table))
2233 res = Table[RType];
2255 if (RType > 1
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp1203 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
1204 if (RType->getDecl()->isStruct()) {
1206 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl()))
1208 for (auto *Field : RType->getDecl()->fields())
H A DCGBuiltin.cpp1467 static llvm::Value *dumpRecord(CodeGenFunction &CGF, QualType RType,
1471 RecordDecl *RD = RType->castAs<RecordType>()->getDecl()->getDefinition();
1475 CGF.Builder.CreateGlobalStringPtr(RType.getAsString() + " {\n");
1506 FieldPtr = CGF.Builder.CreateStructGEP(CGF.ConvertType(RType), FieldPtr,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2747 Type *RType = RVal->getType(); local
2748 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy() &&
2753 RType->getPointerAddressSpace()));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp1779 RecTy *RType = resolveTypes(Type, VTy); local
1780 if (!RType) {
1785 Type = RType;
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp535 unsigned RType = Obj->getAnyRelocationType(RENext); local
536 if (RType != MachO::X86_64_RELOC_UNSIGNED)
583 unsigned RType = Obj->getAnyRelocationType(RENext); local
585 if (RType != MachO::GENERIC_RELOC_PAIR)
605 unsigned RType = Obj->getAnyRelocationType(RENext); local
606 if (RType != MachO::GENERIC_RELOC_PAIR)
645 unsigned RType = Obj->getAnyRelocationType(RENext); local
646 if (RType != MachO::ARM_RELOC_PAIR)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp7600 EVT RType = Node->getValueType(1);
7601 if (RType.getSizeInBits() < Overflow.getValueSizeInBits())
7602 Overflow = DAG.getNode(ISD::TRUNCATE, dl, RType, Overflow);
7604 assert(RType.getSizeInBits() == Overflow.getValueSizeInBits() &&
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp647 if (const RecordType *RType = ILE->getType()->getAs<RecordType>())
648 if (!RType->getDecl()->isUnion())
769 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
770 const RecordDecl *RDecl = RType->getDecl();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp668 unsigned LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); local
669 if (LType != RType)
670 return (int)LType - (int)RType;

Completed in 339 milliseconds