Searched refs:Bundle (Results 1 - 25 of 31) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DEdgeBundles.h46 /// getBlocks - Return an array of blocks that are connected to Bundle.
47 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
/netbsd-current/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-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DAssumeBundleQueries.cpp143 CallInst::BundleOpInfo* Bundle = getBundleFromUse(U);
144 if (!Bundle)
147 getKnowledgeFromBundle(*cast<AssumeInst>(U->getUser()), *Bundle);
182 CallInst::BundleOpInfo* Bundle = getBundleFromUse(&U);
183 if (!Bundle)
186 getKnowledgeFromBundle(*cast<AssumeInst>(U.getUser()), *Bundle))
188 Filter(RK, cast<Instruction>(U.getUser()), Bundle)) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Driver/
H A DXRayArgs.cpp272 SmallString<64> Bundle("-fxray-instrumentation-bundle=");
274 Bundle += "all";
276 Bundle += "none";
280 Bundle += "function";
282 Bundle += "function-entry";
284 Bundle += "function-exit";
287 Bundle += "custom";
289 Bundle += "typed";
291 CmdArgs.push_back(Args.MakeArgString(Bundle));
/netbsd-current/sys/external/bsd/gnu-efi/dist/inc/
H A Defifpswa.h26 IN OUT VOID *Bundle,
/netbsd-current/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DCFBundle.cpp159 CFBundle Bundle(ExePath);
160 if (CFStringRef BundleID = Bundle.GetIdentifier()) {
163 Bundle.GetValueForInfoDictionaryKey(CFSTR("CFBundleVersion"))) {
170 if (CFTypeRef TypeRef = Bundle.GetValueForInfoDictionaryKey(
H A Ddsymutil.cpp380 SmallString<128> Bundle(BundleBase);
381 sys::path::append(Bundle, "Contents", "Resources", "DWARF");
383 create_directories(Bundle.str(), true, sys::fs::perms::all_all))
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-rc/
H A DResourceFileWriter.h105 struct Bundle { struct in struct:llvm::rc::ResourceFileWriter::StringTableInfo
109 Bundle(const ObjectInfo &Info, uint16_t Flags) function in struct:llvm::rc::ResourceFileWriter::StringTableInfo::Bundle
112 std::map<BundleKey, Bundle> BundleData;
159 Error insertStringIntoBundle(StringTableInfo::Bundle &Bundle,
H A DResourceFileWriter.cpp491 Key, StringTableInfo::Bundle(ObjectData, Res->MemoryFlags));
1231 using BundleType = ResourceFileWriter::StringTableInfo::Bundle;
1232 BundleType Bundle;
1235 : RCResource(StrBundle.MemoryFlags), Bundle(StrBundle) {}
1250 StringTableInfo::Bundle &Bundle, uint16_t StringID,
1253 if (Bundle.Data[StringLoc])
1256 Bundle.Data[StringLoc] = String;
1262 for (size_t ID = 0; ID < Res->Bundle.Data.size(); ++ID) {
1267 if (Res->Bundle
1249 insertStringIntoBundle( StringTableInfo::Bundle &Bundle, uint16_t StringID, const std::vector<StringRef> &String) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCCodeEmitter.h43 const MCInst *Bundle = nullptr; member in struct:llvm::HexagonMCCodeEmitter::EmitterState
H A DHexagonMCCodeEmitter.cpp376 State.Bundle = &MI;
471 auto Instrs = HexagonMCInstrInfo::bundleInstructions(*State.Bundle);
735 auto Instrs = HexagonMCInstrInfo::bundleInstructions(*State.Bundle);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp354 LiveBundle &Bundle = local
360 CallingConv::X86_RegCall) && (Bundle.Mask && !Bundle.FixCount)) {
363 // If bundle.mask is non-zero and Bundle.FixCount is zero, it means
367 assert((Bundle.Mask & 0xFE) == 0 &&
369 Bundle.FixCount = 1;
370 Bundle.FixStack[0] = 0;
513 const LiveBundle &Bundle = local
516 if (!Bundle.Mask) {
522 assert(Bundle
553 LiveBundle &Bundle = LiveBundles[BundleIdx]; local
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerTracePC.h213 if (LargeType Bundle = *reinterpret_cast<const LargeType *>(P))
214 for (size_t I = 0; I < Step; I++, Bundle >>= 8)
215 if (uint8_t V = Bundle & 0xff)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp127 MIBundleBuilder Bundle(MBB, FirstMI, LastMI);
135 Bundle.prepend(MIB);
H A DScheduleDAGInstrs.cpp1147 MachineBasicBlock::instr_iterator Bundle = MI.getIterator(); local
1154 MachineBasicBlock::instr_iterator I = std::next(Bundle);
1161 } while (I != Bundle);
H A DRegAllocGreedy.cpp1367 for (unsigned Bundle : NewBundles) {
1368 // Look at all blocks connected to Bundle in the full graph.
1369 ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1839 TreeEntry *newTreeEntry(ArrayRef<Value *> VL, Optional<ScheduleData *> Bundle, argument
1845 Bundle ? TreeEntry::Vectorize : TreeEntry::NeedToGather;
1846 return newTreeEntry(VL, EntryState, Bundle, S, UserTreeIdx,
1852 Optional<ScheduleData *> Bundle,
1857 assert(((!Bundle && EntryState == TreeEntry::NeedToGather) ||
1858 (Bundle && EntryState != TreeEntry::NeedToGather)) &&
1876 for (ScheduleData *BundleMember = Bundle.getValue(); BundleMember;
1882 assert((!Bundle.getValue() || Lane == VL.size()) &&
1883 "Bundle and VL out of sync");
2792 Optional<ScheduleData *> Bundle
1850 newTreeEntry(ArrayRef<Value *> VL, TreeEntry::EntryState EntryState, Optional<ScheduleData *> Bundle, const InstructionsState &S, const EdgeInfo &UserTreeIdx, ArrayRef<unsigned> ReuseShuffleIndices = None, ArrayRef<unsigned> ReorderIndices = None) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DAssumeBundleBuilder.cpp123 const CallInst::BundleOpInfo *Bundle) {
132 ToUpdate = &Intr->op_begin()[Bundle->Begin + ABA_Argument];
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-offload-bundler/
H A DClangOffloadBundler.cpp395 HeaderSize += 3 * 8; // Bundle offset, Size of bundle and size of triple.
408 // Bundle offset.
659 /// Bundle 1
663 /// Bundle N
724 StringRef Bundle(&FC.data()[BundleStart], BundleEnd - BundleStart);
725 OS << Bundle;
821 /// Bundle the files. Return true if an error was found.
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1552 if (auto Bundle = Call->getOperandBundle(LLVMContext::OB_deopt))
1553 DeoptArgs = Bundle->Inputs;
1555 if (auto Bundle = Call->getOperandBundle(LLVMContext::OB_gc_transition)) {
1556 TransitionArgs = Bundle->Inputs;
H A DLICM.cpp1461 OperandBundleUse Bundle = CI->getOperandBundleAt(BundleIdx); local
1462 if (Bundle.getTagID() == LLVMContext::OB_funclet)
1465 OpBundles.emplace_back(Bundle);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2417 Optional<OperandBundleUse> Bundle = local
2420 if (!Bundle.hasValue() || NumOfGCLives == Bundle->Inputs.size())
2425 for (unsigned I = 0, E = Bundle->Inputs.size(); I < E; ++I) {
2426 Value *V = Bundle->Inputs[I];
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp778 auto Bundle = CI.getOperandBundleAt(I); local
780 if (Bundle.getTagID() == LLVMContext::OB_funclet)
782 OpBundles.emplace_back(Bundle);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp304 if (auto Bundle = End->getOperandBundle(LLVMContext::OB_funclet)) {
305 auto *FromPad = cast<CleanupPadInst>(Bundle->Inputs[0]);

Completed in 403 milliseconds

12