| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | MachineOperand.h | 200 } Contents; variable 207 static_assert(sizeof(Contents) <= 2 * sizeof(void *), in MachineOperand() 539 return Contents.ImmVal; in getImm() 544 return Contents.CI; in getCImm() 549 return Contents.CFP; in getFPImm() 554 return Contents.MBB; in getMBB() 560 return Contents.OffsetedInfo.Val.Index; in getIndex() 565 return Contents.OffsetedInfo.Val.GV; in getGlobal() 570 return Contents.OffsetedInfo.Val.BA; in getBlockAddress() 575 return Contents.Sym; in getMCSymbol() [all …]
|
| H A D | ScheduleDAG.h | 91 } Contents; variable 105 : Dep(S, kind), Contents() { in SDep() 113 Contents.Reg = Reg; in SDep() 117 Contents.Reg = Reg; in SDep() 124 : Dep(S, Order), Contents(), Latency(0) { in SDep() 125 Contents.OrdKind = kind; in SDep() 169 return getKind() == Order && (Contents.OrdKind == MayAliasMem in isNormalMemory() 170 || Contents.OrdKind == MustAliasMem); in isNormalMemory() 175 return getKind() == Order && Contents.OrdKind == Barrier; in isBarrier() 187 return getKind() == Order && Contents.OrdKind == MustAliasMem; in isMustAlias() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AccelTable.cpp | 95 const AccelTableBase &Contents; ///< Data to emit. member in __anon66e006530311::AccelTableWriter 109 AccelTableWriter(AsmPrinter *Asm, const AccelTableBase &Contents, in AccelTableWriter() argument 111 : Asm(Asm), Contents(Contents), SkipIdenticalHashes(SkipIdenticalHashes) { in AccelTableWriter() 168 AppleAccelTableWriter(AsmPrinter *Asm, const AccelTableBase &Contents, in AppleAccelTableWriter() argument 170 : AccelTableWriter(Asm, Contents, true), in AppleAccelTableWriter() 171 Header(Contents.getBucketCount(), Contents.getUniqueHashCount(), in AppleAccelTableWriter() 238 AsmPrinter *Asm, const AccelTableBase &Contents, 249 for (auto &Bucket : Contents.getBuckets()) { in emitHashes() 263 const auto &Buckets = Contents.getBuckets(); in emitOffsets() 307 const auto &Buckets = Contents.getBuckets(); in emitBuckets() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugSubsectionRecord.cpp | 57 const DebugSubsectionRecord &Contents) in DebugSubsectionRecordBuilder() argument 58 : Contents(Contents) {} in DebugSubsectionRecordBuilder() 62 : Contents.getRecordData().getLength(); in calculateSerializedLength() 74 Header.Kind = uint32_t(Subsection ? Subsection->kind() : Contents.kind()); in commit() 78 : Contents.getRecordData().getLength(); in commit() 87 if (auto EC = Writer.writeStreamRef(Contents.getRecordData())) in commit()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | csv.d | 312 auto csvReader(Contents = string,Malformed ErrorLevel = Malformed.throwException, Range, Separator … 316 && !is(Contents T : T[U], U : string)) 318 return CsvReader!(Contents,ErrorLevel,Range, 397 auto csvReader(Contents = string, 407 return CsvReader!(Contents,ErrorLevel,Range, 413 auto csvReader(Contents = string, 422 return CsvReader!(Contents,ErrorLevel,Range, 785 private struct CsvReader(Contents, Malformed ErrorLevel, Range, Separator, Header) 796 static if (is(Contents == struct) || is(Contents == class)) 798 Contents recordContent; [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVELFStreamer.h | 29 SmallVector<AttributeItem, 64> Contents; variable 34 for (size_t i = 0; i < Contents.size(); ++i) in getAttributeItem() 35 if (Contents[i].Tag == Attribute) in getAttributeItem() 36 return &Contents[i]; in getAttributeItem() 52 Contents.push_back({AttributeType::Numeric, Attribute, Value, ""}); in setAttributeItem() 67 Contents.push_back({AttributeType::Text, Attribute, 0, std::string(Value)}); in setAttributeItem() 83 Contents.push_back({AttributeType::NumericAndText, Attribute, IntValue, in setAttributeItems()
|
| H A D | RISCVELFStreamer.cpp | 93 if (Contents.empty()) in finishAttributeSection() 124 for (AttributeItem item : Contents) { in finishAttributeSection() 144 Contents.clear(); in finishAttributeSection() 149 for (AttributeItem item : Contents) { in calculateContentSize()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | csv.d | 340 auto csvReader(Contents = string,Malformed ErrorLevel = Malformed.throwException, Range, Separator … 345 && !is(Contents T : T[U], U : string)) 347 return CsvReader!(Contents,ErrorLevel,Range, 353 auto csvReader(Contents = string, 364 return CsvReader!(Contents,ErrorLevel,Range, 370 auto csvReader(Contents = string, 380 return CsvReader!(Contents,ErrorLevel,Range, 899 private struct CsvReader(Contents, Malformed ErrorLevel, Range, Separator, Header) 911 static if (is(Contents == struct) || is(Contents == class)) 913 Contents recordContent; [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MachineRegisterInfo.cpp | 276 MO->Contents.Reg.Prev = MO; in addRegOperandToUseList() 277 MO->Contents.Reg.Next = nullptr; in addRegOperandToUseList() 284 MachineOperand *Last = Head->Contents.Reg.Prev; in addRegOperandToUseList() 287 Head->Contents.Reg.Prev = MO; in addRegOperandToUseList() 288 MO->Contents.Reg.Prev = Last; in addRegOperandToUseList() 294 MO->Contents.Reg.Next = Head; in addRegOperandToUseList() 298 MO->Contents.Reg.Next = nullptr; in addRegOperandToUseList() 299 Last->Contents.Reg.Next = MO; in addRegOperandToUseList() 311 MachineOperand *Next = MO->Contents.Reg.Next; in removeRegOperandFromUseList() 312 MachineOperand *Prev = MO->Contents.Reg.Prev; in removeRegOperandFromUseList() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/ |
| H A D | DependencyScanningFilesystem.cpp | 46 Result.Contents.reserve(Buffer->getBufferSize() + 1); in createFileEntry() 47 Result.Contents.append(Buffer->getBufferStart(), Buffer->getBufferEnd()); in createFileEntry() 49 Result.Contents.push_back('\0'); in createFileEntry() 50 Result.Contents.pop_back(); in createFileEntry() 68 Result.Contents = std::move(MinimizedFileContents); in createFileEntry() 71 Result.Contents.pop_back(); in createFileEntry() 247 llvm::ErrorOr<StringRef> Contents = Entry->getContents(); in create() local 248 if (!Contents) in create() 249 return Contents.getError(); in create() 251 llvm::MemoryBuffer::getMemBuffer(*Contents, Entry->getName(), in create()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/ |
| H A D | WasmObjcopy.cpp | 27 ArrayRef<uint8_t> Contents = Sec.Contents; in dumpSectionToFile() local 29 FileOutputBuffer::create(Filename, Contents.size()); in dumpSectionToFile() 33 std::copy(Contents.begin(), Contents.end(), Buf->getBufferStart()); in dumpSectionToFile() 69 Sec.Contents = makeArrayRef<uint8_t>( in handleArgs()
|
| H A D | Writer.cpp | 29 SectionSize = S.Contents.size(); in createSectionHeader() 70 Out.write(reinterpret_cast<const char *>(Obj.Sections[I].Contents.data()), in write() 71 Obj.Sections[I].Contents.size()); in write()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
| H A D | Win64EHDumper.cpp | 339 ArrayRef<uint8_t> Contents; in printRuntimeFunction() local 340 if (Error E = Ctx.COFF.getSectionContents(XData, Contents)) in printRuntimeFunction() 343 if (Contents.empty()) in printRuntimeFunction() 346 if (Offset > Contents.size()) in printRuntimeFunction() 349 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); in printRuntimeFunction() 365 ArrayRef<uint8_t> Contents; in printData() local 367 if (Error E = Ctx.COFF.getSectionContents(PData, Contents)) in printData() 369 if (Contents.empty()) in printData() 373 reinterpret_cast<const RuntimeFunction *>(Contents.data()); in printData() 374 const size_t Count = Contents.size() / sizeof(RuntimeFunction); in printData()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
| H A D | MCFragment.cpp | 384 const SmallVectorImpl<char> &Contents = DF->getContents(); in dump() local 385 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { in dump() 387 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump() 389 OS << "] (" << Contents.size() << " bytes)"; in dump() 408 const SmallVectorImpl<char> &Contents = CEIF->getContents(); in dump() local 409 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { in dump() 411 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump() 413 OS << "] (" << Contents.size() << " bytes)"; in dump()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/XRay/ |
| H A D | InstrumentationMap.cpp | 71 StringRef Contents = ""; in loadObj() local 90 Contents = *E; in loadObj() 147 auto C = Contents.bytes_begin(); in loadObj() 151 if ((C - Contents.bytes_end()) % ELFSledEntrySize != 0) in loadObj() 159 uint64_t A = I->getAddress() + C - Contents.bytes_begin() + Offset; in loadObj() 170 for (; C != Contents.bytes_end(); C += ELFSledEntrySize) { in loadObj() 200 Entry.Address += C - Contents.bytes_begin() + Address; in loadObj() 201 Entry.Function += C - Contents.bytes_begin() + WordSize + Address; in loadObj()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | IRObjectFile.cpp | 77 Expected<StringRef> Contents = Sec.getContents(); in findBitcodeInObject() local 78 if (!Contents) in findBitcodeInObject() 79 return Contents.takeError(); in findBitcodeInObject() 80 if (Contents->size() <= 1) in findBitcodeInObject() 82 return MemoryBufferRef(*Contents, Obj.getFileName()); in findBitcodeInObject()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| H A D | MCFragment.h | 188 SmallVector<char, ContentsSize> Contents; variable 197 SmallVectorImpl<char> &getContents() { return Contents; } in getContents() 198 const SmallVectorImpl<char> &getContents() const { return Contents; } in getContents() 422 SmallString<8> Contents; variable 427 Contents.push_back(0); in MCFragment() 434 SmallString<8> &getContents() { return Contents; } in getContents() 435 const SmallString<8> &getContents() const { return Contents; } in getContents() 509 SmallString<8> Contents; variable 527 SmallString<8> &getContents() { return Contents; } in getContents() 528 const SmallString<8> &getContents() const { return Contents; } in getContents()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | JSON.h | 910 void array(Block Contents) { in array() argument 912 Contents(); in array() 916 void object(Block Contents) { in object() argument 918 Contents(); in object() 924 void rawValue(llvm::function_ref<void(raw_ostream &)> Contents) { in rawValue() argument 926 Contents(OS); in rawValue() 929 void rawValue(llvm::StringRef Contents) { in rawValue() argument 930 rawValue([&](raw_ostream &OS) { OS << Contents; }); in rawValue() 941 void attribute(llvm::StringRef Key, const Value& Contents) { in attribute() argument 942 attributeImpl(Key, [&] { value(Contents); }); in attribute() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-strings/ |
| H A D | llvm-strings.cpp | 60 static void strings(raw_ostream &OS, StringRef FileName, StringRef Contents) { in strings() argument 82 const char *B = Contents.begin(); in strings() 84 for (P = Contents.begin(), E = Contents.end(); P < E; ++P) { in strings()
|
| /netbsd-src/external/bsd/pkg_install/dist/create/ |
| H A D | perform.c | 52 if (!Contents) in sanity_check() 161 if (IS_STDIN(Contents)) in pkg_perform() 164 pkg_in = fopen(Contents, "r"); in pkg_perform() 166 errx(2, "unable to open contents file '%s' for input", Contents); in pkg_perform()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/ |
| H A D | COFFObjcopy.cpp | 60 static void addSection(Object &Obj, StringRef Name, ArrayRef<uint8_t> Contents, in addSection() argument 66 Sec.setOwnedContents(Contents); in addSection() 85 Expected<std::vector<uint8_t>> Contents = in addGnuDebugLink() local 87 if (!Contents) in addGnuDebugLink() 88 return Contents.takeError(); in addGnuDebugLink() 90 addSection(Obj, ".gnu_debuglink", *Contents, in addGnuDebugLink()
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/ |
| H A D | Guide | 9 3. Read Docs/Contents for a full list of scripts. 21 2. Check the Table of Contents below to become famaliar with the 24 4. Read Docs/Contents for a list of scripts. 40 Table of Contents 49 Contents Command list for the Toolkit
|
| H A D | README | 9 3. Read Docs/Contents for a full list of scripts. 21 2. Check the Table of Contents below to become famaliar with the 24 4. Read Docs/Contents for a list of scripts. 40 Table of Contents 49 Contents Command list for the Toolkit
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/build/ |
| H A D | mac_sdk.gni | 23 …mac_sdk_path = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDK… 24 …ios_sdk_path = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/S… 25 …iossim_sdk_path = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D…
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/ |
| H A D | llvm-dwp.cpp | 521 StringRef &Name, StringRef &Contents) { in handleCompressedSection() argument 526 Decompressor::create(Name, Contents, false /*IsLE*/, false /*Is64Bit*/); in handleCompressedSection() 535 Contents = UncompressedSections.back(); in handleCompressedSection() 564 StringRef Contents = *ContentsOrErr; in handleSection() local 566 if (auto Err = handleCompressedSection(UncompressedSections, Name, Contents)) in handleSection() 580 (CurEntry.Contributions[Index].Length = Contents.size()); in handleSection() 585 InfoSection = Contents; in handleSection() 588 AbbrevSection = Contents; in handleSection() 597 CurStrOffsetSection = Contents; in handleSection() 599 CurStrSection = Contents; in handleSection() [all …]
|