Searched refs:Int64AddWithOverflow (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/compiler/ |
D | machine-operator.h | 195 const Operator* Int64AddWithOverflow();
|
D | opcodes.h | 262 V(Int64AddWithOverflow) \
|
D | raw-machine-assembler.h | 283 Node* Int64AddWithOverflow(Node* a, Node* b) { in Int64AddWithOverflow() function 284 return AddNode(machine()->Int64AddWithOverflow(), a, b); in Int64AddWithOverflow()
|
D | machine-operator.cc | 131 V(Int64AddWithOverflow, Operator::kAssociative | Operator::kCommutative, 2, \
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 423 Node* add = m.Int64AddWithOverflow(bt.param0, bt.param1); in TEST() 444 Node* add = m.Int64AddWithOverflow(m.Int64Constant(*i), m.Parameter(0)); in TEST() 457 Node* add = m.Int64AddWithOverflow(m.Parameter(0), m.Int64Constant(*i)); in TEST() 471 m.Int64AddWithOverflow(m.Int64Constant(*i), m.Int64Constant(*j)); in TEST() 489 Node* add = m.Int64AddWithOverflow(bt.param0, bt.param1); in TEST()
|