/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 | 1133 Type* left_type = computed_type_; in VisitIntegerBitwiseOperator() local 1134 if (!left_type->Is(left_expected)) { in VisitIntegerBitwiseOperator() 1155 if (left_type->Is(cache_.kAsmFixnum) && right_type->Is(cache_.kAsmInt)) { in VisitIntegerBitwiseOperator() 1156 left_type = right_type; in VisitIntegerBitwiseOperator() 1158 if (right_type->Is(cache_.kAsmFixnum) && left_type->Is(cache_.kAsmInt)) { in VisitIntegerBitwiseOperator() 1159 right_type = left_type; in VisitIntegerBitwiseOperator() 1162 if (!left_type->Is(cache_.kAsmIntQ) || !right_type->Is(cache_.kAsmIntQ)) { in VisitIntegerBitwiseOperator() 1258 Type* left_type = computed_type_; in VisitBinaryOperation() local 1265 Type* type = Type::Union(left_type, right_type, zone()); in VisitBinaryOperation() 1314 left_type = bounds_.get(expr->left()).upper; in VisitBinaryOperation() [all …]
|
D | type-info.cc | 197 Type** left_type, in CompareType() argument 203 *left_type = *right_type = *combined_type = Type::None(); in CompareType() 214 *left_type = CompareICState::StateToType(zone(), stub.left()); in CompareType()
|
D | code-stubs-hydrogen.cc | 1521 Type* left_type = state.GetLeftType(); in BuildCodeInitializedStub() local 1525 DCHECK(!left_type->Is(Type::None()) && !right_type->Is(Type::None()) && in BuildCodeInitializedStub() 1531 (left_type->Maybe(Type::String()) || right_type->Maybe(Type::String())) && in BuildCodeInitializedStub() 1532 !left_type->Is(Type::String()) && !right_type->Is(Type::String())) { in BuildCodeInitializedStub() 1535 if (left_type->Maybe(Type::String())) { in BuildCodeInitializedStub() 1546 Push(BuildBinaryOperation(state.op(), left, right, left_type, in BuildCodeInitializedStub() 1557 Push(BuildBinaryOperation(state.op(), left, right, left_type, in BuildCodeInitializedStub() 1563 Push(BuildBinaryOperation(state.op(), left, right, left_type, in BuildCodeInitializedStub() 1571 result = BuildBinaryOperation(state.op(), left, right, left_type, in BuildCodeInitializedStub() 1600 Type* left_type = state.GetLeftType(); in BuildCodeStub() local [all …]
|
/external/v8/src/crankshaft/ |
D | typing.cc | 633 Type* left_type; in VisitBinaryOperation() local 638 &left_type, &right_type, &type, &fixed_right_arg, in VisitBinaryOperation() 641 NarrowLowerType(expr->left(), left_type); in VisitBinaryOperation() 734 Type* left_type; in VisitCompareOperation() local 738 &left_type, &right_type, &combined_type); in VisitCompareOperation() 739 NarrowLowerType(expr->left(), left_type); in VisitCompareOperation()
|
D | hydrogen.cc | 11170 Type* left_type = bounds_.get(expr->left()).lower; in BuildBinaryOperation() local 11181 expr->op(), left, right, left_type, right_type, result_type, in BuildBinaryOperation() 11199 HValue* right, Type* left_type, in BuildBinaryOperation() argument 11209 if (!left_type->IsInhabited() && right->IsConstant() && in BuildBinaryOperation() 11211 left_type = Type::String(); in BuildBinaryOperation() 11219 maybe_string_add = (left_type->Maybe(Type::String()) || in BuildBinaryOperation() 11220 left_type->Maybe(Type::Receiver()) || in BuildBinaryOperation() 11225 Representation left_rep = RepresentationFor(left_type); in BuildBinaryOperation() 11228 if (!left_type->IsInhabited()) { in BuildBinaryOperation() 11232 left_type = Type::Any(); in BuildBinaryOperation() [all …]
|
D | hydrogen.h | 1502 Type* left_type, Type* right_type, 2769 Token::Value op, HValue* left, HValue* right, Type* left_type,
|
/external/v8/src/compiler/ |
D | js-typed-lowering.cc | 76 bool left_is_primitive = left_type()->Is(Type::PlainPrimitive()); in ConvertInputsToNumber() 196 bool LeftInputIs(Type* t) { return left_type()->Is(t); } in LeftInputIs() 205 return !left_type()->Maybe(t) || !right_type()->Maybe(t); in OneInputCannotBe() 209 return !left_type()->Maybe(t) && !right_type()->Maybe(t); in NeitherInputCanBe() 217 Type* left_type() { return NodeProperties::GetType(node_->InputAt(0)); } in left_type() function in v8::internal::compiler::JSBinopReduction 734 if (!r.left_type()->Maybe(Type::NaN())) { in ReduceJSStrictEqual() 744 if (!r.left_type()->Maybe(r.right_type())) { in ReduceJSStrictEqual()
|
/external/v8/src/arm64/ |
D | code-stubs-arm64.cc | 256 Register left_type, in EmitStrictTwoHeapObjectCompare() argument 259 DCHECK(!AreAliased(left, right, left_type, right_type, scratch)); in EmitStrictTwoHeapObjectCompare() 288 __ Ccmp(left_type, ODDBALL_TYPE, ZFlag, ne); in EmitStrictTwoHeapObjectCompare() 292 __ Ccmp(left_type, FIRST_JS_RECEIVER_TYPE, NVFlag, ne); in EmitStrictTwoHeapObjectCompare() 300 __ Orr(scratch, left_type, right_type); in EmitStrictTwoHeapObjectCompare() 381 Register right_map, Register left_type, Register right_type, in EmitCheckForInternalizedStringsOrObjects() argument 383 DCHECK(!AreAliased(left, right, left_map, right_map, left_type, right_type)); in EmitCheckForInternalizedStringsOrObjects() 393 __ Tbnz(left_type, MaskToBit(kIsNotStringMask), runtime_call); in EmitCheckForInternalizedStringsOrObjects() 394 __ Tbnz(left_type, MaskToBit(kIsNotInternalizedMask), possible_strings); in EmitCheckForInternalizedStringsOrObjects() 403 Register left_bitfield = left_type; in EmitCheckForInternalizedStringsOrObjects() [all …]
|
/external/v8/test/cctest/compiler/ |
D | test-js-typed-lowering.cc | 117 Node* ReduceBinop(const Operator* op, Type* left_type, Type* right_type) { in ReduceBinop() argument 118 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()
|