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

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

Completed in 129 milliseconds