Lines Matching defs:rep
128 LoadRepresentation rep;
210 MachineRepresentation rep;
348 bool IsUnalignedLoadSupported(MachineRepresentation rep) const {
349 return IsUnalignedSupported(unalignedLoadUnsupportedTypes_, rep);
352 bool IsUnalignedStoreSupported(MachineRepresentation rep) const {
353 return IsUnalignedSupported(unalignedStoreUnsupportedTypes_, rep);
381 MachineRepresentation rep) const {
383 DCHECK_NE(MachineRepresentation::kWord8, rep);
390 return !unsupported.contains(rep);
932 const Operator* Load(LoadRepresentation rep);
933 const Operator* LoadImmutable(LoadRepresentation rep);
934 const Operator* ProtectedLoad(LoadRepresentation rep);
940 const Operator* LoadLane(MemoryAccessKind kind, LoadRepresentation rep,
944 const Operator* Store(StoreRepresentation rep);
945 const Operator* ProtectedStore(MachineRepresentation rep);
948 const Operator* StoreLane(MemoryAccessKind kind, MachineRepresentation rep,
952 const Operator* UnalignedLoad(LoadRepresentation rep);
955 const Operator* UnalignedStore(UnalignedStoreRepresentation rep);
958 const Operator* StackSlot(MachineRepresentation rep, int alignment = 0);
1037 bool UnalignedLoadSupported(MachineRepresentation rep) {
1038 return alignment_requirements_.IsUnalignedLoadSupported(rep);
1041 bool UnalignedStoreSupported(MachineRepresentation rep) {
1042 return alignment_requirements_.IsUnalignedStoreSupported(rep);