| /openbsd/src/gnu/llvm/llvm/lib/Target/PowerPC/ |
| D | PPCEarlyReturn.cpp | 71 for (MachineBasicBlock::iterator J = Pred->getLastNonDebugInstr();;) { in processBlock() local 72 if (J == Pred->end()) in processBlock() 75 if (J->getOpcode() == PPC::B) { in processBlock() 76 if (J->getOperand(0).getMBB() == &ReturnMBB) { in processBlock() 80 Pred->insert(J, MI); in processBlock() 82 MachineBasicBlock::iterator K = J--; in processBlock() 88 } else if (J->getOpcode() == PPC::BCC) { in processBlock() 89 if (J->getOperand(2).getMBB() == &ReturnMBB) { in processBlock() 95 .add(J->getOperand(0)) in processBlock() 96 .add(J->getOperand(1)); in processBlock() [all …]
|
| /openbsd/src/games/quiz/datfiles/ |
| D | pres | 1 {G{eorge} }Washington:1789-{17}97:{J{ohn} }Adams:{J{ohn} }Adams 2 {J{ohn} }Adams:1797-1801:{T{homas} }Jefferson:{T{homas} }Jefferson 4 {J{ames} }Madison 5 {J{ames} }Madison:1809-{18}17:{G{eorge} }Clinton|{E{lbridge} }Gerry:\ 6 {J{ames} }Monroe 7 {J{ames} }Monroe:1817-1825:\ 8 {D{aniel} }{D{.} }Tompkins:{J{ohn} }{Q{uincy} }Adams 9 {J{ohn} }{Q{uincy} }Adams:1825-{{18}2}9:{J{ohn} }{C{aldwell} }Calhoun:\ 12 {J{ohn} }{C{aldwell} }Calhoun|{M{artin} }Van Buren:{M{artin} }Van Buren 15 {W{illiam|m} }{H{enry} }Harrison:1841:{J{ohn} }Tyler:{J{ohn} }Tyler [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm-c/ |
| D | LLJIT.h | 122 LLVMErrorRef LLVMOrcDisposeLLJIT(LLVMOrcLLJITRef J); 130 LLVMOrcExecutionSessionRef LLVMOrcLLJITGetExecutionSession(LLVMOrcLLJITRef J); 138 LLVMOrcJITDylibRef LLVMOrcLLJITGetMainJITDylib(LLVMOrcLLJITRef J); 144 const char *LLVMOrcLLJITGetTripleString(LLVMOrcLLJITRef J); 149 char LLVMOrcLLJITGetGlobalPrefix(LLVMOrcLLJITRef J); 159 LLVMOrcLLJITMangleAndIntern(LLVMOrcLLJITRef J, const char *UnmangledName); 170 LLVMErrorRef LLVMOrcLLJITAddObjectFile(LLVMOrcLLJITRef J, LLVMOrcJITDylibRef JD, 182 LLVMErrorRef LLVMOrcLLJITAddObjectFileWithRT(LLVMOrcLLJITRef J, 195 LLVMErrorRef LLVMOrcLLJITAddLLVMIRModule(LLVMOrcLLJITRef J, 208 LLVMErrorRef LLVMOrcLLJITAddLLVMIRModuleWithRT(LLVMOrcLLJITRef J, [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| D | TimeProfiler.cpp | 158 json::OStream J(OS); in write() local 159 J.objectBegin(); in write() 160 J.attributeBegin("traceEvents"); in write() 161 J.arrayBegin(); in write() 168 J.object([&] { in write() 169 J.attribute("pid", Pid); in write() 170 J.attribute("tid", int64_t(Tid)); in write() 171 J.attribute("ph", "X"); in write() 172 J.attribute("ts", StartUs); in write() 173 J.attribute("dur", DurUs); in write() [all …]
|
| /openbsd/src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithLazyReexports/ |
| D | LLJITWithLazyReexports.cpp | 103 auto J = ExitOnErr(LLJITBuilder().create()); in main() local 106 J->getIRTransformLayer().setTransform( in main() 117 createLocalIndirectStubsManagerBuilder(J->getTargetTriple()); in main() 120 J->getTargetTriple().str(), in main() 125 J->getTargetTriple(), J->getExecutionSession(), 0)); in main() 128 ExitOnErr(J->addIRModule(ExitOnErr(parseExampleModule(FooMod, "foo-mod")))); in main() 129 ExitOnErr(J->addIRModule(ExitOnErr(parseExampleModule(BarMod, "bar-mod")))); in main() 130 ExitOnErr(J->addIRModule(ExitOnErr(parseExampleModule(MainMod, "main-mod")))); in main() 133 MangleAndInterner Mangle(J->getExecutionSession(), J->getDataLayout()); in main() 141 ExitOnErr(J->getMainJITDylib().define( in main() [all …]
|
| /openbsd/src/gnu/gcc/libgomp/testsuite/libgomp.fortran/appendix-a/ |
| D | a.28.4.f90 | 4 INTEGER I, J variable 9 DO J=1,100 10 B(J) = J - 1 12 DO J=1,100 13 A(J) = J ! B becomes undefined at this point 15 DO J=1,50 16 B(J) = B(J) + 1 ! B is undefined
|
| D | a.26.1.f90 | 3 INTEGER I, J variable 5 J=2 8 J=J+2 10 PRINT *, I, J ! I and J are undefined
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.misc-tests/ |
| D | sort2.c | 13 int I,J,K,L; in main() local 19 for (J = I*10; J < (I+1)*10; J++) in main() 20 Tab[K++] = J&1 ? J+1 : J-1; in main() 47 int I,J; in Print_array() local 51 for (J=0; J<=9; J++); /*printf("%5d",Tab[10*I+J]); */ in Print_array()
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-dwarfdump/ |
| D | Statistics.cpp | 652 static void printDatum(json::OStream &J, const char *Key, json::Value Value) { in printDatum() argument 654 J.attribute(Key, "overflowed"); in printDatum() 656 J.attribute(Key, Value); in printDatum() 661 static void printLocationStats(json::OStream &J, const char *Key, in printLocationStats() argument 664 J.attribute((Twine(Key) + in printLocationStats() 669 J.attribute( in printLocationStats() 679 J.attribute((Twine(Key) + in printLocationStats() 684 J.attribute((Twine(Key) + in printLocationStats() 695 J.attribute((Twine(Key) + " with [" + Twine((i - 1) * 10) + "%," + in printLocationStats() 701 J.attribute((Twine(Key) + " with [" + Twine((i - 1) * 10) + "%," + in printLocationStats() [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/compile/ |
| D | 20000601-1.f | 15 INTEGER J, JB, JJ, JP, KV, KM 18 DO J = 1, M 19 JB = MIN( 1, M-J+1 ) 20 DO JJ = J, J + JB - 1 23 CALL SSWAP( JB, AB( KV+1+JJ-J, J ), LDAB-1, 24 $ AB( KV+JP+JJ-J, J ), LDAB-1 )
|
| D | 20000601-2.f | 14 INTEGER J, JB, JJ, JP, KV, KM 17 DO J = 1, M 18 JB = MIN( 1, M-J+1 ) 19 DO JJ = J, J + JB - 1 22 CALL SSWAP( JB, AB( KV+1+JJ-J, J ), LDAB-1, 23 $ AB( KV+JP+JJ-J, J ), LDAB-1 )
|
| /openbsd/src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithInitializers/ |
| D | LLJITWithInitializers.cpp | 72 auto J = ExitOnErr(LLJITBuilder().create()); in main() local 76 ExitOnErr(J->addIRModule(std::move(M))); in main() 81 ExitOnErr(J->getMainJITDylib().define(absoluteSymbols( in main() 82 {{J->mangleAndIntern("InitializersRunFlag"), in main() 84 {J->mangleAndIntern("DeinitializersRunFlag"), in main() 88 ExitOnErr(J->initialize(J->getMainJITDylib())); in main() 91 ExitOnErr(J->deinitialize(J->getMainJITDylib())); in main()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
| D | explicit77.C | 3 template <int I, int J, int K> 6 template <int I, int J> 7 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {}; 9 template <int I, int J, int K> 10 void f(S<I, J, K>, S<I, I, I>);
|
| D | expr3.C | 6 template <int J> 7 void foo(S<J - 1>); 12 template <int J> 13 void fun(S<J>, S<J * 2>);
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/execute/ |
| D | 20010116.f | 21 DO J = 4, 2, -1 22 I = J 23 TEMP = ABS1( A(J,J) ) 24 TEMP2 = ABS1( A( J+1, J ) ) 30 IF ( ABS1(A(J,J-1))*TEMP2 .LE. TEMP ) GO TO 90
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/ |
| D | bytemap_test.cpp | 20 for (scudo::uptr J = 0; J < Size; J++) { in testMap() local 21 if (J % 7) in testMap() 22 EXPECT_EQ(Map[J], 0); in testMap() 24 EXPECT_EQ(Map[J], (J % 100) + 1); in testMap()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
| D | store-expr2.C | 18 struct J { struct 21 J(N *x, H *y) : c(x), d(y) {} in J() function 28 K(const J &x) : c(x.c), d(x.d) {} in K() 35 J u() in u() 39 return J(e[x], this); in u() 42 J v() { return J((N*)64, this); } in v() 47 J u() { return d.u(); } in u() 48 J v() { return d.v(); } in v()
|
| D | store-expr1.C | 18 struct J { struct 21 J(N *x, H *y) : c(x), d(y) {} in J() function 28 K(const J &x) : c(x.c), d(x.d) {} in K() 35 J u() in u() 39 return J(e[x], this); in u() 42 J v() { return J((N*)64, this); } in v() 47 J u() { return d.u(); } in u() 48 J v() { return d.v(); } in v()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/java/ |
| D | parse.h | 495 #define JDEP_DECL(J) ((J)->decl) argument 496 #define JDEP_DECL_WFL(J) ((J)->decl) argument 497 #define JDEP_KIND(J) ((J)->kind) argument 498 #define JDEP_WFL(J) ((J)->wfl) argument 499 #define JDEP_MISC(J) ((J)->misc) argument 500 #define JDEP_ENCLOSING(J) ((J)->enclosing) argument 501 #define JDEP_CLASS(J) ((J)->class) argument 502 #define JDEP_APPLY_PATCH(J,P) (*(J)->patch = (P)) argument 503 #define JDEP_GET_PATCH(J) ((J)->patch) argument 504 #define JDEP_CHAIN(J) ((J)->next) argument [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| D | HexagonVLIWPacketizer.cpp | 1207 const MachineInstr &J) { in hasDeadDependence() argument 1211 if (I.isCall() || J.isCall()) in hasDeadDependence() 1213 if (HII->isPredicated(I) || HII->isPredicated(J)) in hasDeadDependence() 1223 for (auto &MO : J.operands()) { in hasDeadDependence() 1234 const MachineInstr &J) { in hasControlDependence() argument 1238 doesModifyCalleeSavedReg(J, HRI)) || in hasControlDependence() 1239 (HII->isSaveCalleeSavedRegsCall(J) && in hasControlDependence() 1244 if (isControlFlow(I) && isControlFlow(J)) in hasControlDependence() 1258 if (HII->isLoopN(I) && isBadForLoopN(J)) in hasControlDependence() 1260 if (HII->isLoopN(J) && isBadForLoopN(I)) in hasControlDependence() [all …]
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-mca/Views/ |
| D | ResourcePressureView.cpp | 79 for (unsigned J = 0; J < NumUnits; ++J) { in printColumnNames() local 83 OS << '.' << J; in printColumnNames() 118 for (unsigned J = 0; J < NumUnits; ++J) { in printResourcePressurePerIter() local 121 FOS << '.' << J; in printResourcePressurePerIter() 161 for (unsigned J = 0; J < NumResourceUnits; ++J) { in printResourcePressurePerInst() local 162 double Usage = ResourceUsage[J + BaseEltIdx]; in printResourcePressurePerInst() 163 printResourcePressure(FOS, Usage / Executions, (J + 1) * 7); in printResourcePressurePerInst()
|
| /openbsd/src/gnu/llvm/llvm/examples/OrcV2Examples/OrcV2CBindingsReflectProcessSymbols/ |
| D | OrcV2CBindingsReflectProcessSymbols.c | 131 LLVMOrcLLJITRef J; in main() local 134 if ((Err = LLVMOrcCreateLLJIT(&J, 0))) { in main() 145 LLVMOrcLLJITMangleAndIntern(J, "mul"), in main() 146 LLVMOrcLLJITMangleAndIntern(J, "add"), 0}; in main() 152 &ProcessSymbolsGenerator, LLVMOrcLLJITGetGlobalPrefix(J), in main() 158 LLVMOrcJITDylibAddGenerator(LLVMOrcLLJITGetMainJITDylib(J), in main() 167 LLVMOrcJITDylibRef MainJD = LLVMOrcLLJITGetMainJITDylib(J); in main() 169 if ((Err = LLVMOrcLLJITAddLLVMIRModule(J, MainJD, TSM))) { in main() 182 if ((Err = LLVMOrcLLJITLookup(J, &MulAddAddr, "mul_add"))) { in main() 211 if ((Err = LLVMOrcDisposeLLJIT(J))) { in main()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/ |
| D | LiveRangeUtils.h | 29 typename LiveRangeT::iterator J = LR.begin(), E = LR.end(); in DistributeRange() local 30 while (J != E && VNIClasses[J->valno->id] == 0) in DistributeRange() 31 ++J; in DistributeRange() 32 for (typename LiveRangeT::iterator I = J; I != E; ++I) { in DistributeRange() 38 *J++ = *I; in DistributeRange() 40 LR.segments.erase(J, E); in DistributeRange()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| D | gnu99-init-1.c | 14 struct G { int I; struct E J; int K; }; member 15 struct H { int I; struct F J; int K; }; member 16 struct G k = { .J = {}, 1 }; 17 struct H l = { .J.H = {}, 2 }; 18 struct H m = { .J = {}, 3 }; 19 struct I { int J; int K[3]; int L; }; member 46 if (n[x].N || n[x].O[0].J || n[x].O[0].L) in main() 53 if (n[x].O[y].J) in main()
|
| /openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| D | LLJIT.cpp | 88 ORCPlatformSupport(orc::LLJIT &J) : J(J) {} in ORCPlatformSupport() argument 101 if (auto WrapperAddr = J.lookup("__orc_rt_jit_dlopen_wrapper")) { in initialize() 102 return J.getExecutionSession().callSPSWrapper<SPSDLOpenSig>( in initialize() 113 if (auto WrapperAddr = J.lookup("__orc_rt_jit_dlclose_wrapper")) { in deinitialize() 115 auto E = J.getExecutionSession().callSPSWrapper<SPSDLCloseSig>( in deinitialize() 129 orc::LLJIT &J; member in __anon991611b70111::ORCPlatformSupport 179 GenericLLVMIRPlatformSupport(LLJIT &J) in GenericLLVMIRPlatformSupport() argument 180 : J(J), InitFunctionPrefix(J.mangle("__orc_init_func.")), in GenericLLVMIRPlatformSupport() 181 DeInitFunctionPrefix(J.mangle("__orc_deinit_func.")) { in GenericLLVMIRPlatformSupport() 186 setInitTransform(J, GlobalCtorDtorScraper(*this, InitFunctionPrefix, in GenericLLVMIRPlatformSupport() [all …]
|