HomeSort by relevance Sort by last modified time
    Searched refs:binary_operation (Results 1 - 16 of 16) sorted by null

  /external/v8/src/crankshaft/
hydrogen-dehoist.cc 20 HBinaryOperation* binary_operation = HBinaryOperation::cast(index); local
21 if (binary_operation->left()->IsConstant() && index->IsAdd()) {
22 subexpression = binary_operation->right();
23 constant = HConstant::cast(binary_operation->left());
24 } else if (binary_operation->right()->IsConstant()) {
25 subexpression = binary_operation->left();
26 constant = HConstant::cast(binary_operation->right());
34 int32_t sign = binary_operation->IsSub() ? -1 : 1;
50 if (binary_operation->HasNoUses()) {
51 binary_operation->DeleteAndReplaceWith(NULL)
    [all...]
typing.cc 459 expr->is_compound() ? expr->binary_operation() : expr->value();
hydrogen.cc     [all...]
  /external/v8/src/ast/
ast-numbering.cc 422 if (node->is_compound()) VisitBinaryOperation(node->binary_operation());
ast.h 2388 BinaryOperation* binary_operation() const { return binary_operation_; } function in class:v8::internal::final
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc     [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc     [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc     [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc     [all...]
  /external/v8/src/full-codegen/mips/
full-codegen-mips.cc     [all...]
  /external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc     [all...]
  /external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc     [all...]
  /external/v8/src/full-codegen/s390/
full-codegen-s390.cc     [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc     [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc     [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc     [all...]

Completed in 307 milliseconds