Searched refs:SectionID (Results 26 - 34 of 34) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DExecutionEngine.h160 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID,
163 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DSectionMemoryManager.cpp23 unsigned SectionID,
35 unsigned SectionID,
21 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h68 unsigned SectionID,
71 ClientMM->allocateCodeSection(Size, Alignment, SectionID,
78 unsigned SectionID, StringRef SectionName,
80 uint8_t *Addr = ClientMM->allocateDataSection(Size, Alignment, SectionID,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h256 /// \param[in] SectionID
262 unsigned SectionID,
273 /// \param[in] SectionID
282 unsigned SectionID,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp584 uintptr_t Size, unsigned Alignment, unsigned SectionID,
589 Size, Alignment, SectionID, SectionName);
595 Alignment, SectionID, SectionName.str().c_str()));
599 ", Alignment=%u, SectionID=%u) = %p",
600 (uint64_t)Size, Alignment, SectionID, (void *)return_value);
614 uintptr_t Size, unsigned Alignment, unsigned SectionID,
619 Size, Alignment, SectionID, SectionName, IsReadOnly);
627 Alignment, SectionID, SectionName.str().c_str()));
630 ", Alignment=%u, SectionID=%u) = %p",
631 (uint64_t)Size, Alignment, SectionID, (voi
583 allocateCodeSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, llvm::StringRef SectionName) argument
613 allocateDataSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, llvm::StringRef SectionName, bool IsReadOnly) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h162 MBBSectionID SectionID{0};
466 MBBSectionID getSectionID() const { return SectionID; }
471 ((unsigned)SectionID.Type) + SectionID.Number;
475 void setSectionID(MBBSectionID V) { SectionID = V; }
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp86 if (SectionID == MBBSectionID::ColdSectionID) {
88 } else if (SectionID == MBBSectionID::ExceptionSectionID) {
91 Suffix += "." + std::to_string(SectionID.Number);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetClient.h75 unsigned SectionID,
87 unsigned SectionID, StringRef SectionName,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp657 Optional<MBBSectionID> SectionID; local
687 if (parseSectionID(SectionID))
720 if (SectionID.hasValue()) {
721 MBB->setSectionID(SectionID.getValue());

Completed in 182 milliseconds

12