/external/vixl/examples/aarch64/ |
D | add4-double.cc | 47 __ Fadd(d0, d0, d1); in GenerateAdd4Double() local 48 __ Fadd(d2, d2, d3); in GenerateAdd4Double() local 49 __ Fadd(d0, d0, d2); in GenerateAdd4Double() local
|
D | add3-double.cc | 40 __ Fadd(d0, d0, d1); // d0 <- x + y in GenerateAdd3Double() local 41 __ Fadd(d0, d0, d2); // d0 <- d0 + z in GenerateAdd3Double() local
|
D | custom-disassembler.cc | 130 __ Fadd(d30, d16, d17); in GenerateCustomDisassemblerTestCode() local
|
/external/swiftshader/third_party/subzero/crosstest/ |
D | test_arith.def | 44 X(Fadd, +, ) \ 55 // instruction and "(a + b)" for the Fadd instruction. The two
|
/external/vixl/test/aarch64/ |
D | test-assembler-fp-aarch64.cc | 451 __ Fadd(s0, s17, s18); in TEST() local 452 __ Fadd(s1, s18, s19); in TEST() local 453 __ Fadd(s2, s14, s18); in TEST() local 454 __ Fadd(s3, s15, s18); in TEST() local 455 __ Fadd(s4, s16, s18); in TEST() local 456 __ Fadd(s5, s15, s16); in TEST() local 457 __ Fadd(s6, s16, s15); in TEST() local 459 __ Fadd(d7, d30, d31); in TEST() local 460 __ Fadd(d8, d29, d31); in TEST() local 461 __ Fadd(d9, d26, d31); in TEST() local [all …]
|
D | test-simulator-aarch64.cc | 5064 __ Fadd(temp, temp, input_1.D()); in GenerateSum() local 5065 __ Fadd(result, temp, input_3); in GenerateSum() local
|
D | test-disasm-neon-aarch64.cc | 1803 COMPARE_MACRO(Fadd(v12.V8H(), v13.V8H(), v14.V8H()), in TEST() 1805 COMPARE_MACRO(Fadd(v15.V4H(), v16.V4H(), v17.V4H()), in TEST() 1939 COMPARE_MACRO(Fadd(v0.M, v1.M, v2.M), "fadd v0." S ", v1." S ", v2." S); in TEST()
|
D | test-assembler-neon-aarch64.cc | 3690 __ Fadd(v8.V4H(), v1.V4H(), v0.V4H()); in TEST() local 3691 __ Fadd(v9.V8H(), v3.V8H(), v2.V8H()); in TEST() local 3692 __ Fadd(v10.V4H(), v4.V4H(), v3.V4H()); in TEST() local 3694 __ Fadd(v11.V4H(), v6.V4H(), v1.V4H()); in TEST() local 3695 __ Fadd(v12.V4H(), v7.V4H(), v7.V4H()); in TEST() local
|
D | test-assembler-aarch64.cc | 13401 __ Fadd(v0.V4S(), v1.V4S(), v2.V4S()); // Requires {FP, NEON}. in SimulationCPUFeaturesScopeHelper() local
|
/external/swiftshader/third_party/subzero/src/ |
D | IceInst.def | 37 X(Fadd, "fadd", 1) \
|
D | IceConverter.cpp | 297 return convertArithInstruction(Instr, Ice::InstArithmetic::Fadd); in convertInstruction()
|
D | IceTargetLoweringARM32.cpp | 2909 case InstArithmetic::Fadd: in lowerInt64Arithmetic() 3105 case InstArithmetic::Fadd: in lowerArithmetic() 3162 case InstArithmetic::Fadd: { in lowerArithmetic() 3510 case InstArithmetic::Fadd: in lowerArithmetic() 6959 case InstArithmetic::Fadd: in isValidConsumer()
|
D | WasmTranslator.cpp | 412 Control()->appendInst(InstArithmetic::create(Func, InstArithmetic::Fadd, in Binop()
|
D | IceTargetLoweringX86BaseImpl.h | 2110 case InstArithmetic::Fadd: 2246 case InstArithmetic::Fadd: { 2578 case InstArithmetic::Fadd:
|
D | PNaClTranslator.cpp | 1764 Op = Ice::InstArithmetic::Fadd; in convertBinopOpcode()
|
D | IceTargetLoweringMIPS32.cpp | 2734 case InstArithmetic::Fadd: in lowerInt64Arithmetic() 2993 case InstArithmetic::Fadd: { in lowerArithmetic()
|
/external/vixl/benchmarks/aarch64/ |
D | bench-utils.cc | 366 __ Fadd(PickV(size), PickV(size), PickV(size)); in GenerateFPSequence() local
|
/external/v8/src/wasm/baseline/arm64/ |
D | liftoff-assembler-arm64.h | 976 FP32_BINOP(f32_add, Fadd) in I32_BINOP_I() 989 FP64_BINOP(f64_add, Fadd) in I32_BINOP_I() 1610 Fadd(dst.fp().V2D(), lhs.fp().V2D(), rhs.fp().V2D()); in emit_f64x2_add() 1734 Fadd(dst.fp().V4S(), lhs.fp().V4S(), rhs.fp().V4S()); in emit_f32x4_add()
|
/external/v8/src/compiler/backend/arm64/ |
D | code-generator-arm64.cc | 1498 __ Fadd(i.OutputFloat32Register(), i.InputFloat32Register(0), in AssembleArchInstruction() local 1538 __ Fadd(i.OutputDoubleRegister(), i.InputDoubleRegister(0), in AssembleArchInstruction() local 1998 SIMD_BINOP_CASE(kArm64F64x2Add, Fadd, 2D); in AssembleArchInstruction() 2070 SIMD_BINOP_CASE(kArm64F32x4Add, Fadd, 4S); in AssembleArchInstruction()
|
/external/v8/src/codegen/arm64/ |
D | macro-assembler-arm64-inl.h | 521 void TurboAssembler::Fadd(const VRegister& fd, const VRegister& fn, in Fadd() function
|
D | macro-assembler-arm64.h | 1056 inline void Fadd(const VRegister& fd, const VRegister& fn,
|
/external/swiftshader/src/Reactor/ |
D | SubzeroReactor.cpp | 1119 case Ice::InstArithmetic::Fadd: in isCommutative() 1177 return createArithmetic(Ice::InstArithmetic::Fadd, lhs, rhs); in createFAdd()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 2414 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2); in ExpandLegalINT_TO_FP() local 2415 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd, in ExpandLegalINT_TO_FP()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 2448 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2); in ExpandLegalINT_TO_FP() local 2449 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd, in ExpandLegalINT_TO_FP()
|
/external/vixl/src/aarch64/ |
D | macro-assembler-aarch64.h | 1321 void Fadd(const VRegister& vd, const VRegister& vn, const VRegister& vm) { in Fadd() function
|