/external/llvm/test/Feature/ |
sparcld.ll | 5 @ld = external global fp128 ; <fp128*> [#uses=1] 17 %tmp4 = fpext double %tmp3 to fp128 ; <fp128> [#uses=1] 18 store fp128 %tmp4, fp128* @ld
|
/external/clang/test/CodeGen/ |
mips64-f128-literal.c | 5 // CHECK: ret fp128
|
mips64-padding-arg.c | 22 // CHECK: define void @foo3(i32 %a0, i64, fp128 %a1) 23 // CHECK: tail call void @foo4(i32 1, i32 2, i32 %a0, i64 undef, fp128 %a1) 24 // CHECK: declare void @foo4(i32, i32, i32, i64, fp128) 34 // CHECK: define void @foo5(%struct.S0* noalias sret %agg.result, i64, fp128 %a0) 35 // CHECK: call void @foo6(%struct.S0* sret %agg.result, i32 1, i32 2, i64 undef, fp128 %a0) 36 // CHECK: declare void @foo6(%struct.S0* sret, i32, i32, i64, fp128)
|
/external/llvm/bindings/python/llvm/ |
enumerations.py | 129 ('FP128', 5),
|
/external/llvm/utils/vim/ |
llvm.vim | 18 syn keyword llvmType x86_fp80 fp128 ppc_fp128
|
/external/llvm/unittests/Support/ |
TypeBuilderTest.cpp | 68 EXPECT_EQ(Type::getFP128Ty(getGlobalContext()), (TypeBuilder<types::fp128, true>::get(getGlobalContext()))); 69 EXPECT_EQ(Type::getFP128Ty(getGlobalContext()), (TypeBuilder<types::fp128, false>::get(getGlobalContext())));
|
/external/llvm/utils/ |
llvm.grm | 70 FPType ::= float | double | "ppc_fp128" | fp128 | "x86_fp80"; 194 PrimType ::= INTTYPE | float | double | "ppc_fp128" | fp128 | "x86_fp80"
|
/external/llvm/include/llvm/Support/ |
TypeBuilder.h | 89 class fp128 {}; class in namespace:llvm::types 216 template<bool cross> class TypeBuilder<types::fp128, cross> {
|
/external/llvm/utils/kate/ |
llvm.xml | 97 <item> fp128 </item>
|
/external/llvm/tools/llvm-stress/ |
llvm-stress.cpp | 48 static cl::opt<bool> GenFP128("generate-fp128", 50 static cl::opt<bool> GenPPCFP128("generate-ppc-fp128", 543 // If VSize == DestSize, then the two types must be fp128 and ppc_fp128,
|
/external/llvm/docs/ |
LangRef.html | [all...] |
BitCodeFormat.html | [all...] |
/external/llvm/bindings/ocaml/llvm/ |
llvm.ml | 27 | Fp128 [all...] |
llvm.mli | 60 | Fp128 [all...] |
/external/llvm/include/llvm/ |
Type.h | 150 /// isFP128Ty - Return true if this is 'fp128'.
|
/external/llvm/tools/llvm-bcanalyzer/ |
llvm-bcanalyzer.cpp | 179 case bitc::TYPE_CODE_FP128: return "FP128";
|
/external/llvm/lib/AsmParser/ |
LLLexer.cpp | 583 TYPEKEYWORD("fp128", Type::getFP128Ty(Context));
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
BitcodeReader.cpp | 614 case bitc::TYPE_CODE_FP128: // FP128 841 case bitc::TYPE_CODE_FP128: // FP128 [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
BitcodeReader.cpp | 893 case bitc::TYPE_CODE_FP128: // FP128 [all...] |
/external/llvm/lib/Bitcode/Reader/ |
BitcodeReader.cpp | 590 case bitc::TYPE_CODE_FP128: // FP128 [all...] |
/external/llvm/lib/VMCore/ |
AsmWriter.cpp | 195 case Type::FP128TyID: OS << "fp128"; break; [all...] |