OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Orig
(Results
1 - 25
of
51
) sorted by relevancy
1
2
3
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp
30
LoadInst *
Orig
= Builder.CreateLoad(Val->getType(), Ptr);
31
Value *Equal = Builder.CreateICmpEQ(
Orig
, Cmp);
32
Value *Res = Builder.CreateSelect(Equal, Val,
Orig
);
35
Res = Builder.CreateInsertValue(UndefValue::get(CXI->getType()),
Orig
, 0);
48
LoadInst *
Orig
= Builder.CreateLoad(Val->getType(), Ptr);
57
Res = Builder.CreateAdd(
Orig
, Val);
60
Res = Builder.CreateSub(
Orig
, Val);
63
Res = Builder.CreateAnd(
Orig
, Val);
66
Res = Builder.CreateNot(Builder.CreateAnd(
Orig
, Val));
69
Res = Builder.CreateOr(
Orig
, Val)
[
all
...]
LICM.cpp
753
auto CreateHoistedBlock = [&](BasicBlock *
Orig
) {
754
if (HoistDestinationMap.count(
Orig
))
755
return HoistDestinationMap[
Orig
];
757
BasicBlock::Create(C,
Orig
->getName() + ".licm",
Orig
->getParent());
758
HoistDestinationMap[
Orig
] = New;
764
<< " as hoist destination for " <<
Orig
->getName()
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTraverse.h
192
R_SExpr reduceUndefined(Undefined &
Orig
) { return true; }
193
R_SExpr reduceWildcard(Wildcard &
Orig
) { return true; }
195
R_SExpr reduceLiteral(Literal &
Orig
) { return true; }
197
R_SExpr reduceLiteralT(LiteralT<T> &
Orig
) { return true; }
198
R_SExpr reduceLiteralPtr(Literal &
Orig
) { return true; }
200
R_SExpr reduceFunction(Function &
Orig
, Variable *Nvd, R_SExpr E0) {
204
R_SExpr reduceSFunction(SFunction &
Orig
, Variable *Nvd, R_SExpr E0) {
208
R_SExpr reduceCode(Code &
Orig
, R_SExpr E0, R_SExpr E1) {
212
R_SExpr reduceField(Field &
Orig
, R_SExpr E0, R_SExpr E1) {
216
R_SExpr reduceApply(Apply &
Orig
, R_SExpr E0, R_SExpr E1)
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
VirtRegMap.h
171
Register
Orig
= getPreSplitReg(VirtReg);
172
return
Orig
?
Orig
: VirtReg;
MachineInstrBuilder.h
491
const MachineInstr &
Orig
, int FrameIndex,
495
const MachineInstr &
Orig
, int FrameIndex,
500
void updateDbgValueForSpill(MachineInstr &
Orig
, int FrameIndex, Register Reg);
MachineFunction.h
813
/// Create a new MachineInstr which is a copy of \p
Orig
, identical in all
820
MachineInstr *CloneMachineInstr(const MachineInstr *
Orig
);
822
/// Clones instruction or the whole instruction bundle \p
Orig
and insert
828
MachineBasicBlock::iterator InsertBefore, const MachineInstr &
Orig
);
TargetInstrInfo.h
381
/// The register in
Orig
->getOperand(0).getReg() will be substituted by
386
unsigned SubIdx, const MachineInstr &
Orig
,
389
/// Clones instruction or the whole instruction bundle \p
Orig
and
393
/// \p
Orig
must not return true for MachineInstr::isNotDuplicable().
396
const MachineInstr &
Orig
) const;
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DiagnosticInfo.h
642
/// (\p
Orig
) generated by one of its analyses (e.g. LAA) as its own analysis
646
const DiagnosticInfoIROptimization &
Orig
)
648
(DiagnosticKind)
Orig
.getKind(),
Orig
.getSeverity(), PassName,
649
Orig
.RemarkName,
Orig
.getFunction(),
Orig
.getLocation()),
650
CodeRegion(
Orig
.getCodeRegion()) {
652
std::copy(
Orig
.Args.begin(),
Orig
.Args.end(), std::back_inserter(Args))
[
all
...]
/src/external/apache2/llvm/dist/libcxx/benchmarks/
algorithms.bench.cpp
156
U&
Orig
) {
159
Copy =
Orig
;
172
auto
Orig
= Copies;
183
Copies =
Orig
;
string.bench.cpp
173
auto
Orig
= makeString(Length());
180
::new (static_cast<void*>(Storage + I)) std::string(
Orig
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineInstr.cpp
2230
const MachineInstr &
Orig
,
2232
const DIExpression *Expr = computeExprForSpill(
Orig
, SpillReg);
2234
BuildMI(BB, I,
Orig
.getDebugLoc(),
Orig
.getDesc());
2237
if (
Orig
.isNonListDebugValue())
2239
NewMI.addMetadata(
Orig
.getDebugVariable()).addMetadata(Expr);
2240
if (
Orig
.isDebugValueList()) {
2241
for (const MachineOperand &Op :
Orig
.debug_operands())
2251
const MachineInstr &
Orig
, int FrameIndex,
2253
const DIExpression *Expr = computeExprForSpill(
Orig
, SpilledOperands)
[
all
...]
MachineFunction.cpp
355
/// Create a new MachineInstr which is a copy of the '
Orig
' instruction,
358
MachineFunction::CloneMachineInstr(const MachineInstr *
Orig
) {
360
MachineInstr(*this, *
Orig
);
364
MachineBasicBlock::iterator InsertBefore, const MachineInstr &
Orig
) {
366
MachineBasicBlock::const_instr_iterator I =
Orig
.getIterator();
380
// Copy over call site info to the cloned instruction if needed. If
Orig
is in
383
if (
Orig
.shouldUpdateCallSiteInfo())
384
copyCallSiteInfo(&
Orig
, FirstClone);
TargetInstrInfo.cpp
422
const MachineInstr &
Orig
,
424
MachineInstr *MI = MBB.getParent()->CloneMachineInstr(&
Orig
);
436
MachineBasicBlock::iterator InsertBefore, const MachineInstr &
Orig
) const {
437
assert(!
Orig
.isNotDuplicable() && "Instruction cannot be duplicated");
439
return MF.CloneMachineInstrBundle(MBB, InsertBefore,
Orig
);
SplitKit.cpp
344
const LiveInterval &
Orig
= LIS.getInterval(OrigReg);
345
assert(!
Orig
.empty() && "Splitting empty interval?");
346
LiveInterval::const_iterator I =
Orig
.find(Idx);
349
if (I !=
Orig
.end() && I->start <= Idx)
353
return I !=
Orig
.begin() && (--I)->end == Idx;
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclOpenMP.h
193
///
Orig
parameter of the initializer.
194
Expr *
Orig
= nullptr;
245
/// Get
Orig
variable of the initializer.
246
Expr *getInitOrig() { return
Orig
; }
247
const Expr *getInitOrig() const { return
Orig
; }
256
/// Set initializer
Orig
and Priv vars.
258
Orig
= OrigE;
ASTContext.h
1211
QualType
Orig
, const FunctionProtoType::ExceptionSpecInfo &ESI);
1248
QualType getAdjustedType(QualType
Orig
, QualType New) const;
1249
CanQualType getAdjustedType(CanQualType
Orig
, CanQualType New) const {
1251
getAdjustedType((QualType)
Orig
, (QualType)New));
1571
void adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *
Orig
,
/src/external/apache2/llvm/dist/llvm/tools/bugpoint/
Miscompilation.cpp
180
// Restore
orig
program & free test.
268
std::unique_ptr<Module>
Orig
= BD.swapProgramIn(std::move(Clone));
285
BD.setNewProgram(std::move(
Orig
));
505
std::unique_ptr<Module>
Orig
= BD.swapProgramIn(std::move(Clone));
527
BD.setNewProgram(std::move(
Orig
));
530
BD.setNewProgram(std::move(
Orig
));
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h
85
CallEventRef(const CallEventRef &
Orig
) : IntrusiveRefCntPtr<const T>(
Orig
) {}
361
ProgramStateRef
Orig
= nullptr) const;
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstrInfo.cpp
1128
const MachineInstr &
Orig
,
1130
bool ClobbersEFLAGS =
Orig
.modifiesRegister(X86::EFLAGS, &TRI);
1136
switch (
Orig
.getOpcode()) {
1144
const DebugLoc &DL =
Orig
.getDebugLoc();
1146
.add(
Orig
.getOperand(0))
1149
MachineInstr *MI = MBB.getParent()->CloneMachineInstr(&
Orig
);
1154
NewMI.substituteRegister(
Orig
.getOperand(0).getReg(), DestReg, SubIdx, TRI);
1968
#define VPERM_CASES(
Orig
, New) \
1969
case X86::
Orig
##128rr: return X86::New##128rr; \
1970
case X86::
Orig
##128rrkz: return X86::New##128rrkz;
[
all
...]
X86InstrInfo.h
239
const MachineInstr &
Orig
,
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp
1504
// value
Orig
. Appends an extra 0 index for array-allocas, preserving the
1506
auto GetFramePointer = [&](Value *
Orig
) -> Value * {
1507
FieldIDType Index = FrameData.getFieldIndex(
Orig
);
1513
if (auto *AI = dyn_cast<AllocaInst>(
Orig
)) {
1526
if (isa<AllocaInst>(
Orig
)) {
1534
if (GEP->getResultElementType() !=
Orig
->getType())
1535
return Builder.CreateBitCast(GEP,
Orig
->getType(),
1536
Orig
->getName() + Twine(".cast"));
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp
252
ProgramStateRef
Orig
) const {
253
ProgramStateRef Result = (
Orig
?
Orig
: getState());
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp
4434
TreePatternNodePtr
Orig
,
4450
errs() <<
Orig
->getOperator()->getName() << ": Idxs = [ ";
4462
Orig
->getOperator(), std::move(NewChildren),
Orig
->getNumTypes());
4465
R->setName(
Orig
->getName());
4466
R->setNamesAsPredicateArg(
Orig
->getNamesAsPredicateArg());
4467
R->setPredicateCalls(
Orig
->getPredicateCalls());
4468
R->setTransformFn(
Orig
->getTransformFn());
4469
for (unsigned i = 0, e =
Orig
->getNumTypes(); i != e; ++i)
4470
R->setType(i,
Orig
->getExtType(i))
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Template.h
524
void adjustForRewrite(RewriteKind RK, FunctionDecl *
Orig
, QualType &T,
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h
228
const MachineInstr &
Orig
,
233
const MachineInstr &
Orig
) const override;
Completed in 57 milliseconds
1
2
3
Indexes created Tue Jun 16 00:25:01 UTC 2026