| /freebsd/contrib/bmake/unit-tests/ |
| H A D | var-scope-local.exp | 1 Global: .ALLTARGETS = all target-rule.ext dir/subdir/target-rule.ext target-rule.ir-gen-from dir/subdir/target-rule-dir.ir-gen-from inference-rule.ir-to dir/subdir/inference-rule.ir-to inference-rule.ir-from dir/subdir/inference-rule.ir-from inference-rule-chain.ir-to dir/subdir/inference-rule-chain.ir-to inference-rule-chain.ir-gen-from dir/subdir/inference-rule-chain.ir [all...] |
| /freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/ |
| H A D | ExecuteStage.cpp | 43 bool ExecuteStage::isAvailable(const InstRef &IR) const { in isAvailable() 44 if (Scheduler::Status S = HWS.isAvailable(IR)) { in isAvailable() 46 notifyEvent<HWStallEvent>(HWStallEvent(ET, IR)); in isAvailable() 53 Error ExecuteStage::issueInstruction(InstRef &IR) { in issueInstruction() argument 58 HWS.issueInstruction(IR, Used, Pending, Ready); in issueInstruction() 59 Instruction &IS = *IR.getInstruction(); in issueInstruction() 62 notifyReservedOrReleasedBuffers(IR, /* Reserved */ false); in issueInstruction() 64 notifyInstructionIssued(IR, Used); in issueInstruction() 66 notifyInstructionExecuted(IR); in issueInstruction() 68 if (Error S = moveToTheNextStage(IR)) in issueInstruction() 81 InstRef IR = HWS.select(); issueReadyInstructions() local 113 for (const InstRef &IR : Pending) cycleStart() local 116 for (const InstRef &IR : Ready) cycleStart() local 161 verifyInstructionEliminated(const InstRef & IR) verifyInstructionEliminated() argument 173 handleInstructionEliminated(InstRef & IR) handleInstructionEliminated() argument 186 execute(InstRef & IR) execute() argument 253 notifyInstructionIssued(const InstRef & IR,MutableArrayRef<ResourceUse> Used) const notifyInstructionIssued() argument 271 notifyReservedOrReleasedBuffers(const InstRef & IR,bool Reserved) const notifyReservedOrReleasedBuffers() argument [all...] |
| H A D | InOrderIssueStage.cpp | 25 IR.invalidate(); in clear() 31 IR = Inst; in update() 60 bool InOrderIssueStage::isAvailable(const InstRef &IR) const { in isAvailable() 64 const Instruction &Inst = *IR.getInstruction(); in isAvailable() 79 static bool hasResourceHazard(const ResourceManager &RM, const InstRef &IR) { in hasResourceHazard() argument 80 if (RM.checkAvailability(IR.getInstruction()->getDesc())) { in hasResourceHazard() 81 LLVM_DEBUG(dbgs() << "[E] Stall #" << IR << '\n'); in hasResourceHazard() 88 static unsigned findFirstWriteBackCycle(const InstRef &IR) { in findFirstWriteBackCycle() argument 89 unsigned FirstWBCycle = IR.getInstruction()->getLatency(); in findFirstWriteBackCycle() 90 for (const WriteState &WS : IR.getInstruction()->getDefs()) { in findFirstWriteBackCycle() [all …]
|
| H A D | DispatchStage.cpp | 38 void DispatchStage::notifyInstructionDispatched(const InstRef &IR, in notifyInstructionDispatched() argument 41 LLVM_DEBUG(dbgs() << "[E] Instruction Dispatched: #" << IR << '\n'); in notifyInstructionDispatched() 43 HWInstructionDispatchedEvent(IR, UsedRegs, UOps)); in notifyInstructionDispatched() 46 bool DispatchStage::checkPRF(const InstRef &IR) const { in checkPRF() 48 for (const WriteState &RegDef : IR.getInstruction()->getDefs()) in checkPRF() 55 HWStallEvent(HWStallEvent::RegisterFileStall, IR)); in checkPRF() 62 bool DispatchStage::checkRCU(const InstRef &IR) const { in checkRCU() 63 const unsigned NumMicroOps = IR.getInstruction()->getNumMicroOps(); in checkRCU() 67 HWStallEvent(HWStallEvent::RetireControlUnitStall, IR)); in checkRCU() 71 bool DispatchStage::canDispatch(const InstRef &IR) const { in canDispatch() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
| H A D | Scheduler.cpp | 40 Scheduler::Status Scheduler::isAvailable(const InstRef &IR) { in isAvailable() argument 42 Resources->canBeDispatched(IR.getInstruction()->getUsedBuffers()); in isAvailable() 55 LSUnit::Status LSS = LSU.isAvailable(IR); in isAvailable() 71 InstRef &IR, in issueInstructionImpl() argument 73 Instruction *IS = IR.getInstruction(); in issueInstructionImpl() 82 IS->execute(IR.getSourceIndex()); in issueInstructionImpl() 87 LSU.onInstructionIssued(IR); in issueInstructionImpl() 93 IssuedSet.emplace_back(IR); in issueInstructionImpl() 95 LSU.onInstructionExecuted(IR); in issueInstructionImpl() 100 InstRef &IR, in issueInstruction() argument 124 InstRef &IR = *I; promoteToReadySet() local 160 InstRef &IR = *I; promoteToPendingSet() local 195 InstRef &IR = ReadySet[I]; select() local 212 InstRef IR = ReadySet[QueueIndex]; select() local 221 InstRef &IR = *I; updateIssuedSet() local 251 for (const InstRef &IR : make_range(PendingSet.begin(), EndIt)) { analyzeDataDependencies() local 300 dispatch(InstRef & IR) dispatch() argument [all...] |
| /freebsd/share/i18n/esdb/ISO646/ |
| H A D | ISO646.alias | 9 CA iso-ir-121 13 CA2 iso-ir-122 18 CN iso-ir-57 21 CU iso-ir-151 26 DE iso-ir-21 33 ES iso-ir-17 36 ES2 iso-ir-85 39 FR iso-ir-69 42 FR1 iso-ir-25 46 GB iso-ir-4 [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | PassManagerImpl.h | 10 /// methods. These classes should be explicitly instantiated for any IR unit, 18 #include "llvm/IR/Function.h" 19 #include "llvm/IR/PassInstrumentation.h" 20 #include "llvm/IR/PassManager.h" 30 IRUnitT &IR, AnalysisManagerT &AM, ExtraArgTs... ExtraArgs) { in run() argument 33 IRUnitT &IR; in run() local 37 explicit StackTraceEntry(const PassInstrumentation &PI, IRUnitT &IR) in run() 38 : PI(PI), IR(IR) {} in run() 52 printIRUnitNameForStackTrace(OS, IR); in run() 65 AM, IR, std::tuple<ExtraArgTs...>(ExtraArgs...)); in run() [all …]
|
| H A D | PassManager.h | 12 /// which supports a method to 'run' it over a unit of IR can be used as 14 /// which run over a particular IR construct, and run each of them in sequence 15 /// over each such construct in the containing IR construct. As there is no 16 /// containing IR construct for a Module, a manager for passes over modules 20 /// The core IR library provides managers for running passes over 44 #include "llvm/IR/Analysis.h" 45 #include "llvm/IR/PassManagerInternal.h" 122 getAnalysisResultUnpackTuple(AnalysisManagerT &AM, IRUnitT &IR, in getAnalysisResultUnpackTuple() argument 126 return AM.template getResult<PassT>(IR, std::get<Ns>(Args)...); in getAnalysisResultUnpackTuple() 137 getAnalysisResult(AnalysisManager<IRUnitT, AnalysisArgTs...> &AM, IRUnitT &IR, in getAnalysisResult() argument [all …]
|
| H A D | PassInstrumentation.h | 1 //===- llvm/IR/PassInstrumentation.h ----------------------*- C++ -*-===// 40 /// 'const IRUnitT*' so as to avoid any accidental changes to IR in 56 #include "llvm/IR/PassManager.h" 177 /// These are run passes that have just run on invalidated IR. 231 /// and constant reference to IR it operates on. \Returns true if pass is 236 bool runBeforePass(const PassT &Pass, const IRUnitT &IR) const { in runBeforePass() argument 243 ShouldRun &= C(Pass.name(), llvm::Any(&IR)); in runBeforePass() 248 C(Pass.name(), llvm::Any(&IR)); in runBeforePass() 251 C(Pass.name(), llvm::Any(&IR)); in runBeforePass() 258 /// just been executed and constant reference to \p IR it operates on. [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Passes/ |
| H A D | StandardInstrumentations.h | 23 #include "llvm/IR/BasicBlock.h" 24 #include "llvm/IR/OptBisect.h" 25 #include "llvm/IR/PassTimingInfo.h" 26 #include "llvm/IR/ValueHandle.h" 41 /// Instrumentation to print IR before/after passes. 43 /// Needs state to be able to print module after pass that invalidates IR unit 64 void printBeforePass(StringRef PassID, Any IR); 65 void printAfterPass(StringRef PassID, Any IR); 76 void pushPassRunDescriptor(StringRef PassID, Any IR, 79 std::string fetchDumpFilename(StringRef PassId, Any IR); [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/media/ |
| H A D | allwinner,sun4i-a10-ir.yaml | 4 $id: http://devicetree.org/schemas/media/allwinner,sun4i-a10-ir.yaml# 19 - const: allwinner,sun4i-a10-ir 20 - const: allwinner,sun5i-a13-ir 21 - const: allwinner,sun6i-a31-ir 24 - allwinner,suniv-f1c100s-ir 25 - allwinner,sun8i-a83t-ir 26 - allwinner,sun8i-r40-ir 27 - allwinner,sun50i-a64-ir 28 - allwinner,sun50i-h6-ir 29 - allwinner,sun50i-h616-ir [all …]
|
| H A D | amlogic,meson-ir-tx.yaml | 5 $id: http://devicetree.org/schemas/media/amlogic,meson-ir-tx.yaml# 8 title: Amlogic Meson IR transmitter 14 Some Amlogic SoCs such as A311D and T950D4 have IR transmitter 16 sending IR signals with arbitrary carrier frequency and duty cycle. 21 - const: amlogic,meson-ir-tx 23 - const: amlogic,meson-g12a-ir-tx 24 - const: amlogic,meson-ir-tx 54 ir@ff80014c { 55 compatible = "amlogic,meson-g12a-ir-tx", "amlogic,meson-ir-tx";
|
| H A D | amlogic,meson6-ir.yaml | 4 $id: http://devicetree.org/schemas/media/amlogic,meson6-ir.yaml# 7 title: Amlogic Meson IR remote control receiver 19 - amlogic,meson6-ir 20 - amlogic,meson8b-ir 21 - amlogic,meson-gxbb-ir 22 - amlogic,meson-s4-ir 24 - const: amlogic,meson-gx-ir 25 - const: amlogic,meson-gxbb-ir 44 ir-receiver@c8100480 { 45 compatible = "amlogic,meson6-ir"; [all...] |
| /freebsd/contrib/llvm-project/llvm/lib/Passes/ |
| H A D | StandardInstrumentations.cpp | 10 /// This file defines IR-printing pass instrumentation callbacks as well as 26 #include "llvm/IR/Constants.h" 27 #include "llvm/IR/Function.h" 28 #include "llvm/IR/Module.h" 29 #include "llvm/IR/PassInstrumentation.h" 30 #include "llvm/IR/PassManager.h" 31 #include "llvm/IR/PrintPasses.h" 32 #include "llvm/IR/StructuralHash.h" 33 #include "llvm/IR/Verifier.h" 105 // Options to print the IR that was being processed when a pass crashes. [all …]
|
| /freebsd/share/i18n/esdb/ISO-8859/ |
| H A D | ISO-8859.alias | 8 1 iso-ir-100 18 2 iso-ir-101 28 3 iso-ir-109 38 4 iso-ir-110 50 5 iso-ir-144 61 6 iso-ir-127 74 7 iso-ir-126 83 8 iso-ir-138 90 9 iso-ir-148 98 10 iso-ir-157 [all …]
|
| /freebsd/sys/dev/firewire/ |
| H A D | fwdev.c | 87 struct fw_xferq *ir; member 220 if (d->ir != NULL) { in fw_close() 221 struct fw_xferq *ir = d->ir; in fw_close() local 223 if ((ir->flag & FWXFERQ_OPEN) == 0) in fw_close() 225 if (ir->flag & FWXFERQ_RUNNING) { in fw_close() 226 ir->flag &= ~FWXFERQ_RUNNING; in fw_close() 227 fc->irx_disable(fc, ir->dmach); in fw_close() 230 fwdev_freebuf(ir); in fw_close() 232 for (xfer = STAILQ_FIRST(&ir->q); in fw_close() 233 xfer != NULL; xfer = STAILQ_FIRST(&ir->q)) { in fw_close() [all …]
|
| /freebsd/crypto/openssl/test/recipes/80-test_cmp_http_data/ |
| H A D | test_enrollment.csv | 4 1,newkey, -section,, -cmd,ir, -newkey,new.key,, -newkeypass,pass:,,,BLANK,,BLANK,,BLANK,,BLANK,,BLA… 5 1,use chainout, -section,, -cmd,ir, -newkey,new.key,, -newkeypass,pass:,,,BLANK,,BLANK,,BLANK,,BLAN… 6 0,missing chain, -section,, -cmd,ir, -newkey,new.key,, -newkeypass,pass:,,,BLANK,,BLANK,,BLANK,,BLA… 8 0,newkey missing arg, -section,, -cmd,ir, -newkey,,, -newkeypass,pass:,,,BLANK,,BLANK,,BLANK,,BLANK… 9 0,newkey is non-existing directory and file, -section,, -cmd,ir, -newkey,idontexist/idontexist,, -n… 10 0,newkey too many parameters, -section,, -cmd,ir, -newkey,abc,def, -newkeypass,pass:,,,BLANK,,BLANK… 11 0,newkey is an RSA key, -section,, -cmd,ir, -newkey,new.RSA2048.key,, -newkeypass,pass:,,,BLANK,,BL… 13 1,newkeypass, -section,, -cmd,ir, -newkey,new_pass_12345.key,, -newkeypass,pass:12345,,,BLANK,,BLAN… 14 1,read newkeypass from file, -section,, -cmd,ir, -newkey,new_pass_12345.key,, -newkeypass,file:1234… 15 1,newkeypass no prefix, -section,, -cmd,ir, -newkey,new_pass_12345.key,, -newkeypass,12345,,,BLANK,… [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
| H A D | LSUnit.h | 112 void onGroupIssued(const InstRef &IR, bool ShouldUpdateCriticalDep) { in onGroupIssued() argument 119 unsigned Cycles = IR.getInstruction()->getCyclesLeft(); in onGroupIssued() 121 CriticalPredecessor.IID = IR.getSourceIndex(); in onGroupIssued() 132 void onInstructionIssued(const InstRef &IR) { in onInstructionIssued() argument 137 const Instruction &IS = *IR.getInstruction(); in onInstructionIssued() 141 CriticalMemoryInstruction = IR; in onInstructionIssued() 143 CriticalMemoryInstruction = IR; in onInstructionIssued() 160 void onInstructionExecuted(const InstRef &IR) { in onInstructionExecuted() argument 166 CriticalMemoryInstruction.getSourceIndex() == IR.getSourceIndex()) { in onInstructionExecuted() 251 /// accomodate instruction IR. By default, LSU_AVAILABLE is returned if IR is [all …]
|
| /freebsd/sys/crypto/camellia/ |
| H A D | camellia.c | 105 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \ argument 108 ir = xr ^ kr; \ 110 t1 = ir >> 16; \ 111 yl = CAMELLIA_SP1110(ir & 0xff) \ 114 ^ CAMELLIA_SP4404((ir >> 8) & 0xff); \ 141 #define CAMELLIA_ROUNDSM(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \ argument 143 ir = CAMELLIA_SP1110(xr & 0xff); \ 145 ir ^= CAMELLIA_SP0222((xr>>24) & 0xff); \ 147 ir ^= CAMELLIA_SP3033((xr>>16) & 0xff); \ 149 ir ^= CAMELLIA_SP4404((xr>>8) & 0xff); \ [all …]
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/camellia/ |
| H A D | camellia.c | 118 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \ argument 121 ir = xr ^ kr; \ 123 t1 = ir >> 16; \ 124 yl = CAMELLIA_SP1110(ir & 0xff) \ 127 ^ CAMELLIA_SP4404((ir >> 8) & 0xff); \ 159 #define CAMELLIA_ROUNDSM(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \ argument 161 ir = CAMELLIA_SP1110(xr & 0xff) \ 170 ir ^= kr; \ 171 ir ^= il; \ 173 il ^= ir; \ [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | PrintPasses.cpp | 9 #include "llvm/IR/PrintPasses.h" 19 // Print IR out before/after specified passes. 22 llvm::cl::desc("Print IR before specified passes"), 26 PrintAfter("print-after", llvm::cl::desc("Print IR after specified passes"), 30 llvm::cl::desc("Print IR before each pass"), 33 llvm::cl::desc("Print IR after each pass"), 36 // Print out the IR after passes, similar to -print-after-all except that it 37 // only prints the IR after passes that change the IR. Those passes that do not 38 // make changes to the IR ar [all...] |
| H A D | TypeFinder.cpp | 9 // This file implements the TypeFinder class for the IR library. 13 #include "llvm/IR/TypeFinder.h" 15 #include "llvm/IR/BasicBlock.h" 16 #include "llvm/IR/Constant.h" 17 #include "llvm/IR/DebugInfoMetadata.h" 18 #include "llvm/IR/DerivedTypes.h" 19 #include "llvm/IR/Function.h" 20 #include "llvm/IR/Instruction.h" 21 #include "llvm/IR/Instructions.h" 22 #include "llvm/IR/Metadata.h" [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MCA/Stages/ |
| H A D | InOrderIssueStage.h | 37 InstRef IR; member 45 const InstRef &getInstruction() const { return IR; } in getInstruction() 46 InstRef &getInstruction() { return IR; } in getInstruction() 48 bool isValid() const { return (bool)IR; } in isValid() 85 /// Returns true if IR can execute during this cycle. 88 bool canExecute(const InstRef &IR); 91 Error tryIssue(InstRef &IR); 103 void notifyInstructionIssued(const InstRef &IR, 105 void notifyInstructionDispatched(const InstRef &IR, unsigned Ops, 107 void notifyInstructionExecuted(const InstRef &IR); [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFIRPeephole.cpp | 1 //===------------ BPFIRPeephole.cpp - IR Peephole Transformation ----------===// 9 // IR level peephole optimization, specifically removing @llvm.stacksave() and 15 #include "llvm/IR/Instruction.h" 16 #include "llvm/IR/Instructions.h" 17 #include "llvm/IR/IntrinsicInst.h" 18 #include "llvm/IR/Module.h" 19 #include "llvm/IR/PassManager.h" 20 #include "llvm/IR/Type.h" 21 #include "llvm/IR/User.h" 22 #include "llvm/IR/Value.h" [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | CompileOnDemandLayer.h | 27 #include "llvm/IR/Attributes.h" 28 #include "llvm/IR/Constant.h" 29 #include "llvm/IR/Constants.h" 30 #include "llvm/IR/DataLayout.h" 31 #include "llvm/IR/Function.h" 32 #include "llvm/IR/GlobalAlias.h" 33 #include "llvm/IR/GlobalValue.h" 34 #include "llvm/IR/GlobalVariable.h" 35 #include "llvm/IR/Instruction.h" 36 #include "llvm/IR/Mangle [all...] |