OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OperandList
(Results
1 - 9
of
9
) sorted by null
/external/llvm/utils/TableGen/
CodeGenInstruction.h
90
///
OperandList
may not match the MachineInstr operand num. Until it
129
Record *TheDef; // The actual record containing this
OperandList
.
136
///
OperandList
- The list of declared operands, along with their declared
138
std::vector<OperandInfo>
OperandList
;
146
bool empty() const { return
OperandList
.empty(); }
147
unsigned size() const { return
OperandList
.size(); }
148
const OperandInfo &operator[](unsigned i) const { return
OperandList
[i]; }
149
OperandInfo &operator[](unsigned i) { return
OperandList
[i]; }
150
OperandInfo &back() { return
OperandList
.back(); }
151
const OperandInfo &back() const { return
OperandList
.back();
[
all
...]
CodeGenInstruction.cpp
118
OperandList
.emplace_back(Rec, ArgName, PrintMethod, EncoderMethod,
127
for (unsigned i = 0, e =
OperandList
.size(); i != e; ++i)
128
OperandList
[i].Constraints.resize(
OperandList
[i].MINumOperands);
148
for (unsigned i = 0, e =
OperandList
.size(); i != e; ++i)
149
if (
OperandList
[i].Name == Name) {
177
if (
OperandList
[OpIdx].MINumOperands > 1 && !AllowWholeOp &&
187
DagInit *MIOpInfo =
OperandList
[OpIdx].MIOperandInfo;
284
if (Op.second >=
OperandList
[Op.first].DoNotEncode.size())
285
OperandList
[Op.first].DoNotEncode.resize(Op.second+1)
[
all
...]
InstrInfoEmitter.cpp
94
std::vector<CGIOperandList::OperandInfo>
OperandList
;
104
OperandList
.push_back(Op);
107
OperandList
.push_back(Op);
110
OperandList
.back().Rec = OpR;
114
for (unsigned j = 0, e =
OperandList
.size(); j != e; ++j) {
115
Record *OpR =
OperandList
[j].Rec;
X86DisassemblerTables.cpp
635
OperandListTy
OperandList
;
643
OperandList
.push_back(std::make_pair(Encoding, Type));
645
unsigned &N = OperandSets[
OperandList
];
651
for (unsigned i = 0, e =
OperandList
.size(); i != e; ++i) {
652
const char *Encoding = stringForOperandEncoding(
OperandList
[i].first);
653
const char *Type = stringForOperandType(
OperandList
[i].second);
669
OperandListTy
OperandList
;
676
OperandList
.push_back(std::make_pair(Encoding, Type));
678
o.indent(i * 2) << (OperandSets[
OperandList
] - 1) << ",\n";
X86RecognizableInstr.cpp
230
Operands = &insn.Operands.
OperandList
;
517
const std::vector<CGIOperandList::OperandInfo> &
OperandList
= *Operands;
519
unsigned numOperands =
OperandList
.size();
522
// operandMapping maps from operands in
OperandList
to their originals.
528
if (!
OperandList
[operandIndex].Constraints.empty()) {
530
OperandList
[operandIndex].Constraints[0];
[
all
...]
/external/llvm/include/llvm/Bitcode/
BitCodes.h
166
SmallVector<BitCodeAbbrevOp, 32>
OperandList
;
173
return static_cast<unsigned>(
OperandList
.size());
176
return
OperandList
[N];
180
OperandList
.push_back(OpInfo);
/external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h
381
/// This is true if
OperandList
was new[]'d. If true,
400
SDUse *
OperandList
;
567
return (unsigned)(Op - Op->getUser()->
OperandList
);
633
return
OperandList
[Num];
637
op_iterator op_begin() const { return
OperandList
; }
638
op_iterator op_end() const { return
OperandList
+NumOperands; }
780
OperandList
(Ops.size() ? new SDUse[Ops.size()] : nullptr),
789
assert(
OperandList
&& "no operands available");
790
OperandList
[i].setUser(this);
791
OperandList
[i].setInitial(Ops[i])
[
all
...]
/external/llvm/lib/IR/
Constants.cpp
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
685
delete[] N->
OperandList
;
[
all
...]
Completed in 126 milliseconds