OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:binary_operation
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/v8/src/
hydrogen-dehoist.cc
40
HBinaryOperation*
binary_operation
= HBinaryOperation::cast(index);
local
41
if (
binary_operation
->left()->IsConstant() && index->IsAdd()) {
42
subexpression =
binary_operation
->right();
43
constant = HConstant::cast(
binary_operation
->left());
44
} else if (
binary_operation
->right()->IsConstant()) {
45
subexpression =
binary_operation
->left();
46
constant = HConstant::cast(
binary_operation
->right());
52
int32_t sign =
binary_operation
->IsSub() ? -1 : 1;
58
if (
binary_operation
->HasNoUses()) {
59
binary_operation
->DeleteAndReplaceWith(NULL)
[
all
...]
ast.h
2133
BinaryOperation*
binary_operation
() const { return
binary_operation
_; }
function in class:v8::internal::V8_FINAL
[
all
...]
/external/v8/src/
ast.h
1937
BinaryOperation*
binary_operation
() const { return
binary_operation
_; }
function in class:v8::internal::Assignment
[
all
...]
Completed in 109 milliseconds