Searched refs:lhs_type (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/compiler/ |
D | typed-optimization.cc | 240 Type const lhs_type = NodeProperties::GetType(lhs); in ReduceNumberFloor() local 243 if (lhs_type.Is(Type::Unsigned32()) && rhs_type.Is(Type::Unsigned32())) { in ReduceNumberFloor() 259 Type::Range(0, lhs_type.Max(), graph()->zone())); in ReduceNumberFloor() 308 Type const lhs_type = NodeProperties::GetType(lhs); in ReduceReferenceEqual() local 310 if (!lhs_type.Maybe(rhs_type)) { in ReduceReferenceEqual() 420 Type lhs_type = NodeProperties::GetType(lhs); in ReduceStringComparison() local 452 lhs_type, true); in ReduceStringComparison() 461 Type const lhs_type = NodeProperties::GetType(lhs); 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() [all …]
|
D | simplified-lowering.cc | 1610 Type const lhs_type = TypeOf(node->InputAt(0)); in VisitNode() local 1613 if ((lhs_type.Is(Type::Unsigned32()) && in VisitNode() 1615 (lhs_type.Is(Type::Unsigned32OrMinusZeroOrNaN()) && in VisitNode() 1624 if ((lhs_type.Is(Type::Signed32()) && rhs_type.Is(Type::Signed32())) || in VisitNode() 1625 (lhs_type.Is(Type::Signed32OrMinusZeroOrNaN()) && in VisitNode() 2141 Type const lhs_type = TypeOf(node->InputAt(0)); in VisitNode() local 2143 if (lhs_type.Is(Type::Unsigned32()) && in VisitNode() 2150 } else if (lhs_type.Is(Type::Signed32()) && in VisitNode() 2157 } else if (lhs_type.Is(Type::PlainNumber()) && in VisitNode() 2174 Type const lhs_type = TypeOf(node->InputAt(0)); in VisitNode() local [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | dot_decomposer.cc | 66 PrimitiveType lhs_type = lhs_shape.element_type(); in DecomposeBatchDot() local 70 ShapeUtil::MakeShape(lhs_type, {batch_size, lhs_rows, lhs_cols}); in DecomposeBatchDot() 72 ShapeUtil::MakeShape(lhs_type, {1, lhs_rows, lhs_cols}); in DecomposeBatchDot() 74 ShapeUtil::MakeShape(lhs_type, {lhs_rows, lhs_cols}); in DecomposeBatchDot() 122 ShapeUtil::MakeShape(lhs_type, {lhs_cols, lhs_rows}); in DecomposeBatchDot()
|
/external/v8/src/builtins/ |
D | builtins-string-gen.h | 29 MachineType lhs_type, Node* rhs,
|
D | builtins-string-gen.cc | 246 Node* lhs, Node* lhs_instance_type, MachineType lhs_type, Node* rhs, in StringEqual_Loop() argument 270 Load(lhs_type, lhs_data, in StringEqual_Loop() 272 ElementSizeLog2Of(lhs_type.representation()))); in StringEqual_Loop()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | tiled_dot_emitter.cc | 970 llvm::Type* lhs_type = lhs->getType(); in GetGemvBuffersWithCanonicalType() local 976 b->CreateBitCast(lhs, GetPointerToElementType(lhs_type)); in GetGemvBuffersWithCanonicalType()
|
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 4192 TypeHint lhs_type = VisitForAccumulatorValue(expr->left()); in VisitArithmeticExpression() local 4197 (lhs_type == TypeHint::kString || rhs_type == TypeHint::kString)) { in VisitArithmeticExpression()
|