Searched refs:rhs_type (Results 1 – 9 of 9) sorted by relevance
/external/v8/src/compiler/ |
D | typed-optimization.cc | 242 Type const rhs_type = NodeProperties::GetType(rhs); in ReduceNumberFloor() local 243 if (lhs_type.Is(Type::Unsigned32()) && rhs_type.Is(Type::Unsigned32())) { in ReduceNumberFloor() 309 Type const rhs_type = NodeProperties::GetType(rhs); in ReduceReferenceEqual() local 310 if (!lhs_type.Maybe(rhs_type)) { in ReduceReferenceEqual() 421 Type rhs_type = NodeProperties::GetType(rhs); in ReduceStringComparison() local 448 node, lhs, rhs_type, false); in ReduceStringComparison() 462 Type const rhs_type = NodeProperties::GetType(rhs); in ReduceSameValue() local 466 } else if (lhs_type.Is(Type::Unique()) && rhs_type.Is(Type::Unique())) { in ReduceSameValue() 470 } else if (lhs_type.Is(Type::String()) && rhs_type.Is(Type::String())) { in ReduceSameValue() 479 } else if (rhs_type.Is(Type::MinusZero())) { in ReduceSameValue() [all …]
|
D | simplified-lowering.cc | 1611 Type const rhs_type = TypeOf(node->InputAt(1)); in VisitNode() local 1614 rhs_type.Is(Type::Unsigned32())) || in VisitNode() 1616 rhs_type.Is(Type::Unsigned32OrMinusZeroOrNaN()) && in VisitNode() 1624 if ((lhs_type.Is(Type::Signed32()) && rhs_type.Is(Type::Signed32())) || in VisitNode() 1626 rhs_type.Is(Type::Signed32OrMinusZeroOrNaN()) && in VisitNode() 1996 Type rhs_type = GetUpperBound(node->InputAt(1)); in VisitNode() local 2000 lowering->DoShift(node, lowering->machine()->Word32Shl(), rhs_type); in VisitNode() 2006 Type rhs_type = GetUpperBound(node->InputAt(1)); in VisitNode() local 2011 lowering->DoShift(node, lowering->machine()->Word32Shl(), rhs_type); in VisitNode() 2016 Type rhs_type = GetUpperBound(node->InputAt(1)); in VisitNode() local [all …]
|
D | simplified-lowering.h | 40 void DoShift(Node* node, Operator const* op, Type rhs_type);
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | dot_decomposer.cc | 77 PrimitiveType rhs_type = rhs_shape.element_type(); in DecomposeBatchDot() local 81 ShapeUtil::MakeShape(rhs_type, {batch_size, rhs_rows, rhs_cols}); in DecomposeBatchDot() 83 ShapeUtil::MakeShape(rhs_type, {1, rhs_rows, rhs_cols}); in DecomposeBatchDot() 85 ShapeUtil::MakeShape(rhs_type, {rhs_rows, rhs_cols}); in DecomposeBatchDot() 129 ShapeUtil::MakeShape(rhs_type, {rhs_cols, rhs_rows}); in DecomposeBatchDot()
|
/external/v8/src/builtins/ |
D | builtins-string-gen.h | 30 Node* rhs_instance_type, MachineType rhs_type,
|
D | builtins-string-gen.cc | 247 Node* rhs_instance_type, MachineType rhs_type, TNode<IntPtrT> length, in StringEqual_Loop() argument 274 Load(rhs_type, rhs_data, in StringEqual_Loop() 276 ElementSizeLog2Of(rhs_type.representation()))); in StringEqual_Loop()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | tiled_dot_emitter.cc | 971 llvm::Type* rhs_type = rhs->getType(); in GetGemvBuffersWithCanonicalType() local 978 b->CreateBitCast(rhs, GetPointerToElementType(rhs_type)); in GetGemvBuffersWithCanonicalType()
|
/external/mesa3d/src/compiler/glsl/ |
D | ast_function.cpp | 1412 const glsl_type *rhs_type = in emit_inline_vector_constructor() local 1416 ir_rvalue *rhs = new(ctx) ir_constant(rhs_type, &data); in emit_inline_vector_constructor()
|
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 4195 TypeHint rhs_type = VisitForAccumulatorValue(expr->right()); in VisitArithmeticExpression() local 4197 (lhs_type == TypeHint::kString || rhs_type == TypeHint::kString)) { in VisitArithmeticExpression()
|