/external/valgrind/main/none/tests/s390x/ |
fpconv.c | 56 long double f128; \ 57 printf(#insn " %Lf\n", I2F(insn, 0, f128, round)); \ 58 printf(#insn " %Lf\n", I2F(insn, 1, f128, round)); \ 59 printf(#insn " %Lf\n", I2F(insn, 0xffffffffUL, f128, round)); \ 60 printf(#insn " %Lf\n", I2F(insn, 0x80000000UL, f128, round)); \ 61 printf(#insn " %Lf\n", I2F(insn, 0x7fffffffUL, f128, round)); \ 62 printf(#insn " %Lf\n", I2F(insn, 0x100000000UL, f128, round)); \ 63 printf(#insn " %Lf\n", I2F(insn, 0xffffffffffffffffUL, f128, round)); \ 64 printf(#insn " %Lf\n", I2F(insn, 0x8000000000000000UL, f128, round)); \ 65 printf(#insn " %Lf\n", I2F(insn, 0x7fffffffffffffffUL, f128, round)); [all...] |
/external/llvm/lib/CodeGen/ |
TargetLoweringBase.cpp | 375 if (RetVT == MVT::f128) 378 if (RetVT == MVT::f128) 393 if (OpVT == MVT::f128) 400 if (OpVT == MVT::f128) 441 } else if (OpVT == MVT::f128) { 491 } else if (OpVT == MVT::f128) { 519 if (RetVT == MVT::f128) 530 if (RetVT == MVT::f128) 541 if (RetVT == MVT::f128) 559 if (RetVT == MVT::f128) [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64ISelLowering.cpp | 56 addRegisterClass(MVT::f128, &AArch64::FPR128RegClass); 173 setOperationAction(ISD::ConstantFP, MVT::f128, Legal); 212 // Virtually no operation on f128 is legal, but LLVM can't expand them when 214 setOperationAction(ISD::FABS, MVT::f128, Expand); 215 setOperationAction(ISD::FADD, MVT::f128, Custom); 216 setOperationAction(ISD::FCOPYSIGN, MVT::f128, Expand); 217 setOperationAction(ISD::FCOS, MVT::f128, Expand); 218 setOperationAction(ISD::FDIV, MVT::f128, Custom); 219 setOperationAction(ISD::FMA, MVT::f128, Expand); 220 setOperationAction(ISD::FMUL, MVT::f128, Custom) [all...] |
AArch64InstrInfo.cpp | 395 RC->hasType(MVT::f128)) 441 || RC->hasType(MVT::f128))
|
/external/llvm/lib/IR/ |
ValueTypes.cpp | 125 case MVT::f128: return "f128"; 191 case MVT::f128: return Type::getFP128Ty(Context); 251 case Type::FP128TyID: return MVT(MVT::f128);
|
/external/llvm/include/llvm/CodeGen/ |
ValueTypes.h | 57 f128 = 11, // This is a 128 bit floating point value enumerator in enum:llvm::MVT::SimpleValueType 386 case f128: 457 return MVT::f128; 575 /// with 128 bits - this returns f128 rather than ppcf128.
|
SelectionDAG.h | [all...] |
/external/valgrind/main/memcheck/tests/ |
deep-backtrace.c | 128 int f128(int *p) { return f127(p); } function 129 int f129(int *p) { return f128(p); }
|
deep-backtrace.stderr.exp | 129 by 0x........: f128 (deep-backtrace.c:128) 633 by 0x........: f128 (deep-backtrace.c:128) [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelLowering.cpp | 58 addRegisterClass(MVT::f128, &SystemZ::FP128BitRegClass); 219 // We have fused multiply-addition for f32 and f64 but not f128. 222 setOperationAction(ISD::FMA, MVT::f128, Expand); 224 // Needed so that we don't try to implement f128 constant loads using 231 setTruncStoreAction(MVT::f128, MVT::f32, Expand); 232 setTruncStoreAction(MVT::f128, MVT::f64, Expand); 269 case MVT::f128: 444 else if (VT == MVT::f128) 468 if (VT == MVT::f128) [all...] |
/external/llvm/utils/TableGen/ |
CodeGenTarget.cpp | 67 case MVT::f128: return "MVT::f128";
|
/art/test/083-compiler-regressions/src/ |
Main.java | 4508 float f128 = 128; local [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeDAG.cpp | [all...] |
LegalizeFloatTypes.cpp | 38 VT == MVT::f128 ? Call_F128 : [all...] |
TargetLowering.cpp | 106 assert((VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f128) [all...] |
SelectionDAG.cpp | [all...] |
DAGCombiner.cpp | [all...] |