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

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

Completed in 402 milliseconds