HomeSort by relevance Sort by last modified time
    Searched defs:right_type (Results 1 - 10 of 10) sorted by null

  /external/v8/src/
code-stubs-hydrogen.cc 394 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...]
  /external/v8/src/crankshaft/
typing.cc 629 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);
hydrogen.cc 10711 AstType* right_type = bounds_.get(expr->right()).lower; local
11239 AstType* right_type = bounds_.get(expr->right()).lower; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 637 unsigned right_type = getTypeOfMaskedICmp(A, D, E, RHSCC); local
638 return left_type & right_type;
    [all...]
  /external/v8/src/compiler/ia32/
instruction-selector-ia32.cc 1256 MachineType right_type = MachineTypeForNarrow(right, left); local
    [all...]
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 1670 MachineType right_type = MachineTypeForNarrow(right, left); local
    [all...]
  /external/v8/src/compiler/x87/
instruction-selector-x87.cc 1329 MachineType right_type = MachineTypeForNarrow(right, left); local
    [all...]
  /external/v8/src/arm64/
code-stubs-arm64.cc 158 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,
    [all...]
  /external/v8/src/asmjs/
asm-typer.cc 1741 AsmType* right_type = nullptr; local
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/
js-typed-lowering.cc 132 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
    [all...]

Completed in 378 milliseconds