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

  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 39 IndexedMap<OpData> OperandMap;
43 Source(s), Dest(d), OperandMap(m) {}
57 IndexedMap<OpData> &OperandMap,
75 IndexedMap<OpData> &OperandMap, unsigned BaseIdx) {
83 OperandMap[BaseIdx + i].Kind = OpData::Reg;
84 OperandMap[BaseIdx + i].Data.Reg = DI->getDef();
102 OperandMap[BaseIdx + i + I].Kind = OpData::Operand;
105 OperandMap[BaseIdx + i].Kind = OpData::Imm;
106 OperandMap[BaseIdx + i].Data.Imm = II->getValue();
112 addDagOperandMapping(Rec, SubDag, Insn, OperandMap, BaseIdx + i)
    [all...]
InstrInfoEmitter.cpp 65 OpNameMapTy &OperandMap);
197 /// \param OperandMap [out] A map for representing the operand name mappings for
198 /// each instructions. This is used to generate the OperandMap table as
204 OpNameMapTy &OperandMap) {
220 OperandMap[OpList].push_back(Namespace + "::" + Inst->TheDef->getName());
230 /// - A 2-dimensional table called OperandMap for mapping OpName enum values to
244 OpNameMapTy OperandMap;
246 initOperandMapData(NumberedInstructions, Namespace, Operands, OperandMap);
271 OS << " static const int16_t OperandMap [][" << Operands.size()
273 for (const auto &Entry : OperandMap) {
    [all...]
  /external/v8/test/cctest/compiler/
test-gap-resolver.cc 61 typedef std::map<Key, Value> OperandMap;
64 OperandMap::const_iterator it = values_.find(KeyFor(op));
113 for (OperandMap::const_iterator it = is.values_.begin();
127 OperandMap values_;
  /external/v8/src/compiler/
register-allocator-verifier.cc 302 class OperandMap : public ZoneObject {
342 explicit OperandMap(Zone* zone) : map_(zone) {}
492 DISALLOW_COPY_AND_ASSIGN(OperandMap);
521 OperandMap* InitializeIncoming(size_t block_index, bool initial_pass) {
599 OperandMap* InitializeFromFirstPredecessor(size_t block_index) {
612 it.second = new (zone()) OperandMap::MapValue();
620 OperandMap* InitializeFromIntersection(size_t block_index) {
629 incoming_maps_.push_back(new (zone()) OperandMap(zone()));
630 outgoing_maps_.push_back(new (zone()) OperandMap(zone()));
656 typedef ZoneVector<OperandMap*> OperandMaps
    [all...]

Completed in 236 milliseconds