Home
last modified time | relevance | path

Searched refs:MORE (Results 1 – 25 of 31) sorted by relevance

12

/openbsd-src/lib/libc/regex/
H A Dregcomp.c110 #define MORE() (p->end - p->next > 0) macro
112 #define SEE(c) (MORE() && PEEK() == (c))
247 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
272 assert(!MORE() || SEE(stop)); in p_ere()
288 assert(MORE()); /* caller should have ensured this */ in p_ere_exp()
294 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()
307 REQUIRE(MORE() && GETNEXT() == ')', REG_EPAREN); in p_ere_exp()
338 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp()
343 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
352 if (!MORE()) in p_ere_exp()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A Dregcomp.c252 #define MORE() (p->end - p->next > 0) macro
254 #define SEE(c) (MORE() && PEEK() == (c))
264 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
265 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
266 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
404 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
429 assert(!MORE() || SEE(stop)); in p_ere()
446 assert(MORE()); /* caller should have ensured this */ in p_ere_exp()
452 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()
508 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DInstructionSelect.cpp110 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in runOnMachineFunction() local
122 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction()
195 reportGISelFailure(MF, TPC, MORE, "gisel-select", "cannot select", MI); in runOnMachineFunction()
271 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction()
279 MF, TPC, MORE, "gisel-select", in runOnMachineFunction()
290 reportGISelFailure(MF, TPC, MORE, R); in runOnMachineFunction()
H A DLegalizer.cpp315 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in runOnMachineFunction() local
346 reportGISelFailure(MF, TPC, MORE, "gisel-legalize", in runOnMachineFunction()
357 reportGISelFailure(MF, TPC, MORE, R); in runOnMachineFunction()
368 reportGISelWarning(MF, TPC, MORE, R); in runOnMachineFunction()
H A DUtils.cpp247 MachineOptimizationRemarkEmitter &MORE, in reportGISelDiagnostic() argument
259 MORE.emit(R); in reportGISelDiagnostic()
263 MachineOptimizationRemarkEmitter &MORE, in reportGISelWarning() argument
265 reportGISelDiagnostic(DS_Warning, MF, TPC, MORE, R); in reportGISelWarning()
269 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument
272 reportGISelDiagnostic(DS_Error, MF, TPC, MORE, R); in reportGISelFailure()
276 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument
283 if (TPC.isGlobalISelAbortEnabled() || MORE.allowExtraAnalysis(PassName)) in reportGISelFailure()
285 reportGISelFailure(MF, TPC, MORE, R); in reportGISelFailure()
H A DCombiner.cpp115 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in combineMachineInstrs() local
H A DRegBankSelect.cpp95 MORE = std::make_unique<MachineOptimizationRemarkEmitter>(MF, MBFI); in init()
707 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in assignRegisterBanks()
721 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in checkFunctionIsLegal()
H A DLoadStoreOpt.cpp406 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in doSingleStoreMerge() local
407 MORE.emit([&]() { in doSingleStoreMerge()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineFunctionPass.cpp98 MachineOptimizationRemarkEmitter MORE(MF, nullptr); in runOnFunction() local
99 MORE.emit([&]() { in runOnFunction()
H A DMachineOutliner.cpp477 MachineOptimizationRemarkEmitter MORE(*(C.getMF()), nullptr); in emitNotOutliningCheaperRemark() local
478 MORE.emit([&]() { in emitNotOutliningCheaperRemark()
505 MachineOptimizationRemarkEmitter MORE(*OF.MF, nullptr); in emitOutlinedFunctionRemark() local
525 MORE.emit(R); in emitOutlinedFunctionRemark()
985 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in emitInstrCountChangedRemark() local
986 MORE.emit([&]() { in emitInstrCountChangedRemark()
H A DMIRSampleProfile.cpp125 MachineOptimizationRemarkEmitter *MORE) { in setInitVals() argument
130 ORE = MORE; in setInitVals()
H A DEarlyIfConversion.cpp889 MachineOptimizationRemarkEmitter MORE(*MBB.getParent(), nullptr); in shouldConvertIf() local
902 MORE.emit([&]() { in shouldConvertIf()
988 MORE.emit([&]() { in shouldConvertIf()
1004 MORE.emit([&]() { in shouldConvertIf()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/
H A DUtils.h154 MachineOptimizationRemarkEmitter &MORE,
158 MachineOptimizationRemarkEmitter &MORE,
165 MachineOptimizationRemarkEmitter &MORE,
H A DRegBankSelect.h505 std::unique_ptr<MachineOptimizationRemarkEmitter> MORE; variable
/openbsd-src/gnu/usr.bin/perl/ext/re/
H A Dre.pm88 $flags{More} = $flags{MORE} =
698 =item MORE
/openbsd-src/sys/arch/macppc/dev/
H A Dif_mc.c128 #define MORE 0x10 /* More than one retry needed */ macro
757 if (xmtfs & MORE) in mc_tint()
/openbsd-src/gnu/usr.bin/cvs/contrib/
H A Dintro.doc109 MORE INFORMATION
/openbsd-src/usr.bin/file/magdir/
H A Djpeg122 # Here things get sticky. We can do ONE MORE marker segment with
H A Dmsdos328 #COMP.cOM MORE.COm
/openbsd-src/gnu/lib/libreadline/
H A DCHANGELOG122 [THERE ARE NO MORE #ifdef SHELL LINES IN THE C SOURCE FILES.]
129 [THERE ARE NO MORE #ifdef SHELL LINES IN ANY OF THE SOURCE FILES.]
/openbsd-src/regress/bin/ksh/
H A Dregress.t677 MORE=[abc]
681 echo "<$MORE>"
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperldsc.pod715 =head1 MORE ELABORATE RECORDS
718 =head2 Declaration of MORE ELABORATE RECORDS
H A Dperlhack.pod1141 =head1 MORE READING FOR GUTS HACKERS
/openbsd-src/usr.bin/vi/docs/
H A Dchangelog613 default and scrolling commands. MORE EX PARSER CHANGES.
/openbsd-src/usr.sbin/amd/doc/
H A Damdref.texinfo592 mt Xinu MORE/bsd. Contributed by Jan-Simon Pendry @t{<jsp@@doc.ic.ac.uk>}

12