HomeSort by relevance Sort by last modified time
    Searched defs:SP (Results 51 - 75 of 342) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 174 // Look for inline asm that clobbers the SP register.
178 unsigned SP = TLI->getStackPointerRegisterToSaveRestore();
190 if (PhysReg.first == SP)
  /external/llvm/lib/Target/Mips/
MipsSEInstrInfo.cpp 437 /// Adjust SP by Amount bytes.
438 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
449 // addi sp, sp, amount
450 BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
453 // then add or subtract it from sp.
460 BuildMI(MBB, I, DL, get(Opc), SP).addReg(SP).addReg(Reg, RegState::Kill);
711 unsigned SP = Subtarget.isGP64bit() ? Mips::SP_64 : Mips::SP
    [all...]
MipsSEFrameLowering.cpp 388 unsigned SP = ABI.GetStackPtr();
409 TII.adjustStackPtr(SP, -StackSize, MBB, MBBI);
503 // Insert instruction "move $fp, $sp" at this location.
504 BuildMI(MBB, MBBI, dl, TII.get(MOVE), FP).addReg(SP).addReg(ZERO)
515 // andi $sp, $sp, $Reg
522 BuildMI(MBB, MBBI, dl, TII.get(AND), SP).addReg(SP).addReg(VR);
525 // move $s7, $sp
528 .addReg(SP)
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 455 DISubprogram *SP = NewF->getSubprogram();
456 EXPECT_TRUE(SP != nullptr);
457 EXPECT_EQ(SP->getName(), "f");
458 EXPECT_EQ(SP->getFile()->getFilename(), "filename.c");
459 EXPECT_EQ(SP->getLine(), (unsigned)4);
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 58 protected static final String SP = Separators.SP;
GenericObject.java 54 protected static final String SP = Separators.SP;
LexerCore.java 53 public static final int SP = (int) ' ';
  /toolchain/binutils/binutils-2.27/opcodes/
rx-decode.c 120 #define SP(t,r) rx_disp (1, t, r, (t!=3) ? RX_UByte : RX_Long, ld); P(t, 1);
767 /** 0000 0110 mx10 00sp 0000 0000 rsrc rdst sbb %1%S1, %0 */
771 int sp AU = op[1] & 0x03;
779 "/** 0000 0110 mx10 00sp 0000 0000 rsrc rdst sbb %1%S1, %0 */",
782 printf (" sp = 0x%x,", sp);
788 ID(sbb); SPm(sp, rsrc, mx); DR(rdst); F_OSZC;
    [all...]
m10300-opc.c 143 #define SP (IMM32_HIGH24_LOWSHIFT16+1)
147 #define PSW (SP+1)
456 { "mov", 0x3c, 0xfc, 0, FMT_S0, 0, {SP, AN0}},
457 { "mov", 0xf2f0, 0xfff3, 0, FMT_D0, 0, {AM1, SP}},
463 { "mov", 0x5800, 0xfcff, 0, FMT_S1, 0, {MEM(SP), DN0}},
466 { "mov", 0x5c00, 0xfcff, 0, FMT_S1, 0, {MEM(SP), AN0}},
469 { "mov", 0x4200, 0xf3ff, 0, FMT_S1, 0, {DM1, MEM(SP)}},
472 { "mov", 0x4300, 0xf3ff, 0, FMT_S1, 0, {AM1, MEM(SP)}},
474 { "mov", 0x5c00, 0xfc00, 0, FMT_S1, 0, {MEM2(IMM8, SP), AN0}},
477 { "mov", 0x5800, 0xfc00, 0, FMT_S1, 0, {MEM2(IMM8, SP), DN0}}
    [all...]
  /art/runtime/arch/mips/
registers_mips.h 60 SP = 29, // Stack pointer.
  /art/runtime/arch/mips64/
registers_mips64.h 60 SP = 29, // Stack pointer.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Thunk16/
Thunk16Lib.h 127 UINT16 SP;
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 200 #define SP(x) (((x)&3) << 1)
203 vfp->svf(PRE(r, c), y_stride, SP(c), SP(r), z, b->src_stride, &sse)
361 #undef SP
    [all...]
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 286 // here. The sub/add sp instruction pairs are still inserted, but we don't
287 // need to track the SP adjustment for frame index elimination.
571 DEBUG(dbgs() << "alloc FI(" << FrameIdx << ") at SP[" << -Offset << "]\n");
574 DEBUG(dbgs() << "alloc FI(" << FrameIdx << ") at SP[" << Offset << "]\n");
669 DEBUG(dbgs() << "alloc FI(" << FrameIdx << ") scavenged at SP[" << ObjStart
673 DEBUG(dbgs() << "alloc FI(" << FrameIdx << ") scavenged at SP[" << FreeStart
703 StackProtector *SP = &getAnalysis<StackProtector>();
755 DEBUG(dbgs() << "alloc FI(" << i << ") at SP[" << -Offset << "]\n");
765 DEBUG(dbgs() << "alloc FI(" << i << ") at SP[" << Offset << "]\n");
808 DEBUG(dbgs() << "alloc FI(" << Entry.first << ") at SP[" <<
    [all...]
SafeStack.cpp 679 // Compute the new SP value (after AI).
688 Value *SP = IRB.CreatePtrToInt(IRB.CreateLoad(UnsafeStackPtr), IntPtrTy);
689 SP = IRB.CreateSub(SP, Size);
691 // Align the SP value to satisfy the AllocaInst, type and stack alignments.
698 IRB.CreateAnd(SP, ConstantInt::get(IntPtrTy, ~uint64_t(Align - 1))),
    [all...]
StackColoring.cpp 282 StackProtector *SP;
818 SP->adjustForColoring(From, To);
    [all...]
  /external/llvm/lib/IR/
DIBuilder.cpp 65 auto resolveVariables = [&](DISubprogram *SP) {
66 MDTuple *Temp = SP->getVariables().get();
72 auto PV = PreservedVariables.find(SP);
79 for (auto *SP : SPs)
80 resolveVariables(SP);
82 if (auto *SP = dyn_cast<DISubprogram>(N))
83 resolveVariables(SP);
670 auto *SP = getSubprogram(
677 AllSubprograms.push_back(SP);
678 trackIfUnresolved(SP);
    [all...]
  /external/llvm/lib/Target/X86/
X86WinEHState.cpp 290 Value *SP = Builder.CreateCall(
292 Builder.CreateStore(SP, Builder.CreateStructGEP(RegNodeTy, RegNode, 0));
320 Value *SP = Builder.CreateCall(
322 Builder.CreateStore(SP, Builder.CreateStructGEP(RegNodeTy, RegNode, 0));
  /external/valgrind/none/tests/ppc32/
test_dfp5.c 144 static dfp_val_t _test_ddedpd(unsigned int SP, dfp_val_t *valB)
149 switch (SP) {
163 fprintf(stderr, "Invalid value %d for SP\n", SP);
171 static dfp_val_t _test_ddedpdq(unsigned int SP, dfp_val_t *valB)
176 switch (SP) {
190 fprintf(stderr, "Invalid value %d for SP\n", SP);
420 unsigned int SP;
429 for (SP = 0; SP < 4; SP++)
    [all...]
  /external/valgrind/none/tests/ppc64/
test_dfp5.c 144 static dfp_val_t _test_ddedpd(unsigned int SP, dfp_val_t *valB)
149 switch (SP) {
163 fprintf(stderr, "Invalid value %d for SP\n", SP);
171 static dfp_val_t _test_ddedpdq(unsigned int SP, dfp_val_t *valB)
176 switch (SP) {
190 fprintf(stderr, "Invalid value %d for SP\n", SP);
420 unsigned int SP;
429 for (SP = 0; SP < 4; SP++)
    [all...]
  /art/compiler/optimizing/
code_generator_mips64.cc     [all...]
  /art/runtime/arch/arm64/
registers_arm64.h 58 SP = 31, // SP and XZR are encoded in instructions using the register
  /external/llvm/lib/Transforms/IPO/
SampleProfile.cpp 570 DISubprogram *SP = DIL->getScope()->getSubprogram();
571 if (!SP)
579 getOffset(DIL->getLine(), SP->getLine()), DIL->getDiscriminator()));
599 DISubprogram *SP = DIL->getScope()->getSubprogram();
600 if (!SP)
602 S.push_back(LineLocation(getOffset(DIL->getLine(), SP->getLine()),
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 161 static StringRef getFunctionName(const DISubprogram *SP) {
162 if (!SP->getLinkageName().empty())
163 return SP->getLinkageName();
164 return SP->getName();
318 GCOVFunction(const DISubprogram *SP, Function *F, raw_ostream *os,
320 : SP(SP), Ident(Ident), UseCfgChecksum(UseCfgChecksum), CfgChecksum(0),
324 DEBUG(dbgs() << "Function: " << getFunctionName(SP) << "\n");
338 FNLOS << getFunctionName(SP) << SP->getLine()
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 177 public static final int SP = LexerCore.SP;

Completed in 926 milliseconds

1 23 4 5 6 7 8 91011>>