OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OperandList
(Results
1 - 13
of
13
) sorted by null
/external/llvm/include/llvm/
User.h
38
///
OperandList
- This is a pointer to the array of Uses for this User.
43
Use *
OperandList
;
51
: Value(ty, vty),
OperandList
(OpList), NumOperands(NumOps) {}
54
Use::zap(
OperandList
,
OperandList
+ NumOperands, true);
55
OperandList
= 0;
61
Use::zap(
OperandList
,
OperandList
+ NumOperands);
88
return
OperandList
[i];
95
OperandList
[i] = Val
[
all
...]
OperandTraits.h
86
/// has an
OperandList
member of type User::op_iterator. [Note: this is now
95
return U->
OperandList
;
98
return U->
OperandList
+ U->getNumOperands();
Instructions.h
[
all
...]
/external/llvm/utils/TableGen/
CodeGenInstruction.h
89
///
OperandList
may not match the MachineInstr operand num. Until it
128
Record *TheDef; // The actual record containing this
OperandList
.
135
///
OperandList
- The list of declared operands, along with their declared
137
std::vector<OperandInfo>
OperandList
;
145
bool empty() const { return
OperandList
.empty(); }
146
unsigned size() const { return
OperandList
.size(); }
147
const OperandInfo &operator[](unsigned i) const { return
OperandList
[i]; }
148
OperandInfo &operator[](unsigned i) { return
OperandList
[i]; }
149
OperandInfo &back() { return
OperandList
.back(); }
150
const OperandInfo &back() const { return
OperandList
.back();
[
all
...]
InstrInfoEmitter.cpp
58
std::vector<CGIOperandList::OperandInfo>
OperandList
;
68
OperandList
.push_back(Inst.Operands[i]);
71
OperandList
.push_back(Inst.Operands[i]);
74
OperandList
.back().Rec = OpR;
78
for (unsigned j = 0, e =
OperandList
.size(); j != e; ++j) {
79
Record *OpR =
OperandList
[j].Rec;
CodeGenInstruction.cpp
116
OperandList
.push_back(OperandInfo(Rec, ArgName, PrintMethod, EncoderMethod,
125
for (unsigned i = 0, e =
OperandList
.size(); i != e; ++i)
126
OperandList
[i].Constraints.resize(
OperandList
[i].MINumOperands);
146
for (unsigned i = 0, e =
OperandList
.size(); i != e; ++i)
147
if (
OperandList
[i].Name == Name) {
175
if (
OperandList
[OpIdx].MINumOperands > 1 && !AllowWholeOp &&
185
DagInit *MIOpInfo =
OperandList
[OpIdx].MIOperandInfo;
278
if (Op.second >=
OperandList
[Op.first].DoNotEncode.size())
279
OperandList
[Op.first].DoNotEncode.resize(Op.second+1)
[
all
...]
X86RecognizableInstr.cpp
226
Operands = &insn.Operands.
OperandList
;
463
const std::vector<CGIOperandList::OperandInfo> &
OperandList
= *Operands;
464
unsigned numOperands =
OperandList
.size();
467
const std::string &recName =
OperandList
[operandIndex].Rec->getName();
476
const std::vector<CGIOperandList::OperandInfo> &
OperandList
= *Operands;
477
unsigned numOperands =
OperandList
.size();
480
const std::string &recName =
OperandList
[operandIndex].Rec->getName();
542
const std::vector<CGIOperandList::OperandInfo> &
OperandList
= *Operands;
545
unsigned numOperands =
OperandList
.size();
548
// operandMapping maps from operands in
OperandList
to their originals
[
all
...]
/external/llvm/include/llvm/Bitcode/
BitCodes.h
163
SmallVector<BitCodeAbbrevOp, 8>
OperandList
;
173
return static_cast<unsigned>(
OperandList
.size());
176
return
OperandList
[N];
180
OperandList
.push_back(OpInfo);
/external/llvm/lib/VMCore/
User.cpp
61
Obj->
OperandList
= Start;
Constants.cpp
583
Use *OL =
OperandList
;
663
Use *OL =
OperandList
;
700
Use *OL =
OperandList
;
[
all
...]
Instructions.cpp
150
OperandList
= allocHungoffUses(ReservedSpace);
[
all
...]
/external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h
307
/// OperandsNeedDelete - This is true if
OperandList
was new[]'d. If true,
325
///
OperandList
- The values that are used by this operation.
327
SDUse *
OperandList
;
469
return (unsigned)(Op - Op->getUser()->
OperandList
);
534
return
OperandList
[Num];
538
op_iterator op_begin() const { return
OperandList
; }
539
op_iterator op_end() const { return
OperandList
+NumOperands; }
680
OperandList
(NumOps ? new SDUse[NumOps] : 0),
685
OperandList
[i].setUser(this);
686
OperandList
[i].setInitial(Ops[i])
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
589
delete[] N->
OperandList
;
[
all
...]
Completed in 361 milliseconds