HomeSort by relevance Sort by last modified time
    Searched defs:ValueVTs (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 170 SmallVector<EVT, 4> ValueVTs;
171 ComputeValueVTs(*TLI, PN->getType(), ValueVTs);
172 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
173 EVT VT = ValueVTs[vti];
226 SmallVector<EVT, 4> ValueVTs;
227 ComputeValueVTs(*TLI, Ty, ValueVTs);
230 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
231 EVT ValueVT = ValueVTs[Value];
275 SmallVector<EVT, 1> ValueVTs;
276 ComputeValueVTs(*TLI, Ty, ValueVTs);
    [all...]
LegalizeIntegerTypes.cpp 434 EVT ValueVTs[] = { N->getValueType(0), NVT };
437 DAG.getVTList(ValueVTs, 2), Ops, 2);
    [all...]
SelectionDAGBuilder.cpp 586 /// ValueVTs - The value types of the values, which may not be legal, and
589 SmallVector<EVT, 4> ValueVTs;
592 /// ValueVTs and it records, for each value, what the type of the assigned
612 : ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
616 ComputeValueVTs(tli, Ty, ValueVTs);
618 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
619 EVT ValueVT = ValueVTs[Value];
631 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
641 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end())
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]

Completed in 1055 milliseconds