| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/ |
| H A D | PerfReader.cpp | 49 if (Binary->usePseudoProbes()) { in unwindLinear() 65 bool SameInlinee = Binary->inlineContextEqual(PrevIP, IP.Address); in unwindLinear() 79 uint64_t CallAddr = Binary->getCallAddrFromFrameAddr(LBR.Target); in unwindReturn() 97 Binary->getExpandedContextStr(Stack, KeyStr->WasLeafInlined); in getContextKey() 128 uint64_t StartOffset = Binary->virtualAddrToOffset(std::get<0>(Item)); in collectSamplesFromFrame() 129 uint64_t EndOffset = Binary->virtualAddrToOffset(std::get<1>(Item)); in collectSamplesFromFrame() 134 uint64_t SourceOffset = Binary->virtualAddrToOffset(std::get<0>(Item)); in collectSamplesFromFrame() 135 uint64_t TargetOffset = Binary->virtualAddrToOffset(std::get<1>(Item)); in collectSamplesFromFrame() 165 if (Binary->usePseudoProbes()) { in collectSamplesFromFrameTrie() 166 ProbeStack Stack(Binary); in collectSamplesFromFrameTrie() [all …]
|
| H A D | ProfileGenerator.cpp | 218 ProfiledBinary *Binary = BI.first; in generateProfile() local 229 Binary); in generateProfile() 232 CI.second.BranchCounter, Binary); in generateProfile() 263 ProfiledBinary *Binary) { in populateFunctionBodySamples() argument 269 uint64_t RangeBegin = Binary->offsetToVirtualAddr(Range.first.first); in populateFunctionBodySamples() 270 uint64_t RangeEnd = Binary->offsetToVirtualAddr(Range.first.second); in populateFunctionBodySamples() 277 InstructionPointer IP(Binary, RangeBegin, true); in populateFunctionBodySamples() 286 uint64_t Offset = Binary->virtualAddrToOffset(IP.Address); in populateFunctionBodySamples() 287 auto LeafLoc = Binary->getInlineLeafFrameLoc(Offset); in populateFunctionBodySamples() 302 const BranchSample &BranchCounters, ProfiledBinary *Binary) { in populateFunctionBoundarySamples() argument [all …]
|
| H A D | PerfReader.h | 135 ProfiledBinary *Binary; member 149 if (Other->Binary != Binary) in isEqual() 178 Hash = HashCombine(Hash, reinterpret_cast<uint64_t>(Binary)); in genHashCode() 203 const ProfiledBinary *Binary; member 238 : Binary(Sample->Binary), LBRStack(Sample->LBRStack), in UnwindState() 239 InstPtr(Sample->Binary, Sample->CallStack.front()) { in UnwindState() 263 const ProfiledBinary *getBinary() const { return Binary; } in getBinary() 385 const ProfiledBinary *Binary; member 386 FrameStack(const ProfiledBinary *B) : Binary(B) {} in FrameStack() 401 const ProfiledBinary *Binary; member [all …]
|
| H A D | ProfileGenerator.h | 204 ProfiledBinary *Binary); 208 ProfiledBinary *Binary); 231 ProfiledBinary *Binary); 236 ProfiledBinary *Binary); 240 SmallVectorImpl<std::string> &ContextStrStack, ProfiledBinary *Binary); 250 ProfiledBinary *Binary);
|
| H A D | ProfiledBinary.cpp | 89 OwningBinary<Binary> OBinary = unwrapOrError(createBinary(Path), Path); in load() 90 Binary &Binary = *OBinary.getBinary(); in load() local 92 auto *Obj = dyn_cast<ELFObjectFileBase>(&Binary); in load() 425 assert(this == IP.Binary && in symbolize() 451 InstructionPointer::InstructionPointer(ProfiledBinary *Binary, uint64_t Address, in InstructionPointer() argument 453 : Binary(Binary), Address(Address) { in InstructionPointer() 454 Index = Binary->getIndexForAddr(Address); in InstructionPointer() 458 this->Address = Binary->getAddressforIndex(Index); in InstructionPointer() 464 Address = Binary->getAddressforIndex(Index); in advance() 469 Address = Binary->getAddressforIndex(Index); in backward() [all …]
|
| H A D | ProfiledBinary.h | 49 ProfiledBinary *Binary; member 58 InstructionPointer(ProfiledBinary *Binary, uint64_t Address, 72 ProfiledBinary *Binary; member 73 PrologEpilogTracker(ProfiledBinary *Bin) : Binary(Bin){}; in PrologEpilogTracker() 80 InstructionPointer IP(Binary, I.first); in inferPrologOffsets() 90 InstructionPointer IP(Binary, Addr); in inferEpilogOffsets()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | Binary.cpp | 35 Binary::~Binary() = default; 37 Binary::Binary(unsigned int Type, MemoryBufferRef Source) in Binary() function in Binary 40 StringRef Binary::getData() const { return Data.getBuffer(); } in getData() 42 StringRef Binary::getFileName() const { return Data.getBufferIdentifier(); } in getFileName() 44 MemoryBufferRef Binary::getMemoryBufferRef() const { return Data; } in getMemoryBufferRef() 46 Expected<std::unique_ptr<Binary>> object::createBinary(MemoryBufferRef Buffer, in createBinary() 97 Expected<OwningBinary<Binary>> 106 Expected<std::unique_ptr<Binary>> BinOrErr = in createBinary() 110 std::unique_ptr<Binary> &Bin = BinOrErr.get(); in createBinary() 112 return OwningBinary<Binary>(std::move(Bin), std::move(Buffer)); in createBinary()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/ |
| H A D | llvm-lipo.cpp | 318 static SmallVector<OwningBinary<Binary>, 1> 320 SmallVector<OwningBinary<Binary>, 1> InputBinaries; in readInputBinaries() 322 Expected<OwningBinary<Binary>> BinaryOrErr = in readInputBinaries() 326 const Binary *B = BinaryOrErr->getBinary(); in readInputBinaries() 354 static void verifyArch(ArrayRef<OwningBinary<Binary>> InputBinaries, in verifyArch() 383 static void printBinaryArchs(const Binary *Binary, raw_ostream &OS) { in printBinaryArchs() argument 385 if (auto UO = dyn_cast<MachOUniversalBinary>(Binary)) { in printBinaryArchs() 401 reportError(Binary->getFileName(), SliceOrErr.takeError()); in printBinaryArchs() 415 reportError(Binary->getFileName(), MachOObjOrError.takeError()); in printBinaryArchs() 416 reportError(Binary->getFileName(), IROrError.takeError()); in printBinaryArchs() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| H A D | obj2yaml.cpp | 48 Expected<std::unique_ptr<Binary>> BinOrErr = in dumpInput() 53 Binary &Binary = *BinOrErr->get(); in dumpInput() local 56 if (Binary.isMachO() || Binary.isMachOUniversalBinary()) in dumpInput() 57 return macho2yaml(outs(), Binary); in dumpInput() 58 if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary)) in dumpInput() 60 if (MinidumpFile *Minidump = dyn_cast<MinidumpFile>(&Binary)) in dumpInput()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| H A D | WebAssemblyMCCodeEmitter.cpp | 64 uint64_t Binary = getBinaryCodeForInstr(MI, Fixups, STI); in encodeInstruction() local 65 if (Binary < (1 << 8)) { in encodeInstruction() 66 OS << uint8_t(Binary); in encodeInstruction() 67 } else if (Binary < (1 << 16)) { in encodeInstruction() 68 OS << uint8_t(Binary >> 8); in encodeInstruction() 69 encodeULEB128(uint8_t(Binary), OS); in encodeInstruction() 70 } else if (Binary < (1 << 24)) { in encodeInstruction() 71 OS << uint8_t(Binary >> 16); in encodeInstruction() 72 encodeULEB128(uint16_t(Binary), OS); in encodeInstruction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMMCCodeEmitter.cpp | 1019 uint32_t Binary = Imm12 & 0xfff; in getAddrModeImm12OpValue() local 1022 Binary |= (1 << 12); in getAddrModeImm12OpValue() 1023 Binary |= (Reg << 13); in getAddrModeImm12OpValue() 1024 return Binary; in getAddrModeImm12OpValue() 1050 uint32_t Binary = Imm & ((1U << Bits) - 1); in getT2ScaledImmOpValue() local 1053 Binary |= (1U << Bits); in getT2ScaledImmOpValue() 1054 return Binary; in getT2ScaledImmOpValue() 1141 uint32_t Binary = (Imm8 >> 2) & 0xff; in getT2AddrModeImm8s4OpValue() local 1144 Binary |= (1 << 8); in getT2AddrModeImm8s4OpValue() 1145 Binary |= (Reg << 9); in getT2AddrModeImm8s4OpValue() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| H A D | Binary.h | 32 class Binary { 39 Binary(unsigned int Type, MemoryBufferRef Source); 90 Binary() = delete; 91 Binary(const Binary &other) = delete; 92 virtual ~Binary(); 178 DEFINE_ISA_CONVERSION_FUNCTIONS(Binary, LLVMBinaryRef) 183 Expected<std::unique_ptr<Binary>> createBinary(MemoryBufferRef Source, 235 Expected<OwningBinary<Binary>> createBinary(StringRef Path,
|
| H A D | Minidump.h | 23 class MinidumpFile : public Binary { 30 static bool classof(const Binary *B) { return B->isMinidump(); } in classof() 167 : Binary(ID_Minidump, Source), Header(Header), Streams(Streams), in MinidumpFile()
|
| H A D | MachOUniversalWriter.h | 28 const Binary *B; 59 const Binary *getBinary() const { return B; } in getBinary()
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | bioinformatics | 39 # BAM (Binary Sequence Alignment/Map format) 43 0 string BAM\1 SAMtools BAM (Binary Sequence Alignment/Map) 59 # CRAM (Binary Sequence Alignment/Map format) 68 # BCF (Binary Call Format), version 1 76 >>&(&-0x04) lelong >0 SAMtools BCF (Binary Call Format) 85 # BCF (Binary Call Format), version 2.1 89 0 string BCF\2\1 Binary Call Format (BCF) version 2.1 98 # BCF (Binary Call Format), version 2.2 102 0 string BCF\2\2 Binary Call Format (BCF) version 2.2
|
| H A D | pbf | 6 # OpenStreetMap Protocolbuffer Binary Format (.osm.pbf) 11 >>6 string OSMHeader OpenStreetMap Protocolbuffer Binary Format
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/lib/ |
| H A D | FileAnalysis.h | 91 FileAnalysis(object::OwningBinary<object::Binary> Binary); 197 object::OwningBinary<object::Binary> Binary;
|
| H A D | FileAnalysis.cpp | 75 Expected<object::OwningBinary<object::Binary>> BinaryOrErr = in Create() 81 object::OwningBinary<object::Binary> Binary = std::move(BinaryOrErr.get()); in Create() local 82 FileAnalysis Analysis(std::move(Binary)); in Create() 84 Analysis.Object = dyn_cast<object::ObjectFile>(Analysis.Binary.getBinary()); in Create() 114 FileAnalysis::FileAnalysis(object::OwningBinary<object::Binary> Binary) in FileAnalysis() argument 115 : Binary(std::move(Binary)) {} in FileAnalysis()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVMCCodeEmitter.cpp | 128 uint32_t Binary; in expandFunctionCall() local 138 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in expandFunctionCall() 139 support::endian::write(OS, Binary, support::little); in expandFunctionCall() 148 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in expandFunctionCall() 149 support::endian::write(OS, Binary, support::little); in expandFunctionCall() 186 uint32_t Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in expandAddTPRel() local 187 support::endian::write(OS, Binary, support::little); in expandAddTPRel()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ |
| H A D | llvm-objcopy.cpp | 162 case FileFormat::Binary: in executeObjcopyOnRawBinary() 178 object::Binary &In, raw_ostream &Out) { in executeObjcopyOnBinary() 228 Expected<std::unique_ptr<Binary>> ChildOrErr = Child.getAsBinary(); in createNewArchiveMembers() 333 OwningBinary<llvm::object::Binary> BinaryHolder; in executeObjcopy() 336 if (Config.InputFormat == FileFormat::Binary || in executeObjcopy() 344 if (Config.InputFormat == FileFormat::Binary) in executeObjcopy() 356 Expected<OwningBinary<llvm::object::Binary>> BinaryOrErr = in executeObjcopy()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/VE/ |
| H A D | VVPInstrInfo.td | 21 // Binary Operators { 32 // Binary operator commutative pattern. 46 // } Binary Operators
|
| /netbsd-src/external/bsd/openldap/dist/doc/rfc/ |
| H A D | rfc4522.txt | 13 The Binary Encoding Option 44 3. The Binary Option ...............................................2 45 4. Syntaxes Requiring Binary Transfer ..............................3 60 RFC 4522 LDAP: The Binary Encoding Option June 2006 104 3. The Binary Option 116 RFC 4522 LDAP: The Binary Encoding Option June 2006 148 4. Syntaxes Requiring Binary Transfer 172 RFC 4522 LDAP: The Binary Encoding Option June 2006 228 RFC 4522 LDAP: The Binary Encoding Option June 2006 284 RFC 4522 LDAP: The Binary Encoding Option June 2006 [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCCodeEmitter.cpp | 404 uint64_t Binary; in EncodeSingleInstruction() local 413 Binary = getBinaryCodeForInstr(MI, Fixups, STI); in EncodeSingleInstruction() 418 if (!Binary && Opc != DuplexIClass0 && Opc != A4_ext) { in EncodeSingleInstruction() 423 Binary |= Parse; in EncodeSingleInstruction() 433 Binary = ((DupIClass & 0xE) << (29 - 1)) | ((DupIClass & 0x1) << 13); in EncodeSingleInstruction() 445 Binary |= SubBits0 | (SubBits1 << 16); in EncodeSingleInstruction() 447 support::endian::write<uint32_t>(OS, Binary, support::little); in EncodeSingleInstruction() 608 ME->getKind() == MCExpr::Binary); in getExprOpValue() 609 if (ME->getKind() == MCExpr::Binary) { in getExprOpValue() 610 MCBinaryExpr const *Binary = cast<MCBinaryExpr>(ME); in getExprOpValue() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | OperatorKinds.def | 36 /// Binary: True if the operator can be declared as a binary 50 # define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) 54 # define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly) \ 55 OVERLOADED_OPERATOR(Name,Spelling,unknown,Unary,Binary,MemberOnly)
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/ |
| H A D | MipsMCCodeEmitter.cpp | 183 uint32_t Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in encodeInstruction() local 190 (Opcode != Mips::SLL_MM) && (Opcode != Mips::SLL_MMR6) && !Binary) in encodeInstruction() 212 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in encodeInstruction() 218 Binary = (Binary & 0xFFFFFC7F) | (RegPair << 7); in encodeInstruction() 229 emitInstruction(Binary, Size, STI, OS); in encodeInstruction() 582 unsigned Binary = (MO.getImm() >> 2) & 0x0000ffff; in getSImm9AddiuspValue() local 583 return (((Binary & 0x8000) >> 7) | (Binary & 0x00ff)); in getSImm9AddiuspValue() 602 if (Kind == MCExpr::Binary) { in getExprOpValue()
|