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

/external/v8/src/
H A Dcode-stubs-hydrogen.cc394 AstType* right_type = state.GetRightType(); local
397 DCHECK(!left_type->Is(AstType::None()) && !right_type->Is(AstType::None()) &&
403 right_type->Maybe(AstType::String())) &&
404 !left_type->Is(AstType::String()) && !right_type->Is(AstType::String())) {
413 right_type, result_type,
419 right_type, result_type,
436 right_type, result_type,
444 right_type, result_type,
472 AstType* right_type = state.GetRightType(); local
476 return BuildBinaryOperation(state.op(), left, right, left_type, right_type,
[all...]
H A Dtype-info.cc225 AstType** left_type, AstType** right_type,
233 *left_type = *right_type = *combined_type = AstType::None();
242 *left_type = *right_type = *combined_type =
273 *right_type = right_type_from_ic;
278 *right_type = AstType::Union(*right_type, right_type_from_ic, zone());
224 CompareType(TypeFeedbackId id, FeedbackSlot slot, AstType** left_type, AstType** right_type, AstType** combined_type) argument
/external/v8/src/crankshaft/
H A Dtyping.cc629 AstType* right_type; local
634 &right_type, &type, &fixed_right_arg, &allocation_site,
639 NarrowLowerType(expr->right(), right_type);
735 AstType* right_type; local
739 &right_type, &combined_type);
741 NarrowLowerType(expr->right(), right_type);
H A Dhydrogen.cc10711 AstType* right_type = bounds_.get(expr->right()).lower; local
10721 expr->op(), left, right, left_type, right_type, result_type,
10740 AstType* right_type, AstType* result_type, Maybe<int> fixed_right_arg,
10752 if (!right_type->IsInhabited() && left->IsConstant() &&
10754 right_type = AstType::String();
10759 right_type->Maybe(AstType::String()) ||
10760 right_type->Maybe(AstType::Receiver()));
10764 Representation right_rep = RepresentationFor(right_type);
10775 if (!right_type->IsInhabited()) {
10779 right_type
10738 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
11239 AstType* right_type = bounds_.get(expr->right()).lower; local
11326 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.cc1256 MachineType right_type = MachineTypeForNarrow(right, left); local
1257 if (left_type == right_type) {
/external/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc1670 MachineType right_type = MachineTypeForNarrow(right, left); local
1671 if (left_type == right_type) {
/external/v8/src/compiler/x87/
H A Dinstruction-selector-x87.cc1329 MachineType right_type = MachineTypeForNarrow(right, left); local
1330 if (left_type == right_type) {
/external/v8/src/arm64/
H A Dcode-stubs-arm64.cc158 Register right_type = scratch; local
161 __ JumpIfObjectType(right, right_type, right_type, FIRST_JS_RECEIVER_TYPE,
164 __ Cmp(right_type, SYMBOL_TYPE);
169 __ JumpIfObjectType(right, right_type, right_type, HEAP_NUMBER_TYPE,
172 __ Cmp(right_type, FIRST_JS_RECEIVER_TYPE);
175 __ Cmp(right_type, SYMBOL_TYPE);
181 __ Cmp(right_type, ODDBALL_TYPE);
240 Register right_type,
236 EmitStrictTwoHeapObjectCompare(MacroAssembler* masm, Register left, Register right, Register left_type, Register right_type, Register scratch) argument
362 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...]
/external/v8/src/asmjs/
H A Dasm-typer.cc1741 AsmType* right_type = nullptr; local
1743 RECURSE(right_type = ValidateFloatCoercion(right_as_call));
1744 if (right_type != AsmType::Float()) {
1745 // right_type == nullptr <-> right_as_call is not a call to fround.
1746 DCHECK(right_type == nullptr);
1747 RECURSE(right_type = ValidateCall(AsmType::Void(), right_as_call));
1750 DCHECK_EQ(right_type, AsmType::Void());
1753 RECURSE(right_type = ValidateExpression(right));
1756 return right_type;
1969 AsmType* right_type; local
2009 AsmType* right_type; local
2065 AsmType* right_type; local
2110 AsmType* right_type; local
2144 AsmType* right_type; local
2193 AsmType* right_type; local
2230 AsmType* right_type; local
2257 AsmType* right_type; local
2297 AsmType* right_type; local
[all...]
/external/v8/src/compiler/
H A Djs-typed-lowering.cc132 if (!right_type()->Is(Type::Receiver())) {
150 if (!right_type()->Is(Type::String())) {
168 if (!right_type()->Is(Type::UniqueName())) {
189 bool right_is_primitive = right_type()->Is(Type::PlainPrimitive());
372 bool RightInputIs(Type* t) { return right_type()->Is(t); }
379 return left_type()->Maybe(t) && right_type()->Maybe(t);
383 return !left_type()->Maybe(t) || !right_type()->Maybe(t);
387 return !left_type()->Maybe(t) && !right_type()->Maybe(t);
396 Type* right_type() { return NodeProperties::GetType(node_->InputAt(1)); } function in class:v8::internal::compiler::final
1001 if (!r.left_type()->Maybe(r.right_type())) {
[all...]
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cCopyImageTests.cpp134 const glw::GLubyte* left_pixel, glw::GLenum right_format, glw::GLenum right_type,
2466 * @param right_type Type of right image
2473 const GLubyte* left_pixel, GLenum right_format, GLenum right_type,
2487 unpackPixel(right_format, right_type, right_pixel, right_red, right_green, right_blue, right_alpha);
2472 unpackAndComaprePixels(GLenum left_format, GLenum left_type, GLenum left_internal_format, const GLubyte* left_pixel, GLenum right_format, GLenum right_type, GLenum right_internal_format, const GLubyte* right_pixel) argument

Completed in 422 milliseconds