Searched defs:binary_operation (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/v8/src/
H A Dhydrogen-dehoist.cc18 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
[all...]
H A Dast.h2173 BinaryOperation* binary_operation() const { return binary_operation_; } function in class:v8::internal::FINAL

Completed in 91 milliseconds