Home
last modified time | relevance | path

Searched refs:HVecBinaryOperation (Results 1 – 7 of 7) sorted by relevance

/art/compiler/optimizing/
Dnodes_vector.h284 class HVecBinaryOperation : public HVecOperation {
286 HVecBinaryOperation(InstructionKind kind, in HVecBinaryOperation() function
568 class HVecAdd final : public HVecBinaryOperation {
576 : HVecBinaryOperation(kVecAdd, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecAdd()
592 class HVecSaturationAdd final : public HVecBinaryOperation {
600 : HVecBinaryOperation( in HVecSaturationAdd()
618 class HVecHalvingAdd final : public HVecBinaryOperation {
627 : HVecBinaryOperation( in HVecHalvingAdd()
658 class HVecSub final : public HVecBinaryOperation {
666 : HVecBinaryOperation(kVecSub, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecSub()
[all …]
Dcode_generator_vector_arm_vixl.cc251 static void CreateVecBinOpLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecBinOpLocations()
634 static void CreateVecShiftLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecShiftLocations()
Dcode_generator_vector_x86_64.cc396 static void CreateVecBinOpLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecBinOpLocations()
959 static void CreateVecShiftLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecShiftLocations()
Dcode_generator_vector_x86.cc413 static void CreateVecBinOpLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecBinOpLocations()
976 static void CreateVecShiftLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecShiftLocations()
Dcode_generator_vector_arm64_sve.cc383 static void CreateVecBinOpLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecBinOpLocations()
843 static void CreateVecShiftLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecShiftLocations()
Dcode_generator_vector_arm64_neon.cc383 static void CreateVecBinOpLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecBinOpLocations()
843 static void CreateVecShiftLocations(ArenaAllocator* allocator, HVecBinaryOperation* instruction) { in CreateVecShiftLocations()
Dinstruction_simplifier.cc306 HVecBinaryOperation* binop = use->AsVecBinaryOperation(); in TryCombineVecMultiplyAccumulate()