Searched refs:SP (Results 1 - 25 of 269) sorted by relevance

1234567891011

/freebsd-current/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp61 SP::G0, SP::G1, SP::G2, SP::G3,
62 SP::G4, SP::G5, SP::G6, SP::G7,
63 SP::O0, SP
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dstring_pool_test.cpp17 StringPool SP; local
18 auto P1 = SP.intern("hello");
22 auto P2 = SP.intern(S);
24 auto P3 = SP.intern("goodbye");
36 StringPool SP;
37 auto Foo = SP.intern("foo");
42 StringPool SP;
44 auto P1 = SP.intern("s1");
45 SP.clearDeadEntries();
46 EXPECT_FALSE(SP
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcInstPrinter.cpp26 // namespace. But SPARC backend uses "SP" as its namespace.
29 using namespace SP;
64 case SP::JMPLrr:
65 case SP::JMPLri: {
72 case SP::G0: // jmp $addr | ret | retl
77 case SP::I7: O << "\tret"; return true;
78 case SP::O7: O << "\tretl"; return true;
83 case SP::O7: // call $addr
88 case SP::V9FCMPS: case SP
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp52 BuildMI(MBB, MBBI, dl, TII.get(ADDri), SP::O6)
53 .addReg(SP::O6).addImm(NumBytes);
64 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1)
66 BuildMI(MBB, MBBI, dl, TII.get(SP::ORri), SP::G1)
67 .addReg(SP::G1).addImm(LO10(NumBytes));
68 BuildMI(MBB, MBBI, dl, TII.get(ADDrr), SP::O6)
69 .addReg(SP::O6).addReg(SP
[all...]
H A DSparcRegisterInfo.cpp34 SparcRegisterInfo::SparcRegisterInfo() : SparcGenRegisterInfo(SP::O7) {}
56 Reserved.set(SP::G1);
60 Reserved.set(SP::G2);
61 Reserved.set(SP::G3);
62 Reserved.set(SP::G4);
66 Reserved.set(SP::G5);
68 Reserved.set(SP::O6);
69 Reserved.set(SP::I6);
70 Reserved.set(SP::I7);
71 Reserved.set(SP
[all...]
H A DDelaySlotFiller.cpp116 (MI->getOpcode() == SP::RESTORErr
117 || MI->getOpcode() == SP::RESTOREri)) {
125 (MI->getOpcode() == SP::FCMPS || MI->getOpcode() == SP::FCMPD
126 || MI->getOpcode() == SP::FCMPQ)) {
127 BuildMI(MBB, I, MI->getDebugLoc(), TII->get(SP::NOP));
145 BuildMI(MBB, I, MI->getDebugLoc(), TII->get(SP::NOP));
155 TII->get(SP::UNIMP)).addImm(structSize);
179 if (Opc == SP::RET || Opc == SP
[all...]
H A DSparcInstrInfo.cpp43 : SparcGenInstrInfo(SP::ADJCALLSTACKDOWN, SP::ADJCALLSTACKUP), RI(),
53 if (MI.getOpcode() == SP::LDri || MI.getOpcode() == SP::LDXri ||
54 MI.getOpcode() == SP::LDFri || MI.getOpcode() == SP::LDDFri ||
55 MI.getOpcode() == SP::LDQFri) {
72 if (MI.getOpcode() == SP::STri || MI.getOpcode() == SP::STXri ||
73 MI.getOpcode() == SP
[all...]
H A DLeonPasses.cpp52 if (Opcode >= SP::LDDArr && Opcode <= SP::LDrr) {
54 BuildMI(MBB, NMBBI, DL, TII.get(SP::NOP));
87 if (Opcode == SP::CALL && MI.getNumOperands() > 0) {
146 if (Opcode == SP::FSQRTD || Opcode == SP::FDIVD) {
148 BuildMI(MBB, MBBI, DL, TII.get(SP::NOP));
152 BuildMI(MBB, NMBBI, DL, TII.get(SP::NOP));
H A DSparcAsmPrinter.cpp110 CallInst.setOpcode(SP::CALL);
118 RDPCInst.setOpcode(SP::RDASR);
120 RDPCInst.addOperand(MCOperand::createReg(SP::ASR5));
129 SETHIInst.setOpcode(SP::SETHIi);
150 EmitBinary(OutStreamer, SP::ORri, RS1, Imm, RD, STI);
156 EmitBinary(OutStreamer, SP::ADDrr, RS1, RS2, RD, STI);
162 EmitBinary(OutStreamer, SP::SLLri, RS1, Imm, RD, STI);
186 assert(MO.getReg() != SP::O7 &&
222 MCOperand RegO7 = MCOperand::createReg(SP::O7);
236 MCOperand RegO7 = MCOperand::createReg(SP
[all...]
H A DSparcISelDAGToDAG.cpp147 R2 = CurDAG->getRegister(SP::G0, TLI->getPointerTy(CurDAG->getDataLayout()));
221 if ((!IsTiedToChangedOp && (!HasRC || RC != SP::IntRegsRegClassID))
237 Register GPVR = MRI.createVirtualRegister(&SP::IntPairRegClass);
246 SDValue Sub0 = CurDAG->getTargetExtractSubreg(SP::sub_even, dl, MVT::i32,
248 SDValue Sub1 = CurDAG->getTargetExtractSubreg(SP::sub_odd, dl, MVT::i32,
272 CurDAG->getTargetConstant(SP::IntPairRegClassID, dl,
275 CurDAG->getTargetConstant(SP::sub_even, dl, MVT::i32),
277 CurDAG->getTargetConstant(SP::sub_odd, dl, MVT::i32),
283 Register GPVR = MRI.createVirtualRegister(&SP::IntPairRegClass);
299 Flag.setRegClass(SP
[all...]
/freebsd-current/sys/cddl/dev/dtrace/powerpc/
H A Dregset.h50 #define REG_SP SP
/freebsd-current/usr.bin/procstat/tests/
H A Dprocstat_test.sh30 SP='[[:space:]]'
56 line_format="$SP*%s$SP+%s$SP+%s$SP+%s$SP*"
80 line_format="$SP*%s$SP+%s$SP+%s$SP*"
[all...]
/freebsd-current/contrib/ncurses/ncurses/base/
H A Dlib_colorset.c56 && (SP != 0)
58 && (color_pair < SP->_pair_limit)) {
/freebsd-current/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.y95 SP CRLF COMMA
140 : USER SP username CRLF check_secure
146 | PASS SP password CRLF check_secure
154 | PORT SP host_port CRLF check_secure
175 | EPRT SP STRING CRLF check_secure
191 | EPSV SP STRING CRLF check_login
197 | TYPE SP type_code CRLF check_secure
234 | STRU SP struct_code CRLF check_secure
248 | MODE SP mode_code CRLF check_secure
262 | ALLO SP NUMBE
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DJMCInstrumenter.cpp72 std::string getFlagName(DISubprogram &SP, bool UseX86FastCall) { argument
79 has_root_name(SP.getDirectory(), sys::path::Style::windows_backslash) ||
80 SP.getDirectory().contains("\\") ||
81 SP.getFilename().contains("\\")
89 SmallString<256> FilePath(SP.getDirectory());
90 sys::path::append(FilePath, PathStyle, SP.getFilename());
111 void attachDebugInfo(GlobalVariable &GV, DISubprogram &SP) { argument
113 DICompileUnit *CU = SP.getUnit();
122 CU, GV.getName(), /*LinkageName=*/StringRef(), SP.getFile(),
168 auto *SP local
[all...]
/freebsd-current/contrib/ntp/include/
H A Dascii.h73 #define SP 32 macro
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16InstrInfo.h73 // Adjust SP by FrameSize bytes. Save RA, S0, S1
74 void makeFrame(unsigned SP, int64_t FrameSize, MachineBasicBlock &MBB,
77 // Adjust SP by FrameSize bytes. Restore RA, S0, S1
78 void restoreFrame(unsigned SP, int64_t FrameSize, MachineBasicBlock &MBB,
81 /// Adjust SP by Amount bytes.
82 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
118 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
119 void adjustStackPtrBig(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
123 // Adjust SP by Amount bytes where bytes can be up to 32bit number.
124 void adjustStackPtrBigUnrestricted(unsigned SP, int64_
[all...]
H A DMipsFrameLowering.cpp67 // sw REGX, 4(SP)
72 // lw REGX, 16+StackSize(SP)
140 unsigned SP = STI.getABI().IsN64() ? Mips::SP_64 : Mips::SP; local
147 STI.getInstrInfo()->adjustStackPtr(SP, Amount, MBB, I);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEntryExitInstrumenter.cpp105 if (auto SP = F.getSubprogram())
106 DL = DILocation::get(SP->getContext(), SP->getScopeLine(), 0, SP);
126 else if (auto SP = F.getSubprogram())
127 DL = DILocation::get(SP->getContext(), 0, 0, SP);
/freebsd-current/libexec/ftpd/
H A Dftpcmd.y92 SP CRLF COMMA
133 : USER SP username CRLF
138 | PASS SP password CRLF
147 | PORT check_login SP host_port CRLF
170 | LPRT check_login SP host_long_port CRLF
192 | EPRT check_login SP STRING CRLF
307 | EPSV check_login_epsv SP NUMBER CRLF
327 | EPSV check_login_epsv SP ALL CRLF
339 | TYPE check_login SP type_code CRLF
376 | STRU check_login SP struct_cod
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DInstrumentation.h189 if (DISubprogram *SP = F.getSubprogram())
190 IRB.SetCurrentDebugLocation(DILocation::get(SP->getContext(), 0, 0, SP));
/freebsd-current/sys/arm/arm/
H A Ddb_trace.c85 state->registers[SP], state->registers[FP]);
89 ~((1 << SP) | (1 << FP) | (1 << LR) | (1 << PC));
145 state.registers[SP] = ctx->pcb_regs.sf_sp;
165 state.registers[SP] = sp;
H A Dstack_machdep.c59 state.registers[SP] = sp;
79 state.registers[SP] = td->td_pcb->pcb_regs.sf_sp;
/freebsd-current/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430FrameLowering.cpp130 .addReg(MSP430::SP)
165 if (NumBytes) { // adjust stack pointer: SP -= numbytes
166 // If there is an SUB16ri of SP immediately before this instruction, merge
169 // If there is an ADD16ri or SUB16ri of SP immediately after this
175 BuildMI(MBB, MBBI, DL, TII.get(MSP430::SUB16ri), MSP430::SP)
176 .addReg(MSP430::SP)
226 unsigned DwarfStackPtr = TRI->getDwarfRegNum(MSP430::SP, true);
257 // If there is an ADD16ri or SUB16ri of SP immediately before this
263 BuildMI(MBB, MBBI, DL, TII.get(MSP430::MOV16rr), MSP430::SP)
268 BuildMI(MBB, MBBI, DL, TII.get(MSP430::SUB16ri), MSP430::SP)
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiFrameLowering.cpp112 .addReg(Lanai::SP)
120 .addReg(Lanai::SP)
127 BuildMI(MBB, MBBI, DL, LII.get(Lanai::SUB_I_LO), Lanai::SP)
128 .addReg(Lanai::SP)
183 BuildMI(MBB, MBBI, DL, LII.get(Lanai::ADD_I_LO), Lanai::SP)

Completed in 196 milliseconds

1234567891011