Home
last modified time | relevance | path

Searched refs:representations_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dinstruction.cc816 representations_(zone()), in InstructionSequence()
905 if (virtual_register >= static_cast<int>(representations_.size())) { in GetRepresentation()
908 return representations_[virtual_register]; in GetRepresentation()
916 if (virtual_register >= static_cast<int>(representations_.size())) { in MarkAsRepresentation()
917 representations_.resize(VirtualRegisterCount(), DefaultRepresentation()); in MarkAsRepresentation()
920 DCHECK_IMPLIES(representations_[virtual_register] != rep, in MarkAsRepresentation()
921 representations_[virtual_register] == DefaultRepresentation()); in MarkAsRepresentation()
922 representations_[virtual_register] = rep; in MarkAsRepresentation()
Dinstruction.h1520 ZoneVector<MachineRepresentation> representations_; in NON_EXPORTED_BASE() local