Home
last modified time | relevance | path

Searched refs:Bundle (Results 1 – 25 of 50) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DClangOffloadBundler.rst47 Number Of Bundle Entries integer 8 Number of bundle entries.
48 1st Bundle Entry Code Object Offset integer 8 Byte offset from beginning of
51 1st Bundle Entry Code Object Size integer 8 Byte size of 1st code object.
52 1st Bundle Entry ID Length integer 8 Character length of bundle
54 1st Bundle Entry ID string 1st Bundle Entry Bundle entry ID of 1st code
59 Nth Bundle Entry Code Object Offset integer 8
60 Nth Bundle Entry Code Object Size integer 8
61 Nth Bundle Entry ID Length integer 8
62 Nth Bundle Entry ID string 1st Bundle Entry
64 1st Bundle Entry Code Object bytes 1st Bundle Entry
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/
H A DXRayArgs.cpp272 SmallString<64> Bundle("-fxray-instrumentation-bundle="); in addArgs() local
274 Bundle += "all"; in addArgs()
276 Bundle += "none"; in addArgs()
280 Bundle += "function"; in addArgs()
282 Bundle += "function-entry"; in addArgs()
284 Bundle += "function-exit"; in addArgs()
287 Bundle += "custom"; in addArgs()
289 Bundle += "typed"; in addArgs()
291 CmdArgs.push_back(Args.MakeArgString(Bundle)); in addArgs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DAssumeBundleQueries.cpp143 CallInst::BundleOpInfo* Bundle = getBundleFromUse(U); in getKnowledgeFromUse() local
144 if (!Bundle) in getKnowledgeFromUse()
147 getKnowledgeFromBundle(*cast<AssumeInst>(U->getUser()), *Bundle); in getKnowledgeFromUse()
182 CallInst::BundleOpInfo* Bundle = getBundleFromUse(&U); in getKnowledgeForValue() local
183 if (!Bundle) in getKnowledgeForValue()
186 getKnowledgeFromBundle(*cast<AssumeInst>(U.getUser()), *Bundle)) in getKnowledgeForValue()
188 Filter(RK, cast<Instruction>(U.getUser()), Bundle)) { in getKnowledgeForValue()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
H A DResourceFileWriter.h105 struct Bundle { struct
109 Bundle(const ObjectInfo &Info, uint16_t Flags) in Bundle() function
112 std::map<BundleKey, Bundle> BundleData;
159 Error insertStringIntoBundle(StringTableInfo::Bundle &Bundle,
H A DResourceFileWriter.cpp491 Key, StringTableInfo::Bundle(ObjectData, Res->MemoryFlags)); in visitStringTableResource()
1231 using BundleType = ResourceFileWriter::StringTableInfo::Bundle;
1232 BundleType Bundle; member in llvm::rc::BundleResource
1235 : RCResource(StrBundle.MemoryFlags), Bundle(StrBundle) {} in BundleResource()
1250 StringTableInfo::Bundle &Bundle, uint16_t StringID, in insertStringIntoBundle() argument
1253 if (Bundle.Data[StringLoc]) in insertStringIntoBundle()
1256 Bundle.Data[StringLoc] = String; in insertStringIntoBundle()
1262 for (size_t ID = 0; ID < Res->Bundle.Data.size(); ++ID) { in writeStringTableBundleBody()
1267 if (Res->Bundle.Data[ID]) { in writeStringTableBundleBody()
1269 for (StringRef S : *Res->Bundle.Data[ID]) in writeStringTableBundleBody()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DCFBundle.cpp159 CFBundle Bundle(ExePath); in getBundleInfo() local
160 if (CFStringRef BundleID = Bundle.GetIdentifier()) { in getBundleInfo()
163 Bundle.GetValueForInfoDictionaryKey(CFSTR("CFBundleVersion"))) { in getBundleInfo()
170 if (CFTypeRef TypeRef = Bundle.GetValueForInfoDictionaryKey( in getBundleInfo()
H A Ddsymutil.cpp380 SmallString<128> Bundle(BundleBase); in createBundleDir() local
381 sys::path::append(Bundle, "Contents", "Resources", "DWARF"); in createBundleDir()
383 create_directories(Bundle.str(), true, sys::fs::perms::all_all)) in createBundleDir()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp354 LiveBundle &Bundle = in runOnMachineFunction() local
360 CallingConv::X86_RegCall) && (Bundle.Mask && !Bundle.FixCount)) { in runOnMachineFunction()
367 assert((Bundle.Mask & 0xFE) == 0 && in runOnMachineFunction()
369 Bundle.FixCount = 1; in runOnMachineFunction()
370 Bundle.FixStack[0] = 0; in runOnMachineFunction()
513 const LiveBundle &Bundle = in setupBlockStack() local
516 if (!Bundle.Mask) { in setupBlockStack()
522 assert(Bundle.isFixed() && "Reached block before any predecessors"); in setupBlockStack()
525 for (unsigned i = Bundle.FixCount; i > 0; --i) { in setupBlockStack()
527 << unsigned(Bundle.FixStack[i - 1]) << '\n'); in setupBlockStack()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DEdgeBundles.h47 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; } in getBlocks() argument
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/
H A Dxgettext-java-313 Bundle test = Bundle.getBundle();
H A Dxgettext-java-413 Bundle test = Bundle.getBundle();
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1839 TreeEntry *newTreeEntry(ArrayRef<Value *> VL, Optional<ScheduleData *> Bundle, in newTreeEntry() argument
1845 Bundle ? TreeEntry::Vectorize : TreeEntry::NeedToGather; in newTreeEntry()
1846 return newTreeEntry(VL, EntryState, Bundle, S, UserTreeIdx, in newTreeEntry()
1852 Optional<ScheduleData *> Bundle, in newTreeEntry() argument
1857 assert(((!Bundle && EntryState == TreeEntry::NeedToGather) || in newTreeEntry()
1858 (Bundle && EntryState != TreeEntry::NeedToGather)) && in newTreeEntry()
1876 for (ScheduleData *BundleMember = Bundle.getValue(); BundleMember; in newTreeEntry()
1882 assert((!Bundle.getValue() || Lane == VL.size()) && in newTreeEntry()
2792 Optional<ScheduleData *> Bundle = BS.tryScheduleBundle(VL, this, S); in buildTree_rec() local
2793 if (!Bundle) { in buildTree_rec()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerTracePC.h213 if (LargeType Bundle = *reinterpret_cast<const LargeType *>(P)) in ForEachNonZeroByte() local
214 for (size_t I = 0; I < Step; I++, Bundle >>= 8) in ForEachNonZeroByte()
215 if (uint8_t V = Bundle & 0xff) in ForEachNonZeroByte()
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/
H A Defifpswa.h26 IN OUT VOID *Bundle,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCCodeEmitter.h43 const MCInst *Bundle = nullptr; member
H A DHexagonMCCodeEmitter.cpp376 State.Bundle = &MI; in encodeInstruction()
471 auto Instrs = HexagonMCInstrInfo::bundleInstructions(*State.Bundle); in getFixupNoBits()
735 auto Instrs = HexagonMCInstrInfo::bundleInstructions(*State.Bundle); in getMachineOpValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp127 MIBundleBuilder Bundle(MBB, FirstMI, LastMI); in finalizeBundle() local
135 Bundle.prepend(MIB); in finalizeBundle()
H A DScheduleDAGInstrs.cpp1147 MachineBasicBlock::instr_iterator Bundle = MI.getIterator(); in fixupKills() local
1154 MachineBasicBlock::instr_iterator I = std::next(Bundle); in fixupKills()
1161 } while (I != Bundle); in fixupKills()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/
H A Dnotes.txt91 . . │ . Bundle it up in a jit::result
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/
H A Dnotes.txt91 . . │ . Bundle it up in a jit::result
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Drevision65 0 string #\ Bazaar\ revision\ bundle\ v Bazaar Bundle
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DAssumeBundleBuilder.cpp123 const CallInst::BundleOpInfo *Bundle) { in tryToPreserveWithoutAddingAssume() argument
132 ToUpdate = &Intr->op_begin()[Bundle->Begin + ABA_Argument]; in tryToPreserveWithoutAddingAssume()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-offload-bundler/
H A DClangOffloadBundler.cpp724 StringRef Bundle(&FC.data()[BundleStart], BundleEnd - BundleStart); in ReadBundle() local
725 OS << Bundle; in ReadBundle()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2417 Optional<OperandBundleUse> Bundle = in visitCallBase() local
2420 if (!Bundle.hasValue() || NumOfGCLives == Bundle->Inputs.size()) in visitCallBase()
2425 for (unsigned I = 0, E = Bundle->Inputs.size(); I < E; ++I) { in visitCallBase()
2426 Value *V = Bundle->Inputs[I]; in visitCallBase()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1552 if (auto Bundle = Call->getOperandBundle(LLVMContext::OB_deopt)) in makeStatepointExplicitImpl() local
1553 DeoptArgs = Bundle->Inputs; in makeStatepointExplicitImpl()
1555 if (auto Bundle = Call->getOperandBundle(LLVMContext::OB_gc_transition)) { in makeStatepointExplicitImpl() local
1556 TransitionArgs = Bundle->Inputs; in makeStatepointExplicitImpl()

12