OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isNullValue
(Results
1 - 25
of
75
) sorted by null
1
2
3
/external/llvm/include/llvm/IR/
Constant.h
52
///
isNullValue
- Return true if this is the value that would be returned by
54
bool
isNullValue
() const;
/external/llvm/lib/IR/
ConstantFold.cpp
47
if (CV->
isNullValue
()) return Constant::getNullValue(DstTy);
244
if (RHS->
isNullValue
())
522
if (V->
isNullValue
() && !DestTy->isX86_MMXTy())
537
if (!CE->getOperand(i)->
isNullValue
()) {
600
if (V->
isNullValue
()) // Is it an integral null value?
605
if (V->
isNullValue
())
612
CE->getOperand(0)->
isNullValue
()) {
626
CE->getOperand(1)->
isNullValue
()) {
698
if (Cond->
isNullValue
()) return V2;
709
Constant *V = Cond->
isNullValue
() ? V2 : V1
[
all
...]
Constants.cpp
61
return
isNullValue
();
72
return
isNullValue
();
75
bool Constant::
isNullValue
() const {
267
if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->
isNullValue
())
763
if (C->
isNullValue
() && rangeOnlyContains(V.begin(), V.end(), C))
884
isZero = V[0]->
isNullValue
();
887
if (!V[i]->
isNullValue
())
[
all
...]
/libcore/luni/src/main/java/javax/crypto/
EncryptedPrivateKeyInfo.java
101
if (params != null && !
isNullValue
(params)) {
116
private static boolean
isNullValue
(byte[] toCheck) {
/external/llvm/lib/CodeGen/
ShadowStackGC.cpp
62
bool
IsNullValue
(Value *V);
211
if (!C->
isNullValue
())
315
bool ShadowStackGC::
IsNullValue
(Value *V) {
317
return C->
isNullValue
();
337
if (
IsNullValue
(CI->getArgOperand(1)))
/external/llvm/lib/Target/
TargetLoweringObjectFile.cpp
54
if (!C->
isNullValue
())
/external/llvm/lib/Analysis/
ConstantFolding.cpp
51
if (C->
isNullValue
() && !DestTy->isX86_MMXTy())
518
if (GV->getInitializer()->
isNullValue
())
673
CE->getOperand(0)->
isNullValue
()) {
720
if (Ptr->
isNullValue
() || BasePtr != 0) {
[
all
...]
SparsePropagation.cpp
157
Succs[C->
isNullValue
()] = true;
ValueTracking.cpp
[
all
...]
LazyValueInfo.cpp
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp
566
cast<ConstantSDNode>(N.getOperand(3))->
isNullValue
()) {
[
all
...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
SIISelLowering.cpp
407
&& False->
isNullValue
()
427
&& C->
isNullValue
()
AMDGPUISelLowering.cpp
308
return C->
isNullValue
();
/external/mesa3d/src/gallium/drivers/radeon/
SIISelLowering.cpp
407
&& False->
isNullValue
()
427
&& C->
isNullValue
()
AMDGPUISelLowering.cpp
308
return C->
isNullValue
();
/external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp
55
V->
isNullValue
() ? Subtarget->getBZeroEntry() : 0) {
/external/clang/lib/CodeGen/
CGDecl.cpp
708
return Init->
isNullValue
() || NumStores--;
739
assert(!Init->
isNullValue
() && !isa<llvm::UndefValue>(Init) &&
755
if (!Elt->
isNullValue
() && !isa<llvm::UndefValue>(Elt))
769
if (!Elt->
isNullValue
() && !isa<llvm::UndefValue>(Elt))
[
all
...]
/external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp
[
all
...]
/external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp
125
if (CV->
isNullValue
() || isa<UndefValue>(CV))
[
all
...]
/external/llvm/tools/bugpoint/
ExtractFunction.cpp
242
if (CS->getOperand(1)->
isNullValue
())
/external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp
397
if (C1->
isNullValue
() && C2->
isNullValue
() &&
GlobalOpt.cpp
569
!cast<Constant>(GEPI->getOperand(1))->
isNullValue
())
595
!cast<Constant>(U->getOperand(1))->
isNullValue
() ||
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp
430
if (C->
isNullValue
()) {
437
if (C->
isNullValue
()) {
InstructionCombining.cpp
703
InV = InC->
isNullValue
() ? FalseVInPred : TrueVInPred;
[
all
...]
InstCombineCompares.cpp
675
!cast<Constant>(GEPLHS->getOperand(i))->
isNullValue
()) {
687
!cast<Constant>(GEPRHS->getOperand(i))->
isNullValue
()) {
[
all
...]
Completed in 5554 milliseconds
1
2
3