OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Curr
(Results
1 - 25
of
27
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
GVN.h
264
LeaderTableEntry &
Curr
= LeaderTable[N];
265
if (!
Curr
.Val) {
266
Curr
.Val = V;
267
Curr
.BB = BB;
274
Node->Next =
Curr
.Next;
275
Curr
.Next = Node;
282
LeaderTableEntry *
Curr
= &LeaderTable[N];
284
while (
Curr
&& (
Curr
->Val != I ||
Curr
->BB != BB))
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransProtectedScope.cpp
64
SwitchCase *
Curr
= S->getSwitchCaseList();
65
if (!
Curr
)
67
Stmt *Parent = getCaseParent(
Curr
);
68
Curr
=
Curr
->getNextSwitchCase();
70
while (
Curr
) {
71
if (getCaseParent(
Curr
) != Parent)
73
Curr
=
Curr
->getNextSwitchCase();
77
Curr
= S->getSwitchCaseList()
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SuffixTree.h
267
SuffixTreeNode *
Curr
= ToVisit.back();
273
unsigned Length =
Curr
->ConcatLen;
278
for (auto &ChildPair :
Curr
->Children) {
291
if (
Curr
->isRoot())
297
N =
Curr
;
ScopedPrinter.h
153
uint64_t
Curr
= Value;
154
while (
Curr
> 0) {
155
if (
Curr
& 1)
157
Curr
>>= 1;
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
LineTable.cpp
201
for (const auto &
Curr
: Lines) {
202
if (
Curr
.Addr < BaseAddr)
206
PRIx64,
Curr
.Addr, BaseAddr);
207
if (
Curr
.Addr < Prev.Addr)
210
const uint64_t AddrDelta =
Curr
.Addr - Prev.Addr;
212
if (
Curr
.Line > Prev.Line)
213
LineDelta =
Curr
.Line - Prev.Line;
214
else if (Prev.Line >
Curr
.Line)
215
LineDelta = -((int32_t)(Prev.Line -
Curr
.Line));
218
if (
Curr
.File != Prev.File)
[
all
...]
GsymCreator.cpp
177
FirstIt = std::find_if(FirstIt, LastIt, [&](const auto &
Curr
) {
178
return Pred(*PrevIt++,
Curr
);
225
[&](const auto &Prev, const auto &
Curr
) {
226
if (Prev.Range.intersects(
Curr
.Range)) {
228
if (Prev.Range ==
Curr
.Range) {
235
if (Prev ==
Curr
) {
245
if (!Prev.hasRichInfo() &&
Curr
.hasRichInfo()) {
255
<<
Curr
<< "\n";
263
<<
Curr
<< "\n";
266
Curr
.Range.contains(Prev.Range.Start))
[
all
...]
/src/external/apache2/llvm/dist/clang/tools/driver/
cc1_main.cpp
122
size_t
Curr
= getCurrentStackAllocation();
124
if (
Curr
< kTargetStack) {
126
static_cast<volatile char *>(alloca(kTargetStack -
Curr
));
128
Alloc[kTargetStack -
Curr
- 1] = 0;
/src/external/apache2/llvm/dist/llvm/lib/Transforms/AggressiveInstCombine/
TruncInstCombine.cpp
85
Value *
Curr
= Worklist.back();
87
if (isa<Constant>(
Curr
)) {
92
auto *I = dyn_cast<Instruction>(
Curr
);
166
Value *
Curr
= Worklist.back();
168
if (isa<Constant>(
Curr
)) {
174
auto *I = cast<Instruction>(
Curr
);
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCBoolRetToInt.cpp
78
Value *
Curr
= WorkList.pop_back_val();
79
auto *CurrUser = dyn_cast<User>(
Curr
);
82
if (CurrUser && !isa<CallInst>(
Curr
) && !isa<Constant>(
Curr
))
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOReader.cpp
68
const SectionType *
Curr
=
71
for (; reinterpret_cast<const void *>(
Curr
) < End;
Curr
++) {
74
memcpy((void *)&Sec,
Curr
, sizeof(SectionType));
80
std::make_unique<Section>(constructSection(*
Curr
, NextSectionIndex)));
/src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
llvm-stress.cpp
724
BasicBlock *
Curr
= Instr->getParent();
726
BasicBlock *Next =
Curr
->splitBasicBlock(Loc, "CF");
727
Instr->moveBefore(
Curr
->getTerminator());
728
if (
Curr
!= &F->getEntryBlock()) {
729
BranchInst::Create(
Curr
, Next, Instr,
Curr
->getTerminator());
730
Curr
->getTerminator()->eraseFromParent();
/src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
macho2yaml.cpp
168
const SectionType *
Curr
=
170
for (; reinterpret_cast<const void *>(
Curr
) < End;
Curr
++) {
172
memcpy((void *)&Sec,
Curr
, sizeof(SectionType));
191
return reinterpret_cast<const char *>(
Curr
);
269
auto
Curr
= Start + i * sizeof(MachO::build_tool_version);
271
memcpy((void *)&BV,
Curr
, sizeof(MachO::build_tool_version));
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFVerifier.cpp
226
DWARFDie
Curr
= Die.getParent();
227
for (;
Curr
.isValid() && !
Curr
.isSubprogramDIE();
Curr
= Die.getParent()) {
228
if (
Curr
.getTag() == DW_TAG_inlined_subroutine) {
230
Curr
.dump(OS);
235
if (!
Curr
.isValid()) {
242
Curr
.find({DW_AT_call_all_calls, DW_AT_call_all_source_calls,
248
Curr
.dump(OS);
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
SparseBitVector.h
146
/// "
Curr
" bit. Returns -1 if the next set bit is not found.
147
int find_next(unsigned
Curr
) const {
148
if (
Curr
>= BITS_PER_ELEMENT)
151
unsigned WordPos =
Curr
/ BITWORD_SIZE;
152
unsigned BitPos =
Curr
% BITWORD_SIZE;
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CodeExtractor.cpp
104
User const *
Curr
= ToVisit.pop_back_val();
105
if (!Visited.insert(
Curr
).second)
107
if (isa<BlockAddress const>(
Curr
))
110
if (isa<Instruction>(
Curr
) && cast<Instruction>(
Curr
)->getParent() != &BB)
113
for (auto const &U :
Curr
->operands()) {
LoopUtils.cpp
1202
const Instruction *
Curr
= WorkList.pop_back_val();
1204
if (!L->contains(
Curr
))
1207
if (
Curr
->mayHaveSideEffects())
1210
for (auto U :
Curr
->users()) {
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
IRSimilarityIdentifier.cpp
401
for (unsigned &
Curr
: ValueMappingIt->second)
403
if (TargetValueNumbers.contains(
Curr
))
404
NewSet.insert(
Curr
);
ValueTracking.cpp
2151
auto *
Curr
= WorkList.pop_back_val();
2158
if (match(
Curr
, m_LogicalAnd(m_Value(), m_Value()))) {
2159
for (auto *CurrU :
Curr
->users())
2165
if (const BranchInst *BI = dyn_cast<BranchInst>(
Curr
)) {
2173
} else if (NonNullIfTrue && isGuard(
Curr
) &&
2174
DT->dominates(cast<Instruction>(
Curr
), CtxI)) {
4383
// Prev =
Curr
; // Prev = PHI (Prev_0,
Curr
)
4384
//
Curr
= A[i];
4385
// *Prev, *
Curr
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopDistribute.cpp
484
for (auto
Curr
= PartitionContainer.cbegin(),
487
Next != E; ++
Curr
, ++Next)
490
Curr
->getDistributedLoop()->getExitingBlock());
EarlyCSE.cpp
1077
Instruction *
Curr
= WorkList.pop_back_val();
1079
AvailableValues.insert(
Curr
, TorF);
1081
<<
Curr
->getName() << "' as " << *TorF << " in "
1087
if (unsigned Count = replaceDominatedUsesWith(
Curr
, TorF, DT,
1095
if (MatchBinOp(
Curr
, PropagateOpcode, LHS, RHS))
GVN.cpp
2568
BasicBlock *
Curr
, unsigned int ValNo) {
2587
VN.phiTranslate(Pred,
Curr
, VN.lookup(Op), *this);
/src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h
1925
const char *
Curr
= Start;
1926
bool IsDigitPart = isDigit(
Curr
[0]);
1928
bool IsDigit = isDigit(
Curr
[I]);
1932
Start = &
Curr
[I];
1933
IsDigitPart = isDigit(
Curr
[I]);
/src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp
1892
int
Curr
= Order;
1896
int Next = DisallowedPredecessors[
Curr
][I];
1909
Curr
= WorkList.pop_back_val();
1910
if (Seen[
Curr
])
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
CombinerHelper.cpp
3350
const MachineInstr *
Curr
= Ors.pop_back_val();
3351
Register OrLHS =
Curr
->getOperand(1).getReg();
3352
Register OrRHS =
Curr
->getOperand(2).getReg();
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp
3092
std::unique_ptr<TypePromotionAction>
Curr
= Actions.pop_back_val();
3093
Curr
->undo();
Completed in 99 milliseconds
1
2
Indexes created Tue Feb 24 01:34:59 UTC 2026