HomeSort by relevance Sort by last modified time
    Searched refs:OperandMap (Results 1 - 2 of 2) sorted by null

  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 38 IndexedMap<OpData> OperandMap;
42 Source(s), Dest(d), OperandMap(m) {}
56 IndexedMap<OpData> &OperandMap,
74 IndexedMap<OpData> &OperandMap, unsigned BaseIdx) {
82 OperandMap[BaseIdx + i].Kind = OpData::Reg;
83 OperandMap[BaseIdx + i].Data.Reg = DI->getDef();
101 OperandMap[BaseIdx + i + I].Kind = OpData::Operand;
104 OperandMap[BaseIdx + i].Kind = OpData::Imm;
105 OperandMap[BaseIdx + i].Data.Imm = II->getValue();
111 addDagOperandMapping(Rec, SubDag, Insn, OperandMap, BaseIdx + i)
    [all...]
InstrInfoEmitter.cpp 64 OpNameMapTy &OperandMap);
198 /// \param OperandMap [out] A map for representing the operand name mappings for
199 /// each instructions. This is used to generate the OperandMap table as
205 OpNameMapTy &OperandMap) {
224 OperandMap[OpList].push_back(Namespace + "::" + Inst->TheDef->getName());
234 /// - A 2-dimensional table called OperandMap for mapping OpName enum values to
248 OpNameMapTy OperandMap;
250 initOperandMapData(NumberedInstructions, Namespace, Operands, OperandMap);
274 OS << " static const int16_t OperandMap [][" << Operands.size()
276 for (OpNameMapTy::iterator i = OperandMap.begin(), e = OperandMap.end()
    [all...]

Completed in 28 milliseconds