Home
last modified time | relevance | path

Searched refs:PIC (Results 1 – 25 of 205) sorted by relevance

123456789

/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dopen-pic.txt1 * Open PIC Binding
4 representation of an Open PIC compliant interrupt controller. This binding is
5 based on the binding defined for Open PIC in [1] and is a superset of that
13 - compatible: Specifies the compatibility list for the PIC. The type
17 PIC's addressable register space. The type shall be <prop-encoded-array>.
20 as an Open PIC. No property value shall be defined.
31 - pic-no-reset: The presence of this property indicates that the PIC
55 * An Open PIC interrupt controller
62 // this Open PIC node do not need a parent address specifier.
71 // Compatible with Open PIC.
[all …]
H A Dmarvell,armada-8k-pic.txt1 Marvell Armada 7K/8K PIC Interrupt controller
4 This is the Device Tree binding for the PIC, a secondary interrupt
13 - reg: the register area for the PIC interrupt controller
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp453 PassInstrumentationCallbacks &PIC) { in registerRequiredCallbacks() argument
454 PIC.registerBeforeNonSkippedPassCallback([&PIC, this](StringRef P, Any IR) { in registerRequiredCallbacks()
455 saveIRBeforePass(IR, P, PIC.getPassNameForClassName(P)); in registerRequiredCallbacks()
458 PIC.registerAfterPassCallback( in registerRequiredCallbacks()
459 [&PIC, this](StringRef P, Any IR, const PreservedAnalyses &) { in registerRequiredCallbacks()
460 handleIRAfterPass(IR, P, PIC.getPassNameForClassName(P)); in registerRequiredCallbacks()
462 PIC.registerAfterPassInvalidatedCallback( in registerRequiredCallbacks()
507 void IRChangedPrinter::registerCallbacks(PassInstrumentationCallbacks &PIC) { in registerCallbacks() argument
510 TextChangeReporter<std::string>::registerRequiredCallbacks(PIC); in registerCallbacks()
540 void IRChangedTester::registerCallbacks(PassInstrumentationCallbacks &PIC) { in registerCallbacks() argument
[all …]
H A DPassBuilderBindings.cpp56 PassInstrumentationCallbacks PIC; in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() local
57 PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
70 SI.registerCallbacks(PIC, &MAM); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dmpc8272ads.dts74 interrupt-parent = <&PIC>;
108 interrupt-parent = <&PIC>;
156 interrupt-parent = <&PIC>;
167 interrupt-parent = <&PIC>;
176 interrupt-parent = <&PIC>;
191 interrupt-parent = <&PIC>;
197 interrupt-parent = <&PIC>;
210 interrupt-parent = <&PIC>;
223 interrupt-parent = <&PIC>;
234 interrupt-parent = <&PIC>;
[all …]
H A Dpq2fads.dts73 interrupt-parent = <&PIC>;
106 interrupt-parent = <&PIC>;
155 interrupt-parent = <&PIC>;
166 interrupt-parent = <&PIC>;
177 interrupt-parent = <&PIC>;
189 interrupt-parent = <&PIC>;
207 interrupt-parent = <&PIC>;
213 interrupt-parent = <&PIC>;
225 interrupt-parent = <&PIC>;
231 PIC: interrupt-controller@10c00 { label
H A Dep8248e.dts72 interrupt-parent = <&PIC>;
77 interrupt-parent = <&PIC>;
135 interrupt-parent = <&PIC>;
148 interrupt-parent = <&PIC>;
161 interrupt-parent = <&PIC>;
174 interrupt-parent = <&PIC>;
186 interrupt-parent = <&PIC>;
192 PIC: interrupt-controller@10c00 { label
H A Dmgcoge.dts140 interrupt-parent = <&PIC>;
153 interrupt-parent = <&PIC>;
164 interrupt-parent = <&PIC>;
194 interrupt-parent = <&PIC>;
207 interrupt-parent = <&PIC>;
218 interrupt-parent = <&PIC>;
226 interrupt-parent = <&PIC>;
246 PIC: interrupt-controller@10c00 { label
H A Dmpc885ads.dts32 interrupt-parent = <&PIC>;
103 interrupt-parent = <&PIC>;
115 interrupt-parent = <&PIC>;
120 PIC: interrupt-controller@0 { label
134 interrupt-parent = <&PIC>;
171 interrupt-parent = <&PIC>;
228 interrupt-parent = <&PIC>;
H A Dtqm8xx.dts39 interrupt-parent = <&PIC>;
73 interrupt-parent = <&PIC>;
85 interrupt-parent = <&PIC>;
115 interrupt-parent = <&PIC>;
120 PIC: pic@0 { label
161 interrupt-parent = <&PIC>;
H A Dep88xc.dts32 interrupt-parent = <&PIC>;
98 interrupt-parent = <&PIC>;
110 interrupt-parent = <&PIC>;
115 PIC: interrupt-controller@0 { label
129 interrupt-parent = <&PIC>;
165 interrupt-parent = <&PIC>;
H A Dadder875-redboot.dts37 interrupt-parent = <&PIC>;
100 interrupt-parent = <&PIC>;
112 interrupt-parent = <&PIC>;
117 PIC: interrupt-controller@0 { label
156 interrupt-parent = <&PIC>;
H A Dadder875-uboot.dts37 interrupt-parent = <&PIC>;
99 interrupt-parent = <&PIC>;
111 interrupt-parent = <&PIC>;
116 PIC: interrupt-controller@0 { label
155 interrupt-parent = <&PIC>;
H A Dmpc866ads.dts32 interrupt-parent = <&PIC>;
83 interrupt-parent = <&PIC>;
88 PIC: pic@0 { label
129 interrupt-parent = <&PIC>;
/freebsd/contrib/llvm-project/llvm/tools/llc/
H A DNewPMDriver.cpp117 PassInstrumentationCallbacks PIC; in compileModuleWithNewPM() local
119 registerCodeGenCallback(PIC, LLVMTM); in compileModuleWithNewPM()
126 PassBuilder PB(Target.get(), PipelineTuningOptions(), std::nullopt, &PIC); in compileModuleWithNewPM()
133 SI.registerCallbacks(PIC, &MAM); in compileModuleWithNewPM()
162 MPM, *OS, DwoOut ? &DwoOut->os() : nullptr, FileType, Opt, &PIC)); in compileModuleWithNewPM()
168 MPM.printPipeline(OS, [&PIC](StringRef ClassName) { in compileModuleWithNewPM()
169 auto PassName = PIC.getPassNameForClassName(ClassName); in compileModuleWithNewPM()
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h49 void registerCallbacks(PassInstrumentationCallbacks &PIC);
81 PassInstrumentationCallbacks *PIC; variable
93 void registerCallbacks(PassInstrumentationCallbacks &PIC);
106 void registerCallbacks(PassInstrumentationCallbacks &PIC);
125 void registerCallbacks(PassInstrumentationCallbacks &PIC);
178 void registerCallbacks(PassInstrumentationCallbacks &PIC,
214 void registerRequiredCallbacks(PassInstrumentationCallbacks &PIC);
275 void registerCallbacks(PassInstrumentationCallbacks &PIC);
291 void registerCallbacks(PassInstrumentationCallbacks &PIC);
439 void registerCallbacks(PassInstrumentationCallbacks &PIC);
[all …]
H A DTargetPassRegistry.inc24 auto *PIC = PB.getPassInstrumentationCallbacks();
25 if (PIC) {
26 PIC->registerClassToPassNameCallback([this, PIC]() {
31 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
33 PIC->addClassToPassName(CLASS, NAME);
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CodeGenPassBuilder.cpp29 PassInstrumentationCallbacks *PIC) in X86CodeGenPassBuilder() argument
30 : CodeGenPassBuilder(TM, Opts, PIC) {} in X86CodeGenPassBuilder()
61 PassInstrumentationCallbacks *PIC) { in buildCodeGenPipeline() argument
62 auto CGPB = X86CodeGenPassBuilder(*this, Opt, PIC); in buildCodeGenPipeline()
/freebsd/contrib/sendmail/doc/op/
H A DMakefile12 PIC= ${PIC_CMD} -C macro
20 OPTXT_CMD= ${PIC} ${SRCS} | ${EQNASCII} | ${ROFFASCII} | ${ULASCII} 2>/dev/null
21 OPTXTNS_CMD= ${PIC} ${SRCS} | ${EQNASCII} | ${ROFFNOSGR} | ${ULASCII}
27 ${PIC} ${SRCS} | ${EQNPS} | ${ROFFPS} > $@
/freebsd/contrib/file/magic/Magdir/
H A Dx680006 # Yanagisawa PIC picture
7 0 string PIC
10 >>>&0 ubyte 0 Yanagisawa PIC image file,
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DPassTimingInfo.cpp311 void TimePassesHandler::registerCallbacks(PassInstrumentationCallbacks &PIC) { in registerCallbacks()
315 PIC.registerBeforeNonSkippedPassCallback( in registerCallbacks()
317 PIC.registerAfterPassCallback( in registerCallbacks()
321 PIC.registerAfterPassInvalidatedCallback(
325 PIC.registerBeforeAnalysisCallback(
327 PIC.registerAfterAnalysisCallback(
299 registerCallbacks(PassInstrumentationCallbacks & PIC) registerCallbacks() argument
/freebsd/lib/libc/gen/
H A Ddlfcn.c29 #if !defined(IN_LIBDL) || defined(PIC)
170 #ifndef PIC
216 #elif defined PIC in _dl_iterate_phdr_locked()
246 #if !defined(IN_LIBDL) && !defined(PIC) in dl_iterate_phdr()
250 #if !defined(IN_LIBDL) && !defined(PIC) in dl_iterate_phdr()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600CodeGenPassBuilder.cpp16 PassInstrumentationCallbacks *PIC) in R600CodeGenPassBuilder() argument
17 : CodeGenPassBuilder(TM, Opts, PIC) { in R600CodeGenPassBuilder()
H A DAMDGPUCodeGenPassBuilder.cpp18 PassInstrumentationCallbacks *PIC) in AMDGPUCodeGenPassBuilder() argument
19 : CodeGenPassBuilder(TM, Opts, PIC) { in AMDGPUCodeGenPassBuilder()
/freebsd/contrib/llvm-project/lld/docs/ELF/
H A Dlarge_sections.rst11 PIC code, a reference to a static global variable is typically done with a
45 Note that the above applies to PIC code. For less common non-PIC code with
48 non-PIC code, large sections should be placed after all small sections to avoid

123456789