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 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...]
  /external/v8/src/ast/
ast.h 2388 BinaryOperation* binary_operation() const { return binary_operation_; } function in class:v8::internal::final
    [all...]

Completed in 332 milliseconds