HomeSort by relevance Sort by last modified time
    Searched refs:CanCover (Results 1 - 7 of 7) sorted by null

  /external/v8/src/compiler/arm/
instruction-selector-arm.cc 400 if (m.left().IsWord32Xor() && CanCover(node, m.left().node())) {
407 if (m.right().IsWord32Xor() && CanCover(node, m.right().node())) {
557 if (m.left().IsInt32Mul() && CanCover(node, m.left().node())) {
563 if (m.right().IsInt32Mul() && CanCover(node, m.right().node())) {
577 CanCover(node, m.right().node())) {
717 if (m.left().IsFloat64Mul() && CanCover(node, m.left().node())) {
724 if (m.right().IsFloat64Mul() && CanCover(node, m.right().node())) {
738 if (m.right().IsFloat64Mul() && CanCover(node, m.right().node())) {
  /external/v8/src/compiler/
instruction-selector.h 102 bool CanCover(Node* user, Node* node) const;
instruction-selector.cc 149 bool InstructionSelector::CanCover(Node* user, Node* node) const {
875 while (CanCover(user, value)) {
900 if (CanCover(user, value)) {
    [all...]
register-allocator.h 272 bool CanCover(LifetimePosition position) const;
register-allocator.cc 456 bool LiveRange::CanCover(LifetimePosition position) const {
464 if (!CanCover(position)) return false;
    [all...]
  /external/v8/src/
lithium-allocator.h 275 bool CanCover(LifetimePosition position) const;
lithium-allocator.cc 466 bool LiveRange::CanCover(LifetimePosition position) const {
474 if (!CanCover(position)) return false;
    [all...]

Completed in 219 milliseconds