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

  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 33 RecordKeeper &Records;
37 AsmWriterEmitter(RecordKeeper &R) : Records(R) {}
277 CodeGenTarget Target(Records);
594 CodeGenTarget Target(Records);
771 CodeGenTarget Target(Records);
784 Records.getAllDerivedDefinitions("InstAlias");
    [all...]
CallingConvEmitter.cpp 24 RecordKeeper &Records;
26 explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {}
39 std::vector<Record*> CCs = Records.getAllDerivedDefinitions("CallingConv");
CTagsEmitter.cpp 51 RecordKeeper &Records;
53 CTagsEmitter(RecordKeeper &R) : Records(R) {}
73 const std::map<std::string, Record *> &Classes = Records.getClasses();
74 const std::map<std::string, Record *> &Defs = Records.getDefs();
TableGen.cpp 50 cl::values(clEnumValN(PrintRecords, "print-records",
51 "Print all records to stdout (default)"),
94 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
97 OS << Records; // No argument, dump all contents
100 EmitCodeEmitter(Records, OS);
103 EmitRegisterInfo(Records, OS);
106 EmitInstrInfo(Records, OS);
109 EmitCallingConv(Records, OS);
112 EmitAsmWriter(Records, OS);
115 EmitAsmMatcher(Records, OS)
    [all...]
PseudoLoweringEmitter.cpp 45 RecordKeeper &Records;
61 PseudoLoweringEmitter(RecordKeeper &R) : Records(R), Target(R) {}
270 Record *ExpansionClass = Records.getClass("PseudoInstExpansion");
271 Record *InstructionClass = Records.getClass("Instruction");
277 Records.getDefs().begin(), E = Records.getDefs().end(); I != E; ++I) {
CodeEmitterGen.cpp 38 RecordKeeper &Records;
40 CodeEmitterGen(RecordKeeper &R) : Records(R) {}
237 CodeGenTarget Target(Records);
238 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
CodeGenSchedule.h 69 // Read records don't currently have sequences, but it can be easily
115 /// 3) An implied class with a list of InstRW records that map instructions to
118 /// provided InstrRW records for this class. ItinClassDef or Writes/Reads may
139 // InstRW records associated with this class. These records may refer to an
171 // records.
173 // ItinDefList orders this processor's InstrItinData records by SchedClass idx.
182 // Array of InstrItinData records indexed by a CodeGenSchedClass index.
220 RecordKeeper &Records;
244 // combination of it's itinerary class, SchedRW list, and InstRW records
    [all...]
CodeGenTarget.h 65 RecordKeeper &Records;
80 CodeGenTarget(RecordKeeper &Records);
DFAPacketizerEmitter.cpp 41 RecordKeeper &Records;
267 allInsnClasses(), Records(R) {}
359 Records.getAllDerivedDefinitions("ProcessorItineraries");
413 Records.getAllDerivedDefinitions("ProcessorItineraries");
430 Records.getAllDerivedDefinitions("InstrItinClass").size();
InstrInfoEmitter.cpp 33 RecordKeeper &Records;
39 Records(R), CDP(R), SchedModels(CDP.getTargetInfo().getSchedModels()) {}
318 // run - Emit the main instruction description records for the target...
356 // Emit all of the operand info records.
359 // Emit all of the MCInstrDesc records in their ENUM ordering.
528 CodeGenTarget Target(Records);
SetTheory.cpp 11 // Records from DAG expressions.
166 // (sequence "Format", From, To) Generate a sequence of records by name.
202 RecordKeeper &Records =
214 Record *Rec = Records.getDef(OS.str());
IntrinsicEmitter.cpp 27 RecordKeeper &Records;
33 : Records(R), TargetOnly(T) {}
69 std::vector<CodeGenIntrinsic> Ints = LoadIntrinsics(Records, TargetOnly);
RegisterInfoEmitter.cpp 34 RecordKeeper &Records;
36 RegisterInfoEmitter(RecordKeeper &R) : Records(R) {}
    [all...]
SubtargetEmitter.cpp 61 RecordKeeper &Records;
104 Records(R), SchedModels(TGT.getSchedModels()), Target(TGT.getName()) {}
117 // Get all records of class and sort
118 std::vector<Record*> DefList = Records.getAllDerivedDefinitions(ClassName);
177 Records.getAllDerivedDefinitions("SubtargetFeature");
241 Records.getAllDerivedDefinitions("Processor");
    [all...]
AsmMatcherEmitter.cpp 129 RecordKeeper &Records;
131 AsmMatcherEmitter(RecordKeeper &R) : Records(R) {}
187 /// For register classes, the records for all the registers in this class.
593 /// Tracked Records
594 RecordKeeper &Records;
611 /// Map of Register records to their class information.
615 /// Map of Predicate records to their subtarget information.
618 /// Map of AsmOperandClass records to their class information.
625 /// Map of RegisterClass records to their class information.
653 RecordKeeper &Records);
    [all...]
  /external/chromium/chrome/browser/sync/util/
extensions_activity_monitor.h 44 typedef std::map<std::string, Record> Records;
51 // Fills |buffer| with snapshot of current records in constant time by
53 void GetAndClearRecords(Records* buffer);
55 // Add |records| piece-wise (by extension id) to the set of active records.
57 void PutRecords(const Records& records);
64 Records records_;
  /external/chromium_org/sync/util/
extensions_activity.h 38 typedef std::map<std::string, Record> Records;
42 // Fill |buffer| with all current records and then clear the
43 // internal records. Called on sync thread to append records to sync commit
45 void GetAndClearRecords(Records* buffer);
47 // Merge |records| with the current set of records. Called on sync thread to
48 // put back records if sync commit failed.
49 void PutRecords(const Records& records);
    [all...]
  /external/llvm/lib/TableGen/
Main.cpp 81 RecordKeeper Records;
100 TGParser Parser(SrcMgr, Records);
117 if (MainFn(Out.os(), Records))
TGParser.h 70 RecordKeeper &Records;
85 TGParser(SourceMgr &SrcMgr, RecordKeeper &records) :
86 Lex(SrcMgr), CurMultiClass(0), Records(records) {}
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 31 RecordKeeper &Records;
58 : Records(R), Root(N, SMLoc(), R), BaseSuffix(S)
156 = Records.getAllDerivedDefinitions(Root.getName());
185 void EmitClangDeclContext(RecordKeeper &Records, raw_ostream &OS) {
202 = Records.getAllDerivedDefinitions("DeclContext");
203 RecordVector Decls = Records.getAllDerivedDefinitions("Decl");
ClangDiagnosticsEmitter.cpp 41 RecordKeeper &Records;
44 DiagGroupParentMap(RecordKeeper &records) : Records(records) {
46 = Records.getAllDerivedDefinitions("DiagGroup");
96 RecordKeeper &Records;
100 DiagCategoryIDMap(RecordKeeper &records) : Records(records) {
101 DiagGroupParentMap ParentInfo(Records);
    [all...]
NeonEmitter.cpp 149 RecordKeeper &Records;
154 NeonEmitter(RecordKeeper &R) : Records(R) {
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_NdefReg.h 75 * \ref PH_FRINFC_NDEFREG_MAX_RTD is the maximum number of Records that can
102 * - This library gets a NDEF message and extracts the records using the NDEF Record (Tools) Library.
103 * - Alternatively, this component can process pre-extracted NDEF records.
104 * - This library only handles TOP level records, cascaded content is ignored.
131 * The records that matched with the registred RTDs for this callback.
132 * The number of records here will be equal to the first parameter Count.
134 phFriNfc_NdefRecord_t Records[PH_FRINFC_NDEFREG_MAX_RTD];
255 won't parse correctly chunked records */
405 * The entry point for NDEF \b RECORDS retrieved from the Peer (Remote) Device:
  /external/clang/lib/Sema/
SemaAccess.cpp 108 Records.push_back(Record->getCanonicalDecl());
129 return std::find(Records.begin(), Records.end(), R)
130 != Records.end();
143 SmallVector<CXXRecordDecl*, 4> Records;
416 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
450 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
751 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I)
    [all...]

Completed in 547 milliseconds