Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
99 lines (91 loc) · 3.02 KB

File metadata and controls

99 lines (91 loc) · 3.02 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/codegen/machine-type.h"
#include "src/utils/ostreams.h"
namespace v8 {
namespace internal {
bool IsSubtype(MachineRepresentation rep1, MachineRepresentation rep2) {
if (rep1 == rep2) return true;
switch (rep1) {
case MachineRepresentation::kTaggedSigned: // Fall through.
case MachineRepresentation::kTaggedPointer:
return rep2 == MachineRepresentation::kTagged;
case MachineRepresentation::kCompressedPointer:
return rep2 == MachineRepresentation::kCompressed;
default:
return false;
}
}
std::ostream& operator<<(std::ostream& os, MachineRepresentation rep) {
return os << MachineReprToString(rep);
}
const char* MachineReprToString(MachineRepresentation rep) {
switch (rep) {
case MachineRepresentation::kNone:
return "kMachNone";
case MachineRepresentation::kBit:
return "kRepBit";
case MachineRepresentation::kWord8:
return "kRepWord8";
case MachineRepresentation::kWord16:
return "kRepWord16";
case MachineRepresentation::kWord32:
return "kRepWord32";
case MachineRepresentation::kWord64:
return "kRepWord64";
case MachineRepresentation::kFloat32:
return "kRepFloat32";
case MachineRepresentation::kFloat64:
return "kRepFloat64";
case MachineRepresentation::kSimd128:
return "kRepSimd128";
case MachineRepresentation::kTaggedSigned:
return "kRepTaggedSigned";
case MachineRepresentation::kTaggedPointer:
return "kRepTaggedPointer";
case MachineRepresentation::kTagged:
return "kRepTagged";
case MachineRepresentation::kCompressedPointer:
return "kRepCompressedPointer";
case MachineRepresentation::kCompressed:
return "kRepCompressed";
case MachineRepresentation::kMapWord:
return "kRepMapWord";
}
UNREACHABLE();
}
std::ostream& operator<<(std::ostream& os, MachineSemantic type) {
switch (type) {
case MachineSemantic::kNone:
return os << "kMachNone";
case MachineSemantic::kBool:
return os << "kTypeBool";
case MachineSemantic::kInt32:
return os << "kTypeInt32";
case MachineSemantic::kUint32:
return os << "kTypeUint32";
case MachineSemantic::kInt64:
return os << "kTypeInt64";
case MachineSemantic::kUint64:
return os << "kTypeUint64";
case MachineSemantic::kNumber:
return os << "kTypeNumber";
case MachineSemantic::kAny:
return os << "kTypeAny";
}
UNREACHABLE();
}
std::ostream& operator<<(std::ostream& os, MachineType type) {
if (type == MachineType::None()) {
return os;
} else if (type.representation() == MachineRepresentation::kNone) {
return os << type.semantic();
} else if (type.semantic() == MachineSemantic::kNone) {
return os << type.representation();
} else {
return os << type.representation() << "|" << type.semantic();
}
}
} // namespace internal
} // namespace v8
Morty Proxy This is a proxified and sanitized view of the page, visit original site.