/external/libvpx/libvpx/vp9/common/ |
D | vp9_pred_common.c | 23 const int left_type = xd->left_available && is_inter_block(left_mbmi) ? in vp9_get_pred_context_switchable_interp() local 29 if (left_type == above_type) in vp9_get_pred_context_switchable_interp() 30 return left_type; in vp9_get_pred_context_switchable_interp() 31 else if (left_type == SWITCHABLE_FILTERS && above_type != SWITCHABLE_FILTERS) in vp9_get_pred_context_switchable_interp() 33 else if (left_type != SWITCHABLE_FILTERS && above_type == SWITCHABLE_FILTERS) in vp9_get_pred_context_switchable_interp() 34 return left_type; in vp9_get_pred_context_switchable_interp()
|
/external/v8/src/ |
D | typing-asm.cc | 1044 Type* left_type = computed_type_; in VisitIntegerBitwiseOperator() local 1045 if (!left_type->Is(left_expected)) { in VisitIntegerBitwiseOperator() 1066 if (left_type->Is(cache_.kAsmFixnum) && right_type->Is(cache_.kAsmInt)) { in VisitIntegerBitwiseOperator() 1067 left_type = right_type; in VisitIntegerBitwiseOperator() 1069 if (right_type->Is(cache_.kAsmFixnum) && left_type->Is(cache_.kAsmInt)) { in VisitIntegerBitwiseOperator() 1070 right_type = left_type; in VisitIntegerBitwiseOperator() 1073 if (!left_type->Is(right_type) || !right_type->Is(left_type)) { in VisitIntegerBitwiseOperator() 1139 Type* left_type = computed_type_; in VisitBinaryOperation() local 1146 Type* type = Type::Union(left_type, right_type, zone()); in VisitBinaryOperation() 1216 Type* left_type = computed_type_; in VisitCompareOperation() local [all …]
|
D | type-info.cc | 197 Type** left_type, in CompareType() argument 203 *left_type = *right_type = *combined_type = Type::None(zone()); in CompareType() 214 *left_type = CompareICState::StateToType(zone(), stub.left()); in CompareType() 220 *left_type = *right_type = stub.GetInputType(zone(), map); in CompareType()
|
D | code-stubs-hydrogen.cc | 1448 Type* left_type = state.GetLeftType(); in BuildCodeInitializedStub() local 1452 DCHECK(!left_type->Is(Type::None()) && !right_type->Is(Type::None()) && in BuildCodeInitializedStub() 1458 (left_type->Maybe(Type::String()) || right_type->Maybe(Type::String())) && in BuildCodeInitializedStub() 1459 !left_type->Is(Type::String()) && !right_type->Is(Type::String())) { in BuildCodeInitializedStub() 1462 if (left_type->Maybe(Type::String())) { in BuildCodeInitializedStub() 1475 state.op(), left, right, left_type, right_type, result_type, in BuildCodeInitializedStub() 1485 Push(BuildBinaryOperation(state.op(), left, right, left_type, in BuildCodeInitializedStub() 1493 state.op(), left, right, left_type, right_type, result_type, in BuildCodeInitializedStub() 1501 state.op(), left, right, left_type, right_type, result_type, in BuildCodeInitializedStub() 1529 Type* left_type = state.GetLeftType(); in BuildCodeStub() local [all …]
|
/external/v8/src/crankshaft/ |
D | typing.cc | 639 Type* left_type; in VisitBinaryOperation() local 644 &left_type, &right_type, &type, &fixed_right_arg, in VisitBinaryOperation() 647 NarrowLowerType(expr->left(), left_type); in VisitBinaryOperation() 739 Type* left_type; in VisitCompareOperation() local 743 &left_type, &right_type, &combined_type); in VisitCompareOperation() 744 NarrowLowerType(expr->left(), left_type); in VisitCompareOperation()
|
D | hydrogen.cc | 10898 Type* left_type = expr->left()->bounds().lower; in BuildBinaryOperation() local 10909 expr->op(), left, right, left_type, right_type, result_type, in BuildBinaryOperation() 10929 Token::Value op, HValue* left, HValue* right, Type* left_type, in BuildBinaryOperation() argument 10937 if (!left_type->IsInhabited() && right->IsConstant() && in BuildBinaryOperation() 10939 left_type = Type::String(); in BuildBinaryOperation() 10947 maybe_string_add = (left_type->Maybe(Type::String()) || in BuildBinaryOperation() 10948 left_type->Maybe(Type::Receiver()) || in BuildBinaryOperation() 10953 Representation left_rep = RepresentationFor(left_type); in BuildBinaryOperation() 10956 if (!left_type->IsInhabited()) { in BuildBinaryOperation() 10960 left_type = Type::Any(zone()); in BuildBinaryOperation() [all …]
|
D | hydrogen.h | 1429 Type* left_type, Type* right_type, 2749 Token::Value op, HValue* left, HValue* right, Type* left_type,
|
/external/v8/src/compiler/ |
D | js-typed-lowering.cc | 122 bool left_is_primitive = left_type()->Is(Type::PlainPrimitive()); in ConvertInputsToNumber() 232 bool LeftInputIs(Type* t) { return left_type()->Is(t); } in LeftInputIs() 241 return !left_type()->Maybe(t) || !right_type()->Maybe(t); in OneInputCannotBe() 245 return !left_type()->Maybe(t) && !right_type()->Maybe(t); in NeitherInputCanBe() 253 Type* left_type() { return NodeProperties::GetType(node_->InputAt(0)); } in left_type() function in v8::internal::compiler::JSBinopReduction 674 if (!r.left_type()->Maybe(Type::NaN())) { in ReduceJSStrictEqual() 683 if (!r.left_type()->Maybe(r.right_type())) { in ReduceJSStrictEqual() 1160 if (r.left_type()->Maybe(Type::TaggedSigned())) { in ReduceJSInstanceOf()
|
/external/v8/src/arm64/ |
D | code-stubs-arm64.cc | 325 Register left_type, in EmitStrictTwoHeapObjectCompare() argument 328 DCHECK(!AreAliased(left, right, left_type, right_type, scratch)); in EmitStrictTwoHeapObjectCompare() 357 __ Ccmp(left_type, ODDBALL_TYPE, ZFlag, ne); in EmitStrictTwoHeapObjectCompare() 361 __ Ccmp(left_type, FIRST_JS_RECEIVER_TYPE, NVFlag, ne); in EmitStrictTwoHeapObjectCompare() 369 __ Orr(scratch, left_type, right_type); in EmitStrictTwoHeapObjectCompare() 451 Register left_type, in EmitCheckForInternalizedStringsOrObjects() argument 455 DCHECK(!AreAliased(left, right, left_map, right_map, left_type, right_type)); in EmitCheckForInternalizedStringsOrObjects() 464 __ Tbnz(left_type, MaskToBit(kIsNotStringMask), not_both_strings); in EmitCheckForInternalizedStringsOrObjects() 465 __ Tbnz(left_type, MaskToBit(kIsNotInternalizedMask), possible_strings); in EmitCheckForInternalizedStringsOrObjects() 478 __ Ccmp(left_type, FIRST_JS_RECEIVER_TYPE, NFlag, ge); in EmitCheckForInternalizedStringsOrObjects() [all …]
|
/external/v8/test/cctest/compiler/ |
D | test-js-typed-lowering.cc | 129 Node* ReduceBinop(const Operator* op, Type* left_type, Type* right_type) { in ReduceBinop() argument 130 return reduce(Binop(op, Parameter(left_type, 0), Parameter(right_type, 1))); in ReduceBinop()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 696 unsigned left_type = getTypeOfMaskedICmp(A, B, C, LHSCC); in foldLogOpOfMaskedICmpsHelper() local 698 return left_type & right_type; in foldLogOpOfMaskedICmpsHelper()
|