Home
last modified time | relevance | path

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

/trueos/sys/mips/mips/
HDdb_disasm.c162 if (i.RType.func == OP_ADDU && i.RType.rt == 0) { in md_printins()
164 reg_name[i.RType.rd], reg_name[i.RType.rs]); in md_printins()
167 db_printf("%s", spec_name[i.RType.func]); in md_printins()
168 switch (i.RType.func) { in md_printins()
178 db_printf("\t%s,%s,%d", reg_name[i.RType.rd], in md_printins()
179 reg_name[i.RType.rt], i.RType.shamt); in md_printins()
188 db_printf("\t%s,%s,%s", reg_name[i.RType.rd], in md_printins()
189 reg_name[i.RType.rt], reg_name[i.RType.rs]); in md_printins()
194 db_printf("\t%s", reg_name[i.RType.rd]); in md_printins()
203 db_printf("\t%s", reg_name[i.RType.rs]); in md_printins()
[all …]
HDtrap.c907 switch (inst.RType.op) { in trap()
909 switch (inst.RType.func) { in trap()
912 if (inst.RType.rd == 29) { in trap()
914 frame_regs[inst.RType.rt] = (register_t)(intptr_t)td->td_md.md_tls; in trap()
917 frame_regs[inst.RType.rt] += TLS_TP_OFFSET + TLS_TCB_SIZE32; in trap()
920 frame_regs[inst.RType.rt] += TLS_TP_OFFSET + TLS_TCB_SIZE; in trap()
1194 switch ((int)inst.RType.func) { in MipsEmulateBranch()
1197 retAddr = regsPtr[inst.RType.rs]; in MipsEmulateBranch()
1212 if ((int)(regsPtr[inst.RType.rs]) < 0) in MipsEmulateBranch()
1222 if ((int)(regsPtr[inst.RType.rs]) >= 0) in MipsEmulateBranch()
[all …]
HDstack_machdep.c98 if((insn.RType.func == OP_JR)) in stack_capture()
102 if (insn.RType.rs != RA) in stack_capture()
HDdb_interface.c258 switch ((int)inst.RType.func) { in db_inst_type()
304 switch (inst.RType.rs) { in db_inst_type()
HDdb_trace.c254 switch (i.RType.func) { in stacktrace_subr()
280 switch (i.RType.rs) { in stacktrace_subr()
/trueos/contrib/llvm/lib/Object/
HDMachOObjectFile.cpp887 uint64_t RType; in getRelocationTypeName() local
888 getRelocationType(Rel, RType); in getRelocationTypeName()
902 if (RType > 6) in getRelocationTypeName()
905 res = Table[RType]; in getRelocationTypeName()
921 if (RType > 9) in getRelocationTypeName()
924 res = Table[RType]; in getRelocationTypeName()
940 if (RType > 9) in getRelocationTypeName()
943 res = Table[RType]; in getRelocationTypeName()
965 res = Table[RType]; in getRelocationTypeName()
1011 unsigned RType = getAnyRelocationType(RENext); in getRelocationValueString() local
[all …]
/trueos/contrib/llvm/lib/Target/X86/MCTargetDesc/
HDX86MachORelocationInfo.cpp82 unsigned RType = Obj->getAnyRelocationType(RENext); in createExprForRelocation() local
83 if (RType != X86_64_RELOC_UNSIGNED) in createExprForRelocation()
/trueos/sys/mips/include/
HDmips_opcode.h74 } RType; member
106 } RType; member
/trueos/sys/cddl/dev/dtrace/mips/
HDdtrace_isa.c377 switch (i.RType.func) { in dtrace_next_frame()
403 switch (i.RType.rs) { in dtrace_next_frame()
/trueos/sys/dev/hwpmc/
HDhwpmc_mips.c537 switch (i.RType.func) { in pmc_next_frame()
563 switch (i.RType.rs) { in pmc_next_frame()
/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaInit.cpp437 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in FillInValueInitializations() local
438 const RecordDecl *RDecl = RType->getDecl(); in FillInValueInitializations()
2289 else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) { in getStructuredSubobjectInit() local
2290 RecordDecl *RDecl = RType->getDecl(); in getStructuredSubobjectInit()
/trueos/contrib/llvm/lib/Transforms/Scalar/
HDLoopStrengthReduce.cpp2408 Type *RType = RVal->getType(); in isCompatibleIVType() local
2409 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy()); in isCompatibleIVType()
/trueos/contrib/llvm/lib/Analysis/
HDScalarEvolution.cpp478 unsigned LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in compare() local
479 if (LType != RType) in compare()
480 return (int)LType - (int)RType; in compare()