Lines Matching refs:HVecUnaryOperation
202 class HVecUnaryOperation : public HVecOperation {
204 HVecUnaryOperation(InstructionKind kind, in HVecUnaryOperation() function
322 class HVecReplicateScalar FINAL : public HVecUnaryOperation {
329 : HVecUnaryOperation( in HVecReplicateScalar()
348 class HVecExtractScalar FINAL : public HVecUnaryOperation {
356 : HVecUnaryOperation( in HVecExtractScalar()
381 class HVecReduce FINAL : public HVecUnaryOperation {
395 : HVecUnaryOperation(kVecReduce, allocator, input, packed_type, vector_length, dex_pc), in HVecReduce()
421 class HVecCnv FINAL : public HVecUnaryOperation {
428 : HVecUnaryOperation(kVecCnv, allocator, input, packed_type, vector_length, dex_pc) { in HVecCnv()
446 class HVecNeg FINAL : public HVecUnaryOperation {
453 : HVecUnaryOperation(kVecNeg, allocator, input, packed_type, vector_length, dex_pc) { in HVecNeg()
468 class HVecAbs FINAL : public HVecUnaryOperation {
475 : HVecUnaryOperation(kVecAbs, allocator, input, packed_type, vector_length, dex_pc) { in HVecAbs()
490 class HVecNot FINAL : public HVecUnaryOperation {
497 : HVecUnaryOperation(kVecNot, allocator, input, packed_type, vector_length, dex_pc) { in HVecNot()