Searched defs:right_type (Results 1 - 11 of 11) sorted by relevance

/external/v8/src/
H A Dtype-info.cc236 AstType** left_type, AstType** right_type,
244 *left_type = *right_type = *combined_type = AstType::None();
253 *left_type = *right_type = *combined_type =
284 *right_type = right_type_from_ic;
289 *right_type = AstType::Union(*right_type, right_type_from_ic, zone());
235 CompareType(TypeFeedbackId id, FeedbackVectorSlot slot, AstType** left_type, AstType** right_type, AstType** combined_type) argument
H A Dcode-stubs-hydrogen.cc898 AstType* right_type = state.GetRightType(); local
901 DCHECK(!left_type->Is(AstType::None()) && !right_type->Is(AstType::None()) &&
907 right_type->Maybe(AstType::String())) &&
908 !left_type->Is(AstType::String()) && !right_type->Is(AstType::String())) {
917 right_type, result_type,
923 right_type, result_type,
940 right_type, result_type,
948 right_type, result_type,
976 AstType* right_type = state.GetRightType(); local
980 return BuildBinaryOperation(state.op(), left, right, left_type, right_type,
[all...]
/external/v8/src/crankshaft/
H A Dtyping.cc630 AstType* right_type; local
635 &right_type, &type, &fixed_right_arg, &allocation_site,
640 NarrowLowerType(expr->right(), right_type);
736 AstType* right_type; local
740 &right_type, &combined_type);
742 NarrowLowerType(expr->right(), right_type);
H A Dhydrogen.cc10654 AstType* right_type = bounds_.get(expr->right()).lower; local
10664 expr->op(), left, right, left_type, right_type, result_type,
10683 AstType* right_type, AstType* result_type, Maybe<int> fixed_right_arg,
10695 if (!right_type->IsInhabited() && left->IsConstant() &&
10697 right_type = AstType::String();
10702 right_type->Maybe(AstType::String()) ||
10703 right_type->Maybe(AstType::Receiver()));
10707 Representation right_rep = RepresentationFor(right_type);
10718 if (!right_type->IsInhabited()) {
10722 right_type
10681 BuildBinaryOperation( Token::Value op, HValue* left, HValue* right, AstType* left_type, AstType* right_type, AstType* result_type, Maybe<int> fixed_right_arg, HAllocationMode allocation_mode, BailoutId opt_id) argument
11187 AstType* right_type = bounds_.get(expr->right()).lower; local
11273 BuildCompareInstruction( Token::Value op, HValue* left, HValue* right, AstType* left_type, AstType* right_type, AstType* combined_type, SourcePosition left_position, SourcePosition right_position, PushBeforeSimulateBehavior push_sim_result, BailoutId bailout_id) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp637 unsigned right_type = getTypeOfMaskedICmp(A, D, E, RHSCC); local
638 return left_type & right_type;
/external/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc1257 MachineType right_type = LoadRepresentationOf(right->op()); local
1258 if (left_type == right_type) {
/external/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc1704 MachineType right_type = LoadRepresentationOf(right->op()); local
1705 if (left_type == right_type) {
/external/v8/src/compiler/x87/
H A Dinstruction-selector-x87.cc1273 MachineType right_type = LoadRepresentationOf(right->op()); local
1274 if (left_type == right_type) {
/external/v8/src/asmjs/
H A Dasm-typer.cc1661 AsmType* right_type = nullptr; local
1663 RECURSE(right_type = ValidateFloatCoercion(right_as_call));
1664 if (right_type != AsmType::Float()) {
1665 // right_type == nullptr <-> right_as_call is not a call to fround.
1666 DCHECK(right_type == nullptr);
1667 RECURSE(right_type = ValidateCall(AsmType::Void(), right_as_call));
1670 DCHECK_EQ(right_type, AsmType::Void());
1673 RECURSE(right_type = ValidateExpression(right));
1676 return right_type;
1889 AsmType* right_type; local
1929 AsmType* right_type; local
1985 AsmType* right_type; local
2030 AsmType* right_type; local
2064 AsmType* right_type; local
2113 AsmType* right_type; local
2150 AsmType* right_type; local
2177 AsmType* right_type; local
2217 AsmType* right_type; local
[all...]
/external/v8/src/compiler/
H A Djs-typed-lowering.cc118 bool right_is_primitive = right_type()->Is(Type::PlainPrimitive());
313 bool RightInputIs(Type* t) { return right_type()->Is(t); }
320 return !left_type()->Maybe(t) || !right_type()->Maybe(t);
324 return !left_type()->Maybe(t) && !right_type()->Maybe(t);
333 Type* right_type() { return NodeProperties::GetType(node_->InputAt(1)); } function in class:v8::internal::compiler::final
905 if (!r.left_type()->Maybe(r.right_type())) {
/external/v8/src/arm64/
H A Dcode-stubs-arm64.cc169 Register right_type = scratch; local
172 __ JumpIfObjectType(right, right_type, right_type, FIRST_JS_RECEIVER_TYPE,
175 __ Cmp(right_type, SYMBOL_TYPE);
178 __ Cmp(right_type, SIMD128_VALUE_TYPE);
183 __ JumpIfObjectType(right, right_type, right_type, HEAP_NUMBER_TYPE,
186 __ Cmp(right_type, FIRST_JS_RECEIVER_TYPE);
189 __ Cmp(right_type, SYMBOL_TYPE);
192 __ Cmp(right_type, SIMD128_VALUE_TYP
253 EmitStrictTwoHeapObjectCompare(MacroAssembler* masm, Register left, Register right, Register left_type, Register right_type, Register scratch) argument
379 EmitCheckForInternalizedStringsOrObjects( MacroAssembler* masm, Register left, Register right, Register left_map, Register right_map, Register left_type, Register right_type, Label* possible_strings, Label* runtime_call) argument
[all...]

Completed in 903 milliseconds