Home | History | Annotate | Download | only in src

Lines Matching defs:Types

1039   // At most 8 different types can be distinguished, because the Code object
1040 // only has room for a single byte to hold a set of these types. :-P
1043 class Types {
1045 Types() {}
1046 explicit Types(byte bits) : set_(bits) {}
1053 void TraceTransition(Types to) const;
1062 static Types no_types() { return Types(); }
1063 static Types all_types() { return Types((1 << NUMBER_OF_TYPES) - 1); }
1065 explicit ToBooleanStub(Register tos, Types types = Types())
1066 : tos_(tos), types_(types) { }
1089 Types types_;