OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SDValue
(Results
1 - 2
of
2
) sorted by null
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
SelectionDAGNodes.h
80
///
SDValue
- Unlike LLVM values, Selection DAG nodes may return multiple
88
/// of information is represented with the
SDValue
value type.
90
class
SDValue
{
94
SDValue
() : Node(0), ResNo(0) {}
95
SDValue
(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
108
bool operator==(const
SDValue
&O) const {
111
bool operator!=(const
SDValue
&O) const {
114
bool operator<(const
SDValue
&O) const {
118
SDValue
getValue(unsigned R) const {
119
return
SDValue
(Node, R)
[
all
...]
/external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h
103
/// of information is represented with the
SDValue
value type.
105
class
SDValue
{
106
friend struct DenseMapInfo<
SDValue
>;
111
SDValue
() : Node(nullptr), ResNo(0) {}
112
SDValue
(SDNode *node, unsigned resno);
125
bool operator==(const
SDValue
&O) const {
128
bool operator!=(const
SDValue
&O) const {
131
bool operator<(const
SDValue
&O) const {
138
SDValue
getValue(unsigned R) const {
139
return
SDValue
(Node, R)
[
all
...]
Completed in 513 milliseconds