OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OBO
(Results
1 - 13
of
13
) sorted by null
/external/llvm/lib/IR/
ConstantRange.cpp
133
typedef OverflowingBinaryOperator
OBO
;
147
assert((NoWrapKind ==
OBO
::NoSignedWrap ||
148
NoWrapKind ==
OBO
::NoUnsignedWrap ||
149
NoWrapKind == (
OBO
::NoUnsignedWrap |
OBO
::NoSignedWrap)) &&
163
if (NoWrapKind &
OBO
::NoUnsignedWrap)
167
if (NoWrapKind &
OBO
::NoSignedWrap) {
AsmWriter.cpp
[
all
...]
/external/llvm/unittests/IR/
ConstantRangeTest.cpp
575
typedef OverflowingBinaryOperator
OBO
;
581
ConstantRange::makeNoWrapRegion(Instruction::Add, C,
OBO
::NoUnsignedWrap);
586
ConstantRange::makeNoWrapRegion(Instruction::Add, C,
OBO
::NoSignedWrap);
591
Instruction::Add, C,
OBO
::NoSignedWrap |
OBO
::NoUnsignedWrap);
/external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp
807
if (auto *
OBO
= dyn_cast<OverflowingBinaryOperator>(NonConstIndex))
808
if (
OBO
->hasNoSignedWrap() &&
811
isa<ConstantInt>(
OBO
->getOperand(1))) {
812
auto *OpScev = SE->getSCEV(
OBO
->getOperand(0));
[
all
...]
ValueTracking.cpp
[
all
...]
ScalarEvolution.cpp
[
all
...]
/external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp
[
all
...]
/external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp
78
bool strengthenOverflowingOperation(BinaryOperator *
OBO
, Value *IVOperand);
/frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp
529
if (const auto *
OBO
= dyn_cast<OverflowingBinaryOperator>(V)) {
530
if (
OBO
->hasNoSignedWrap())
532
if (
OBO
->hasNoUnsignedWrap())
[
all
...]
/frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp
527
if (const auto *
OBO
= dyn_cast<OverflowingBinaryOperator>(V)) {
528
if (
OBO
->hasNoSignedWrap())
530
if (
OBO
->hasNoUnsignedWrap())
[
all
...]
/frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp
542
if (const auto *
OBO
= dyn_cast<OverflowingBinaryOperator>(V)) {
543
if (
OBO
->hasNoSignedWrap())
545
if (
OBO
->hasNoUnsignedWrap())
[
all
...]
/external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
806
if (const auto *
OBO
= dyn_cast<OverflowingBinaryOperator>(V)) {
807
if (
OBO
->hasNoSignedWrap())
809
if (
OBO
->hasNoUnsignedWrap())
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
122
OverflowingBinaryOperator *
OBO
= dyn_cast<OverflowingBinaryOperator>(&I);
123
if (!
OBO
|| !
OBO
->hasNoSignedWrap()) {
[
all
...]
Completed in 422 milliseconds