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

  /external/v8/src/compiler/
graph-assembler.cc 261 representations_ = zone->NewArray<MachineRepresentation>(PhiCount() + 1);
263 representations_[i] = representations[i];
286 return representations_[phi_index];
graph-assembler.h 101 representations_[i] = reps_array[i + 1];
135 return representations_[phi_index];
151 MachineRepresentation representations_[VarCount + 1]; member in class:v8::internal::compiler::GraphAssemblerStaticLabel
198 MachineRepresentation* representations_ = nullptr; member in class:v8::internal::compiler::GraphAssemblerLabel
instruction.cc 829 representations_(zone()),
921 if (virtual_register >= static_cast<int>(representations_.size())) {
924 return representations_[virtual_register];
932 if (virtual_register >= static_cast<int>(representations_.size())) {
933 representations_.resize(VirtualRegisterCount(), DefaultRepresentation());
936 DCHECK_IMPLIES(representations_[virtual_register] != rep,
937 representations_[virtual_register] == DefaultRepresentation());
938 representations_[virtual_register] = rep;
    [all...]
instruction.h 1625 ZoneVector<MachineRepresentation> representations_; local
    [all...]

Completed in 197 milliseconds