Home
last modified time | relevance | path

Searched full:delegate (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstVisitor.h27 #define DELEGATE(CLASS_TO_VISIT) \ macro
159 DELEGATE(CLASS); \
166 RetTy visitICmpInst(ICmpInst &I) { DELEGATE(CmpInst);} in visitICmpInst()
167 RetTy visitFCmpInst(FCmpInst &I) { DELEGATE(CmpInst);} in visitFCmpInst()
168 RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(UnaryInstruction);} in visitAllocaInst()
169 RetTy visitLoadInst(LoadInst &I) { DELEGATE(UnaryInstruction);} in visitLoadInst()
170 RetTy visitStoreInst(StoreInst &I) { DELEGATE(Instruction);} in visitStoreInst()
171 RetTy visitAtomicCmpXchgInst(AtomicCmpXchgInst &I) { DELEGATE(Instruction);} in visitAtomicCmpXchgInst()
172 RetTy visitAtomicRMWInst(AtomicRMWInst &I) { DELEGATE(Instruction);} in visitAtomicRMWInst()
173 RetTy visitFenceInst(FenceInst &I) { DELEGATE(Instruction);} in visitFenceInst()
[all …]
/freebsd/tests/sys/cddl/zfs/tests/delegate/
H A Dzfs_allow_test.sh37 . $(atf_get_srcdir)/delegate.cfg
47 . $(atf_get_srcdir)/delegate.cfg
63 . $(atf_get_srcdir)/delegate.cfg
73 . $(atf_get_srcdir)/delegate.cfg
89 . $(atf_get_srcdir)/delegate.cfg
99 . $(atf_get_srcdir)/delegate.cfg
115 . $(atf_get_srcdir)/delegate.cfg
125 . $(atf_get_srcdir)/delegate.cfg
141 . $(atf_get_srcdir)/delegate.cfg
151 . $(atf_get_srcdir)/delegate.cfg
[all …]
H A Dzfs_unallow_test.sh37 . $(atf_get_srcdir)/delegate.cfg
47 . $(atf_get_srcdir)/delegate.cfg
63 . $(atf_get_srcdir)/delegate.cfg
73 . $(atf_get_srcdir)/delegate.cfg
89 . $(atf_get_srcdir)/delegate.cfg
99 . $(atf_get_srcdir)/delegate.cfg
115 . $(atf_get_srcdir)/delegate.cfg
125 . $(atf_get_srcdir)/delegate.cfg
141 . $(atf_get_srcdir)/delegate.cfg
151 . $(atf_get_srcdir)/delegate.cfg
[all …]
H A Dzfs_allow_008_pos.ksh27 . $STF_SUITE/tests/delegate/delegate_common.kshlib
66 # Delegate local permission to $STAFF1
82 # delegate permission to other else.
H A DMakefile4 TESTSDIR=${TESTSBASE}/sys/cddl/zfs/tests/delegate
13 ${PACKAGE}FILES+= delegate.cfg
H A Dzfs_allow_012_neg.ksh27 . $STF_SUITE/tests/delegate/delegate_common.kshlib
40 # 1. Delegate all the permission one by one to user on dataset.
H A Dzfs_allow_002_pos.ksh27 . $STF_SUITE/tests/delegate/delegate_common.kshlib
41 # 2. Delegate permissions to $STAFF_GROUP
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelChangeObserver.h40 /// point and won't be if the MachineFunction::Delegate is calling it. This is
41 /// because the delegate only sees the construction of the MachineInstr before
65 /// function as the delegate.
66 class GISelObserverWrapper : public MachineFunction::Delegate,
100 // API for MachineFunction::Delegate
105 /// A simple RAII based Delegate installer.
106 /// Use this in a scope to install a delegate to the MachineFunction and reset
110 MachineFunction::Delegate *Delegate; variable
113 RAIIDelegateInstaller(MachineFunction &MF, MachineFunction::Delegate *Del);
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp96 // For each BLOCK|LOOP|TRY, the corresponding END_(BLOCK|LOOP|TRY) or DELEGATE
99 // For each END_(BLOCK|LOOP|TRY) or DELEGATE, the corresponding
120 // Before running rewriteDepthImmediates function, 'delegate' has a BB as its
122 // used for the operand when 'delegate' needs to rethrow to the caller. This
225 // When 'End' is not an 'end_try' but 'delegate, EHPad is nullptr.
712 // We started from an EH pad, so the end marker cannot be a delegate in removeUnnecessaryInstrs()
713 assert(EndTry->getOpcode() != WebAssembly::DELEGATE); in removeUnnecessaryInstrs()
759 if (EndTry->getOpcode() == WebAssembly::DELEGATE) in removeUnnecessaryInstrs()
844 // Wrap the given range of instruction with try-delegate. RangeBegin and
876 // Create a BB to insert the 'delegate' instruction. in addTryDelegate()
[all …]
/freebsd/sys/dev/bhnd/bhndb/
H A Dbhnd_bhndb.c77 /* Delegate to parent bridge */ in bhnd_bhndb_is_hw_disabled()
100 /* Delegate to parent bridge */ in bhnd_bhndb_map_intr()
107 /* Delegate to parent bridge */ in bhnd_bhndb_unmap_intr()
115 /* Delegate to parent bridge */ in bhnd_bhndb_pwrctl_get_clksrc()
124 /* Delegate to parent bridge */ in bhnd_bhndb_pwrctl_gate_clock()
133 /* Delegate to parent bridge */ in bhnd_bhndb_pwrctl_ungate_clock()
163 /* Delegate actual interrupt setup to the default bhnd bus in bhnd_bhndb_setup_intr()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolDeserializer.h55 explicit SymbolDeserializer(SymbolVisitorDelegate *Delegate, in SymbolDeserializer() argument
57 : Delegate(Delegate), Container(Container) {} in SymbolDeserializer()
86 Delegate ? Delegate->getRecordOffset(Mapping->Reader) : 0; in visitKnownRecordImpl()
92 SymbolVisitorDelegate *Delegate; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DGISelChangeObserver.cpp33 MachineFunction::Delegate *Del) in RAIIDelegateInstaller()
34 : MF(MF), Delegate(Del) { in RAIIDelegateInstaller()
35 // Register this as the delegate for handling insertions and deletions of in RAIIDelegateInstaller()
40 RAIIDelegateInstaller::~RAIIDelegateInstaller() { MF.resetDelegate(Delegate); } in ~RAIIDelegateInstaller()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveRangeEdit.h42 class LiveRangeEdit : private MachineRegisterInfo::Delegate {
45 class Delegate {
49 virtual ~Delegate() = default;
73 Delegate *const TheDelegate;
130 Delegate *delegate = nullptr,
133 VRM(vrm), TII(*MF.getSubtarget().getInstrInfo()), TheDelegate(delegate), in Parent()
229 /// eraseVirtReg - Notify the delegate that Reg is no longer in use, and try
H A DMachineRegisterInfo.h53 class Delegate {
57 virtual ~Delegate() = default;
68 SmallPtrSet<Delegate *, 1> TheDelegates;
161 void resetDelegate(Delegate *delegate) { in resetDelegate() argument
162 // Ensure another delegate does not take over unless the current in resetDelegate()
163 // delegate first unattaches itself. in resetDelegate()
164 assert(TheDelegates.count(delegate) && in resetDelegate()
165 "Only an existing delegate can perform reset!"); in resetDelegate()
166 TheDelegates.erase(delegate); in resetDelegate()
169 void addDelegate(Delegate *delegate) { in addDelegate() argument
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/delegate/
H A Dzfs_allow_008_pos.ksh32 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
36 # A non-root user can use 'zfs allow' to delegate permissions that
57 # Delegate local permission to $STAFF1
73 # permission to delegate permission to other users.
H A Dzfs_allow_012_neg.ksh32 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
40 # 1. Delegate all the permission one by one to user on dataset.
H A Dzfs_allow_002_pos.ksh32 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
41 # 2. Delegate permissions to $STAFF_GROUP
H A Dzfs_allow_007_pos.ksh32 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
87 # Delegate @set to STAFF1 on ROOT_TESTFS, verify $perms1 will not be appended
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.h314 CxxModuleScope(ASTImporterDelegate &delegate, clang::ASTContext *dst_ctx) in CxxModuleScope()
315 : m_delegate(delegate) { in CxxModuleScope()
316 // If the delegate doesn't have a CxxModuleHandler yet, create one in CxxModuleScope()
318 if (!delegate.m_std_handler) { in CxxModuleScope()
319 m_handler = CxxModuleHandler(delegate, dst_ctx); in CxxModuleScope()
321 delegate.m_std_handler = &m_handler; in CxxModuleScope()
464 ImporterDelegateSP delegate = in GetDelegate() local
466 delegates[src_ctx] = delegate; in GetDelegate()
467 return delegate; in GetDelegate()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp230 IOHandlerDelegate &delegate) in IOHandlerEditline() argument
238 line_number_start, delegate) {} in IOHandlerEditline()
247 IOHandlerDelegate &delegate) in IOHandlerEditline() argument
252 m_delegate(delegate), m_prompt(), m_continuation_prompt(), in IOHandlerEditline()
288 // See if the delegate supports fixing indentation in IOHandlerEditline()
289 const char *indent_chars = delegate.IOHandlerGetFixIndentationCharacters(); in IOHandlerEditline()
291 // The delegate does support indentation, hook it up so when any in IOHandlerEditline()
292 // indentation character is typed, the delegate gets a chance to fix it in IOHandlerEditline()
H A DIOHandlerCursesGUI.cpp2006 // Returns the form delegate at the current index.
2011 // The default field delegate instance from which new field delegates will be
2333 TextFieldDelegate *delegate = in AddTextField() local
2335 m_fields.push_back(FieldDelegateUP(delegate)); in AddTextField()
2336 return delegate; in AddTextField()
2341 FileFieldDelegate *delegate = in AddFileField() local
2343 m_fields.push_back(FieldDelegateUP(delegate)); in AddFileField()
2344 return delegate; in AddFileField()
2350 DirectoryFieldDelegate *delegate = in AddDirectoryField() local
2352 m_fields.push_back(FieldDelegateUP(delegate)); in AddDirectoryField()
[all …]
/freebsd/sys/dev/bhnd/cores/pmu/
H A Dbhnd_pmu_core.c70 /* Delegate to common driver implementation */ in bhnd_pmu_core_probe()
104 /* Delegate to common driver implementation */ in bhnd_pmu_core_attach()
122 /* Delegate to common driver implementation */ in bhnd_pmu_core_detach()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h184 /// A delegate class for use with IOHandler subclasses.
186 /// The IOHandler delegate is designed to be mixed into classes so
188 /// object that inherits from this delegate class when a token is
244 /// received. It is up to the delegate to determine when a line
335 IOHandlerDelegate &delegate);
347 IOHandlerDelegate &delegate);
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/
H A DMakefile.am269 functional/delegate/delegate.cfg \
270 functional/delegate/delegate_common.kshlib \
1450 functional/delegate/cleanup.ksh \
1451 functional/delegate/setup.ksh \
1452 functional/delegate/zfs_allow_001_pos.ksh \
1453 functional/delegate/zfs_allow_002_pos.ksh \
1454 functional/delegate/zfs_allow_003_pos.ksh \
1455 functional/delegate/zfs_allow_004_pos.ksh \
1456 functional/delegate/zfs_allow_005_pos.ksh \
1457 functional/delegate/zfs_allow_006_pos.ksh \
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp39 ContinueDelegate &delegate, const UnixSignals &signals, in SendContinuePacketAndWaitForResponse() argument
115 delegate.HandleAsyncStdout(inferior_stdout); in SendContinuePacketAndWaitForResponse()
119 delegate.HandleAsyncMisc( in SendContinuePacketAndWaitForResponse()
123 delegate.HandleAsyncStructuredDataPacket(response.GetStringRef()); in SendContinuePacketAndWaitForResponse()
142 delegate.HandleStopReply(); in SendContinuePacketAndWaitForResponse()

12345678910>>...12