Home | History | Annotate | Download | only in src

Lines Matching full:representation

56 const char* Representation::Mnemonic() const {
78 void HValue::AssumeRepresentation(Representation r) {
81 // The representation of the value is dictated by type feedback and
350 if (!other->representation().Equals(representation())) return false;
437 if (!representation().IsTagged() || type().Equals(HType::Tagged())) return;
852 if (!representation().IsInteger32()) return this;
870 if (!representation().IsInteger32()) return this;
877 if (!representation().IsInteger32()) return this;
1023 result->set_can_be_minus_zero(!representation().IsInteger32());
1054 if (representation().IsInteger32()) {
1072 if (representation().IsInteger32()) {
1089 if (representation().IsInteger32()) {
1105 if (representation().IsInteger32()) {
1123 if (representation().IsInteger32()) {
1148 if (representation().IsInteger32()) {
1231 Representation rep = value->RequiredInputRepresentation(it.index());
1239 for (int i = 0; i < Representation::kNumRepresentations; i++) {
1246 for (int i = 0; i < Representation::kNumRepresentations; i++) {
1286 HConstant::HConstant(Handle<Object> handle, Representation r)
1305 HConstant* HConstant::CopyToRepresentation(Representation r) const {
1316 Representation::Integer32());
1489 void HCompareIDAndBranch::SetInputRepresentation(Representation r) {
1534 set_representation(Representation::Tagged());
2008 if (representation().IsInteger32() &&
2009 !value()->representation().IsInteger32()) {
2015 representation().IsInteger32()) {
2094 Representation::Integer32())
2097 Representation::Double())
2260 Representation HPhi::InferredRepresentation() {
2268 Representation hint = hint_value->representation();
2274 if (value->representation().IsDouble()) double_occurred = true;
2275 if (value->representation().IsInteger32()) int32_occurred = true;
2276 if (value->representation().IsTagged()) {
2284 return Representation::Tagged();
2287 return Representation::Tagged();
2292 if (double_occurred) return Representation::Double();
2294 if (int32_occurred) return Representation::Integer32();
2296 return Representation::None();