HomeSort by relevance Sort by last modified time
    Searched defs:FP (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/u-boot/examples/standalone/
ppc_longjmp.S 17 #define FP(x...) x
18 #define FP(x...) x
27 FP( lfd 14,((JB_FPRS+0*2)*4)(r3))
29 FP( lfd 15,((JB_FPRS+1*2)*4)(r3))
31 FP( lfd 16,((JB_FPRS+2*2)*4)(r3))
33 FP( lfd 17,((JB_FPRS+3*2)*4)(r3))
35 FP( lfd 18,((JB_FPRS+4*2)*4)(r3))
37 FP( lfd 19,((JB_FPRS+5*2)*4)(r3))
39 FP( lfd 20,((JB_FPRS+6*2)*4)(r3))
42 FP( lfd 21,((JB_FPRS+7*2)*4)(r3)
    [all...]
ppc_setjmp.S 17 #define FP(x...) x
30 FP( stfd 14,((JB_FPRS+0*2)*4)(3))
33 FP( stfd 15,((JB_FPRS+1*2)*4)(3))
36 FP( stfd 16,((JB_FPRS+2*2)*4)(3))
39 FP( stfd 17,((JB_FPRS+3*2)*4)(3))
41 FP( stfd 18,((JB_FPRS+4*2)*4)(3))
43 FP( stfd 19,((JB_FPRS+5*2)*4)(3))
45 FP( stfd 20,((JB_FPRS+6*2)*4)(3))
47 FP( stfd 21,((JB_FPRS+7*2)*4)(3))
49 FP( stfd 22,((JB_FPRS+8*2)*4)(3)
    [all...]
  /external/clang/test/Sema/
block-call.c 3 int (*FP)();
7 int (*FPL) (int) = FP; // C doesn't consider this an error.
  /external/clang/test/SemaCXX/
block-call.cpp 3 int (*FP)();
7 int (*FPL) (int) = FP; // expected-error {{cannot initialize a variable of type 'int (*)(int)' with an lvalue of type 'int (*)()'}}
  /external/boringssl/src/crypto/fipsmodule/des/
internal.h 148 /* IP and FP
179 Thanks for hints from Richard Outerbridge - he told me IP&FP
202 #define FP(l, r) \
des.c 440 FP(r, l);
516 FP(r, l);
535 FP(r, l);
780 #undef FP
  /external/compiler-rt/test/profile/Inputs/
instrprof-alloc.c 7 void (*FP)();
28 FP = foo;
30 FP = foo2;
38 FP();
  /external/compiler-rt/test/profile/Linux/
instrprof-merge-vp.c 29 typedef void (*FP)(void);
30 FP Fps[3] = {callee1, callee2, callee3};
  /external/libffi/src/sparc/
v9.S 135 #define FP %fp+STACK_BIAS
151 stx %i0, [FP+128+0]
152 stx %i1, [FP+128+8]
153 stx %i2, [FP+128+16]
154 stx %i3, [FP+128+24]
155 stx %i4, [FP+128+32]
156 stx %i5, [FP+128+40]
159 std %f0, [FP-128]
160 std %f2, [FP-120
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/sparc/
v9.S 135 #define FP %fp+STACK_BIAS
151 stx %i0, [FP+128+0]
152 stx %i1, [FP+128+8]
153 stx %i2, [FP+128+16]
154 stx %i3, [FP+128+24]
155 stx %i4, [FP+128+32]
156 stx %i5, [FP+128+40]
159 std %f0, [FP-128]
160 std %f2, [FP-120
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaFrameLowering.cpp 53 bool FP = hasFP(MF);
67 if (FP)
68 NumBytes += 8; //reserve space for the old FP
93 // Now if we need to, save the old FP and set the new
94 if (FP) {
115 bool FP = hasFP(MF);
120 //now if we need to, restore the old FP
121 if (FP) {
122 //copy the FP into the SP (discards allocas)
125 //restore the FP
    [all...]
AlphaRegisterInfo.cpp 124 //<- FP
139 bool FP = TFI->hasFP(MF);
148 // Add the base register of R30 (SP) or R15 (FP).
149 MI.getOperand(i + 1).ChangeToRegister(FP ? Alpha::R15 : Alpha::R30, false);
165 //original inst off the SP/FP
172 .addImm(getUpper16(Offset)).addReg(FP ? Alpha::R15 : Alpha::R30);
  /art/disassembler/
disassembler_arm64.cc 40 FP = 29,
  /external/clang/test/CodeGen/
pointer-arithmetic.c 10 typedef void (*FP)(void);
18 FP f5(FP a, int b) { return a + b; }
19 FP f5_1(FP a, int b) { return (a += b); }
20 FP f6(int a, FP b) { return a + b; }
21 FP f6_1(int a, FP b) { return (a += b); }
22 FP f7(FP a, int b) { return a - b;
    [all...]
struct-init.c 37 void (*FP)(struct fp_struct_bar);
  /external/libcxx/src/
chrono.cpp 158 typedef steady_clock::rep (*FP)();
161 FP
174 static FP fp = init_steady_clock(); variable
175 return time_point(duration(fp()));
  /external/llvm/lib/Target/Mips/
MipsRegisterInfo.cpp 197 // Reserve FP if this function should have a dedicated frame pointer register.
202 Reserved.set(Mips::FP);
304 return TFI->hasFP(MF) ? (IsN64 ? Mips::FP_64 : Mips::FP) :
320 unsigned FP = Subtarget.isGP32bit() ? Mips::FP : Mips::FP_64;
329 if (!MF.getRegInfo().canReserveReg(FP))
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreRegisterInfo.cpp 217 bool FP = TFI->hasFP(MF);
227 if (FP) {
XCoreFrameLowering.cpp 102 bool FP = hasFP(MF);
170 if (FP) {
183 // Set the FP from the SP.
188 // Show FP is now valid.
222 bool FP = hasFP(MF);
223 if (FP) {
247 if (FP) {
369 // A callee save register is used to hold the FP.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsRegisterInfo.cpp 195 // Reserve FP if this function should have a dedicated frame pointer register.
200 Reserved.set(Mips::FP);
306 return TFI->hasFP(MF) ? (IsN64 ? Mips::FP_64 : Mips::FP) :
322 unsigned FP = Subtarget.isGP32bit() ? Mips::FP : Mips::FP_64;
331 if (!MF.getRegInfo().canReserveReg(FP))
  /art/runtime/arch/arm/
registers_arm.h 45 FP = 11,
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 352 /// \brief This is a standard arm64 prologue where FP/LR are immediately
353 /// pushed on the stack, then SP is copied to FP. If there are any
355 /// in a contiguous ranger right below the saved FP/LR pair. Any subset of the
414 AArch64::FP &&
431 assert(LRReg == AArch64::LR && FPReg == AArch64::FP &&
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 271 Constant *FP = CS->getOperand(1);
272 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
274 FP = CE->getOperand(0);
275 if (Function *F = dyn_cast<Function>(FP)) {
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ExtractFunction.cpp 216 Constant *FP = CS->getOperand(1);
217 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
219 FP = CE->getOperand(0);
220 if (Function *F = dyn_cast<Function>(FP)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 257 // The FP register is also not really a register, but is the representation
259 markSuperRegs(Reserved, PPC::FP);
358 unsigned FP = TFI->hasFP(MF) ? 1 : 0;
359 return 32 - FP - DefaultSafety;
    [all...]

Completed in 707 milliseconds

1 2 3