OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Repl
(Results
1 - 15
of
15
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Support/
Regex.cpp
136
std::string Regex::sub(StringRef
Repl
, StringRef String,
149
while (!
Repl
.empty()) {
151
std::pair<StringRef, StringRef> Split =
Repl
.split('\\');
158
if (
Repl
.size() != Split.first.size() &&
165
Repl
= Split.second;
168
switch (
Repl
[0]) {
171
Res +=
Repl
[0];
172
Repl
=
Repl
.substr(1);
178
Repl
= Repl.substr(1)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
GVNHoist.cpp
489
void makeGepsAvailable(Instruction *
Repl
, BasicBlock *HoistPt,
493
void updateAlignment(Instruction *I, Instruction *
Repl
);
496
//
Repl
. Returns the number of instructions removed.
497
unsigned rauw(const SmallVecInsn &Candidates, Instruction *
Repl
,
503
// Remove all other instructions and replace them with
Repl
.
504
unsigned removeAndReplace(const SmallVecInsn &Candidates, Instruction *
Repl
,
507
// In the case
Repl
is a load or a store, we make all their GEPs
510
bool makeGepOperandsAvailable(Instruction *
Repl
, BasicBlock *HoistPt,
946
void GVNHoist::makeGepsAvailable(Instruction *
Repl
, BasicBlock *HoistPt,
964
// Copy Gep and replace its uses in
Repl
with ClonedGep
[
all
...]
GVN.cpp
1145
// where we have a value available in
repl
, also keep track of whether we see
1879
static void patchAndReplaceAllUsesWith(Instruction *I, Value *
Repl
) {
1880
patchReplacementInstruction(I,
Repl
);
1881
I->replaceAllUsesWith(
Repl
);
2416
Value *
Repl
= findLeader(I->getParent(), Num);
2417
if (!
Repl
) {
2421
} else if (
Repl
== I) {
2428
patchAndReplaceAllUsesWith(I,
Repl
);
2429
if (MD &&
Repl
->getType()->isPtrOrPtrVectorTy())
2430
MD->invalidateCachedPointerInfo(
Repl
);
[
all
...]
NewGVN.cpp
3657
static void patchAndReplaceAllUsesWith(Instruction *I, Value *
Repl
) {
3658
patchReplacementInstruction(I,
Repl
);
3659
I->replaceAllUsesWith(
Repl
);
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
TextDiagnostics.cpp
80
Replacement
Repl
(SM, Hint.RemoveRange, Hint.CodeToInsert);
82
if (llvm::Error Err = Repls.add(
Repl
)) {
83
llvm::errs() << "Error applying replacement " <<
Repl
.toString()
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Regex.h
88
/// \p String with the \p
Repl
string. Backreferences like "\0" in the
97
std::string sub(StringRef
Repl
, StringRef String,
/src/external/apache2/llvm/dist/clang/tools/driver/
driver.cpp
132
std::string
Repl
= llvm::Regex(MatchPattern).sub(ReplPattern, Args[i]);
134
if (
Repl
!= Args[i]) {
135
OS << "### Replacing '" << Args[i] << "' with '" <<
Repl
<< "'\n";
136
Args[i] = GetStableCStr(SavedStrings,
Repl
);
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64SIMDInstrOpt.cpp
300
for (auto &
Repl
: I.ReplOpc)
301
ReplInstrMCID.push_back(&TII->get(
Repl
));
527
for (auto &
Repl
: I.ReplOpc) {
528
ReplInstrMCID.push_back(&TII->get(
Repl
));
530
if (
Repl
!= AArch64::STPQi &&
Repl
!= AArch64::STPDi)
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
Local.h
382
void patchReplacementInstruction(Instruction *I, Value *
Repl
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
InlineAsmLowering.cpp
228
if (const char *
Repl
= TLI->LowerXConstraint(OpInfo.ConstraintVT)) {
229
OpInfo.ConstraintCode =
Repl
;
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp
3408
const char *
Repl
= StringSwitch<const char *>(Name)
3413
static_cast<X86Operand &>(*Operands[0]).setTokenValue(
Repl
);
4030
const char *
Repl
= StringSwitch<const char *>(Op.getToken())
4040
if (
Repl
) {
4046
Operands[0] = X86Operand::CreateToken(
Repl
, IDLoc);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp
5103
llvm::Metadata *
Repl
;
5110
Repl
= P.second;
5112
Repl
= It->second;
5114
if (auto *GVE = dyn_cast_or_null<llvm::DIGlobalVariableExpression>(
Repl
))
5115
Repl
= GVE->getVariable();
5116
DBuilder.replaceTemporary(std::move(FwdDecl), cast<llvm::MDNode>(
Repl
));
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp
5104
Value *
Repl
= Addr;
5453
MemoryInst->replaceUsesOfWith(
Repl
, SunkAddr);
5460
if (
Repl
->use_empty()) {
5463
Repl
, TLInfo, nullptr,
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Local.cpp
2618
void llvm::patchReplacementInstruction(Instruction *I, Value *
Repl
) {
2619
auto *ReplInst = dyn_cast<Instruction>(
Repl
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp
5004
if (const char *
Repl
= LowerXConstraint(OpInfo.ConstraintVT)) {
5005
OpInfo.ConstraintCode =
Repl
;
Completed in 107 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026