Home
last modified time | relevance | path

Searched refs:Binary (Results 1 – 25 of 512) sorted by relevance

12345678910>>...21

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DPerfReader.cpp49 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 DProfileGenerator.cpp218 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 DPerfReader.h135 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 DProfileGenerator.h204 ProfiledBinary *Binary);
208 ProfiledBinary *Binary);
231 ProfiledBinary *Binary);
236 ProfiledBinary *Binary);
240 SmallVectorImpl<std::string> &ContextStrStack, ProfiledBinary *Binary);
250 ProfiledBinary *Binary);
H A DProfiledBinary.cpp89 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 DProfiledBinary.h49 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 DBinary.cpp35 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 Dllvm-lipo.cpp318 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 Dobj2yaml.cpp48 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 DWebAssemblyMCCodeEmitter.cpp64 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 DARMMCCodeEmitter.cpp1019 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 DBinary.h32 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 DMinidump.h23 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 DMachOUniversalWriter.h28 const Binary *B;
59 const Binary *getBinary() const { return B; } in getBinary()
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dbioinformatics39 # 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 Dpbf6 # 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 DFileAnalysis.h91 FileAnalysis(object::OwningBinary<object::Binary> Binary);
197 object::OwningBinary<object::Binary> Binary;
H A DFileAnalysis.cpp75 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 DRISCVMCCodeEmitter.cpp128 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 Dllvm-objcopy.cpp162 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 DVVPInstrInfo.td21 // Binary Operators {
32 // Binary operator commutative pattern.
46 // } Binary Operators
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc4522.txt13 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 DHexagonMCCodeEmitter.cpp404 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 DOperatorKinds.def36 /// 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 DMipsMCCodeEmitter.cpp183 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()

12345678910>>...21