HomeSort by: relevance | last modified time | path
    Searched defs:Unit (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 141 Printable printRegUnit(unsigned Unit, const TargetRegisterInfo *TRI) {
142 return Printable([Unit, TRI](raw_ostream &OS) {
145 OS << "Unit~" << Unit;
150 if (Unit >= TRI->getNumRegUnits()) {
151 OS << "BadUnit~" << Unit;
156 MCRegUnitRootIterator Roots(Unit, TRI);
157 assert(Roots.isValid() && "Unit has no roots.");
164 Printable printVRegOrUnit(unsigned Unit, const TargetRegisterInfo *TRI) {
165 return Printable([Unit, TRI](raw_ostream &OS)
    [all...]
LiveRegMatrix.cpp 85 unsigned Unit = (*Units).first;
89 if (Func(Unit, S))
111 TRI, VirtReg, PhysReg, [&](unsigned Unit, const LiveRange &Range) {
112 LLVM_DEBUG(dbgs() << ' ' << printRegUnit(Unit, TRI) << ' ' << Range);
113 Matrix[Unit].unify(VirtReg, Range);
128 [&](unsigned Unit, const LiveRange &Range) {
129 LLVM_DEBUG(dbgs() << ' ' << printRegUnit(Unit, TRI));
130 Matrix[Unit].extract(VirtReg, Range);
139 for (MCRegUnitIterator Unit(PhysReg, TRI); Unit.isValid(); ++Unit)
    [all...]
MachineOutliner.cpp 703 DIFile *Unit = SP->getFile();
711 Unit /* Context */, F->getName(), StringRef(MangledNameStream.str()),
712 Unit /* File */,
LiveIntervals.cpp 159 for (unsigned Unit = 0, UnitE = RegUnitRanges.size(); Unit != UnitE; ++Unit)
160 if (LiveRange *LR = RegUnitRanges[Unit])
161 OS << printRegUnit(Unit, TRI) << ' ' << *LR << '\n';
265 // Register Unit Liveness
275 /// Compute the live range of a register unit, based on the uses and defs of
278 void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
282 // The physregs aliasing Unit are the roots and their super-registers.
285 // idempotent. It is very rare for a register unit to have multiple roots, s
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblySortRegion.h 44 const T *Unit;
47 ConcreteSortRegion(const T *Unit) : Unit(Unit) {}
48 MachineBasicBlock *getHeader() const override { return Unit->getHeader(); }
50 return Unit->contains(MBB);
52 unsigned getNumBlocks() const override { return Unit->getNumBlocks(); }
54 return Unit->blocks();
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTMerge.cpp 49 std::unique_ptr<ASTUnit> Unit = ASTUnit::LoadFromASTFile(
53 if (!Unit)
57 Unit->getASTContext(), Unit->getFileManager(),
60 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl();
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDefs.h 180 typedef Vector<uint8_t> Unit;
181 typedef Vector<Unit> UnitVector;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 198 const DIEUnit *Unit = getUnit();
199 assert(Unit && "DIE must be owned by a DIEUnit to get its absolute offset");
200 return Unit->getDebugSectionOffset() + getOffset();
284 // Set compile/type unit relative offset of this DIE.
307 // is needed so that top level DIE can help the compile unit set its length
323 "expected a unit TAG");
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
SourcePrinter.h 28 DWARFUnit *Unit;
32 DWARFUnit *Unit, const DWARFDie FuncDie)
33 : LocExpr(LocExpr), VarName(VarName), Unit(Unit), FuncDie(FuncDie) {}
  /src/sys/external/bsd/acpica/dist/compiler/
dtfield.c 690 * RETURN: a table unit
692 * DESCRIPTION: Create a table unit
702 DT_TABLE_UNIT *Unit = (DT_TABLE_UNIT *) UtFieldCacheCalloc ();
705 Unit->Value = Data;
706 Unit->Line = Line;
707 Unit->Column = Column;
708 return (Unit);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexHigh.cpp 245 ASTUnit &Unit;
250 FindFileMacroRefVisitData(ASTUnit &Unit, const FileEntry *File,
253 : Unit(Unit), File(File), Macro(Macro), visitor(visitor) { }
256 return Unit.getASTContext();
313 ASTUnit *Unit = cxtu::getASTUnit(TU);
314 SourceManager &SM = Unit->getSourceManager();
325 FindFileMacroRefVisitData data(*Unit, File, Macro, Visitor);
339 ASTUnit &Unit;
343 FindFileIncludesVisitor(ASTUnit &Unit, const FileEntry *File
    [all...]
Indexing.cpp 554 auto Unit = ASTUnit::create(CInvok, Diags, CaptureDiagnostics,
556 if (!Unit)
559 auto *UPtr = Unit.get();
561 new CXTUOwner(MakeCXTranslationUnit(CXXIdx, std::move(Unit))));
640 static void indexPreprocessingRecord(ASTUnit &Unit, CXIndexDataConsumer &IdxCtx) {
641 Preprocessor &PP = Unit.getPreprocessor();
647 bool isModuleFile = Unit.isModuleFile();
648 for (PreprocessedEntity *PPE : Unit.getLocalPreprocessingEntities()) {
653 if (isModuleFile && Unit.isInMainFileID(Loc))
688 ASTUnit *Unit = cxtu::getASTUnit(TU)
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark_register.cc 267 Benchmark* Benchmark::Unit(TimeUnit unit) {
268 time_unit_ = unit;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFFormValue.h 74 static DWARFFormValue createFromUnit(dwarf::Form F, const DWARFUnit *Unit,
93 /// \p Context and \p Unit allows extracting information if the form refers
98 const DWARFUnit *Unit = nullptr);
113 DWARFUnit *Unit;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
RustDemangle.h 50 Unit,
  /src/external/apache2/llvm/dist/llvm/lib/MCA/HardwareUnits/
ResourceManager.cpp 148 uint64_t Unit = Mask & (-Mask);
149 unsigned IndexUnit = getResourceStateIndex(Unit);
151 Mask ^= Unit;
184 // resource unit.
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCVSXFMAMutate.cpp 321 unsigned Unit = *Units;
323 LiveRange &AddendSrcRange = LIS->getRegUnit(Unit);
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
benchmark_register.cc 262 Benchmark* Benchmark::Unit(TimeUnit unit) {
263 time_unit_ = unit;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.h 110 llvm::DIFile *Unit;
112 llvm::DIFile *Unit)
113 : Type(Type), Decl(Decl), Unit(Unit) {}
201 llvm::DIType *CreateType(const ObjCTypeParamType *Ty, llvm::DIFile *Unit);
207 llvm::DIType *CreateType(const RValueReferenceType *Ty, llvm::DIFile *Unit);
234 llvm::DIFile *Unit, bool decl);
269 const CXXRecordDecl *RD, llvm::DIFile *Unit,
278 llvm::DIFile *Unit);
282 llvm::DIFile *Unit);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CrossTU/
CrossTranslationUnit.cpp 256 "D has a body or init in current translation unit!");
266 ASTUnit *Unit = *ASTUnitOrError;
267 assert(&Unit->getFileManager() ==
268 &Unit->getASTContext().getSourceManager().getFileManager());
272 Unit->getASTContext().getTargetInfo().getTriple();
282 std::string(Unit->getMainFileName()),
287 const auto &LangFrom = Unit->getASTContext().getLangOpts();
307 // since in one translation unit the class template has a base class, however
308 // in the other unit it has none.
318 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl()
    [all...]
  /src/external/gpl3/gcc/dist/libdecnumber/
decNumberLocal.h 93 #define Unit decNumberUnit
274 /* decNumber struct) safely. Note that one Unit is included in the */
278 ((((SD2U(d)-1)*sizeof(Unit))+sizeof(decNumber)*2-1)/sizeof(decNumber))
  /src/external/gpl3/gcc.old/dist/libdecnumber/
decNumberLocal.h 93 #define Unit decNumberUnit
274 /* decNumber struct) safely. Note that one Unit is included in the */
278 ((((SD2U(d)-1)*sizeof(Unit))+sizeof(decNumber)*2-1)/sizeof(decNumber))
  /src/external/gpl3/gdb/dist/libdecnumber/
decNumberLocal.h 93 #define Unit decNumberUnit
274 /* decNumber struct) safely. Note that one Unit is included in the */
278 ((((SD2U(d)-1)*sizeof(Unit))+sizeof(decNumber)*2-1)/sizeof(decNumber))
  /src/external/gpl3/gdb.old/dist/libdecnumber/
decNumberLocal.h 93 #define Unit decNumberUnit
274 /* decNumber struct) safely. Note that one Unit is included in the */
278 ((((SD2U(d)-1)*sizeof(Unit))+sizeof(decNumber)*2-1)/sizeof(decNumber))
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 109 struct Unit {
225 std::vector<Unit> CompileUnits;
258 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::Unit)
322 template <> struct MappingTraits<DWARFYAML::Unit> {
323 static void mapping(IO &IO, DWARFYAML::Unit &Unit);

Completed in 39 milliseconds

1 2