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

  /external/v8/src/crankshaft/
hydrogen-dehoist.cc 19 HBinaryOperation* binary_operation = HBinaryOperation::cast(index); local
20 if (binary_operation->left()->IsConstant() && index->IsAdd()) {
21 subexpression = binary_operation->right();
22 constant = HConstant::cast(binary_operation->left());
23 } else if (binary_operation->right()->IsConstant()) {
24 subexpression = binary_operation->left();
25 constant = HConstant::cast(binary_operation->right());
33 int32_t sign = binary_operation->IsSub() ? -1 : 1;
49 if (binary_operation->HasNoUses()) {
50 binary_operation->DeleteAndReplaceWith(NULL)
    [all...]
  /external/v8/src/ast/
ast.h 2413 BinaryOperation* binary_operation() const { return binary_operation_; } function in class:v8::internal::final
    [all...]

Completed in 1115 milliseconds