OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CV
(Results
1 - 25
of
32
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopUnrollAnalyzer.cpp
141
Constant *
CV
= CDS->getElementAsConstant(Index);
142
assert(
CV
&& "Constant expected.");
143
SimplifiedValues[&I] =
CV
;
BranchProbabilityInfo.cpp
933
ConstantInt *
CV
= GetConstantInt(RHS);
934
if (!
CV
)
976
} else if (
CV
->isZero()) {
997
} else if (
CV
->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) {
1001
} else if (
CV
->isMinusOne()) {
ValueTracking.cpp
1863
if (const auto *
CV
= dyn_cast<ConstantVector>(V)) {
1864
// We know that
CV
must be a vector of integers. Take the intersection of
1867
for (unsigned i = 0, e =
CV
->getNumOperands(); i != e; ++i) {
1870
Constant *Element =
CV
->getAggregateElement(i);
2810
const auto *
CV
= dyn_cast<Constant>(V);
2811
if (!
CV
|| !isa<FixedVectorType>(
CV
->getType()))
2815
unsigned NumElts = cast<FixedVectorType>(
CV
->getType())->getNumElements();
2820
auto *Elt = dyn_cast_or_null<ConstantInt>(
CV
->getAggregateElement(i));
3454
if (auto *
CV
= dyn_cast<Constant>(V))
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ObjCARC.cpp
55
const ColorVector &
CV
= BlockColors.find(InsertBefore->getParent())->second;
56
assert(
CV
.size() == 1 && "non-unique color for block!");
57
Instruction *EHPad =
CV
.front()->getFirstNonPHI();
ObjCARCOpts.cpp
786
const ColorVector &
CV
= BlockColors.find(&BB)->second;
787
assert(
CV
.size() == 1 && "non-unique color for block!");
788
Instruction *EHPad =
CV
.front()->getFirstNonPHI();
/src/external/apache2/llvm/dist/clang/lib/Analysis/
ThreadSafetyCommon.cpp
499
til::SExpr *
CV
= nullptr;
502
CV
= lookupVarDecl(VD);
506
til::SExpr *Arg =
CV
?
CV
: new (Arena) til::Load(E0);
510
if (VD &&
CV
)
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonISelLoweringHVX.cpp
542
Constant *
CV
= ConstantVector::get(Tmp);
545
LowerConstantPool(DAG.getConstantPool(
CV
, VecTy, Alignment), DAG);
1192
Constant *
CV
= ConstantVector::get(Tmp);
1195
LowerConstantPool(DAG.getConstantPool(
CV
, ByteTy, Alignment), DAG);
HexagonISelDAGToDAG.cpp
1059
unsigned
CV
= CN->getZExtValue();
1060
if (
CV
> 2)
1067
if (EV % (1 <<
CV
) != 0)
1069
unsigned DV = EV / (1 <<
CV
);
1123
uint32_t
CV
= SN->getZExtValue();
1143
if (LZ >
CV
)
1151
SDValue D = DAG.getConstant(TZ+
CV
, dl, VT);
/src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/Shared/
RPCUtils.h
1585
CV
.notify_all();
1597
CV
.wait(Lock);
1602
std::condition_variable
CV
;
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp
918
const ConstantVector *
CV
= dyn_cast<ConstantVector>(C);
924
} else if (
CV
|| CAZ) {
942
if(
CV
) {
944
if (!isa<UndefValue>(
CV
->getOperand(i)))
946
CV
->getOperand(i))->getValueAPF().convertToFloat();
964
if(
CV
) {
966
if (!isa<UndefValue>(
CV
->getOperand(i)))
968
CV
->getOperand(i))->getValueAPF().convertToDouble();
986
if(
CV
) {
988
if (!isa<UndefValue>(
CV
->getOperand(i))
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp
45
static Constant *BitCastConstantVector(Constant *
CV
, VectorType *DstTy) {
47
if (
CV
->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
48
if (
CV
->isNullValue()) return Constant::getNullValue(DstTy);
59
if (NumElts != cast<FixedVectorType>(
CV
->getType())->getNumElements())
64
if (Constant *Splat =
CV
->getSplatValue()) {
70
Type *Ty = IntegerType::get(
CV
->getContext(), 32);
73
ConstantExpr::getExtractElement(
CV
, ConstantInt::get(Ty, i));
1080
const APFloat &
CV
= CFP->getValueAPF();
1085
return ConstantFP::get(C->getContext(), neg(
CV
));
1165
const APInt *
CV
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFAbstractMemberAccess.cpp
580
const ConstantInt *
CV
= dyn_cast<ConstantInt>(IndexValue);
581
assert(
CV
);
582
return
CV
->getValue().getZExtValue();
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
Scalarizer.cpp
211
void gather(Instruction *Op, const ValueVector &
CV
);
213
void transferMetadataAndIRFlags(Instruction *Op, const ValueVector &
CV
);
276
ValueVector &
CV
= (CachePtr ? *CachePtr : Tmp);
278
if (
CV
[I])
279
return
CV
[I];
283
if (!
CV
[0]) {
285
CV
[0] = Builder.CreateBitCast(V, NewPtrTy, V->getName() + ".i0");
288
CV
[I] = Builder.CreateConstGEP1_32(ElTy,
CV
[0], I,
304
CV
[J] = Insert->getOperand(1)
[
all
...]
LICM.cpp
1469
const ColorVector &
CV
= BlockColors.find(&ExitBlock)->second;
1470
assert(
CV
.size() == 1 && "non-unique color for exit block!");
1471
BasicBlock *BBColor =
CV
.front();
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp
1289
Value *
CV
= Chain[I];
1291
Builder.CreateExtractElement(LI, Builder.getInt32(I),
CV
->getName());
1292
if (V->getType() !=
CV
->getType()) {
1293
V = Builder.CreateBitOrPointerCast(V,
CV
->getType());
1297
CV
->replaceAllUsesWith(V);
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
cpexprs.cc
310
class
CV
{ public:
318
const int
CV
::i = 42;
324
ATTRIBUTE_USED void
CV
::m(
CV
::t) {}
325
ATTRIBUTE_USED void
CV
::m(
CV
::t) const {}
326
ATTRIBUTE_USED void
CV
::m(
CV
::t) volatile {}
327
ATTRIBUTE_USED void
CV
::m(
CV
::t) const volatile {
[
all
...]
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
cpexprs.cc
310
class
CV
{ public:
318
const int
CV
::i = 42;
324
ATTRIBUTE_USED void
CV
::m(
CV
::t) {}
325
ATTRIBUTE_USED void
CV
::m(
CV
::t) const {}
326
ATTRIBUTE_USED void
CV
::m(
CV
::t) volatile {}
327
ATTRIBUTE_USED void
CV
::m(
CV
::t) const volatile {
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.cpp
1103
ComplexPairTy
CV
= Arg.getKnownRValue().getComplexVal();
1104
IRCallArgs[IRCallArgPos++] =
CV
.first;
1105
IRCallArgs[IRCallArgPos++] =
CV
.second;
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp
2216
const nonloc::CompoundVal&
CV
= Init.castAs<nonloc::CompoundVal>();
2217
nonloc::CompoundVal::iterator VI =
CV
.begin(), VE =
CV
.end();
2265
nonloc::CompoundVal
CV
= V.castAs<nonloc::CompoundVal>();
2266
nonloc::CompoundVal::iterator VI =
CV
.begin(), VE =
CV
.end();
2374
const nonloc::CompoundVal&
CV
= V.castAs<nonloc::CompoundVal>();
2375
nonloc::CompoundVal::iterator VI =
CV
.begin(), VE =
CV
.end();
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUCodeGenPrepare.cpp
934
// int
cv
= fr >= fb;
935
Value *
CV
= Builder.CreateFCmpOGE(FR, FB);
937
// jq = (
cv
? jq : 0);
938
JQ = Builder.CreateSelect(
CV
, JQ, Builder.getInt32(0));
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp
315
ConstantInt *
CV
= dyn_cast<ConstantInt>(RHS);
316
if (
CV
) {
317
if (
CV
->isZero())
319
else if (
CV
->isOne())
321
else if (
CV
->isMinusOne())
883
const ColorVector &
CV
= BlockColors.find(OrigCall->getParent())->second;
884
assert(
CV
.size() == 1 && "non-unique color for block!");
885
Instruction *EHPad =
CV
.front()->getFirstNonPHI();
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
PatternMatch.h
328
if (const auto *
CV
= dyn_cast<ConstantVal>(V))
329
return this->isValue(
CV
->getValue());
332
if (const auto *
CV
= dyn_cast_or_null<ConstantVal>(C->getSplatValue()))
333
return this->isValue(
CV
->getValue());
350
auto *
CV
= dyn_cast<ConstantVal>(Elt);
351
if (!
CV
|| !this->isValue(
CV
->getValue()))
735
if (auto *
CV
= dyn_cast<Class>(V)) {
736
VR =
CV
;
856
if (const auto *
CV
= dyn_cast<ConstantInt>(V)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp
2685
const APInt *
CV
;
2686
if (match(&I, m_c_Or(m_OneUse(m_Xor(m_Value(X), m_APInt(
CV
))), m_Value(Y))) &&
2687
!
CV
->isAllOnesValue() && MaskedValueIsZero(Y, *
CV
, 0, &I)) {
2691
return BinaryOperator::CreateXor(Or, ConstantInt::get(I.getType(), *
CV
));
InstCombineCalls.cpp
1034
Value *
CV
= ConstantInt::get(X->getType(), C);
1035
Value *V = Builder.CreateLShr(X,
CV
);
InstCombineCasts.cpp
1576
auto *
CV
= dyn_cast<Constant>(V);
1578
if (!
CV
|| !CVVTy)
1588
auto *CFP = dyn_cast_or_null<ConstantFP>(
CV
->getAggregateElement(i));
Completed in 96 milliseconds
1
2
Indexes created Tue Feb 24 08:35:24 UTC 2026