OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isInstructionTriviallyDead
(Results
1 - 14
of
14
) sorted by null
/external/llvm/lib/Transforms/Scalar/
DCE.cpp
44
if (
isInstructionTriviallyDead
(Inst)) {
104
if (
isInstructionTriviallyDead
(I)) { // If the instruction is dead.
DeadStoreElimination.cpp
130
if (
isInstructionTriviallyDead
(OpI))
625
if (
isInstructionTriviallyDead
(BBI)) {
LoopIdiomRecognize.cpp
156
if (
isInstructionTriviallyDead
(OpI))
169
if (
isInstructionTriviallyDead
(I))
TailDuplication.cpp
363
if (
isInstructionTriviallyDead
(Inst))
EarlyCSE.cpp
321
if (
isInstructionTriviallyDead
(Inst)) {
LICM.cpp
289
if (
isInstructionTriviallyDead
(&I)) {
LoopUnswitch.cpp
[
all
...]
ScalarReplAggregates.cpp
[
all
...]
LoopStrengthReduce.cpp
634
if (I == 0 || !
isInstructionTriviallyDead
(I))
[
all
...]
/external/llvm/include/llvm/Transforms/Utils/
Local.h
55
///
isInstructionTriviallyDead
- Return true if the result produced by the
58
bool
isInstructionTriviallyDead
(Instruction *I);
/external/llvm/lib/Transforms/Utils/
Local.cpp
224
///
isInstructionTriviallyDead
- Return true if the result produced by the
227
bool llvm::
isInstructionTriviallyDead
(Instruction *I) {
260
if (!I || !I->use_empty() || !
isInstructionTriviallyDead
(I))
281
if (
isInstructionTriviallyDead
(OpI))
[
all
...]
LoopUnroll.cpp
379
if (
isInstructionTriviallyDead
(Inst))
/external/llvm/lib/Transforms/IPO/
Inliner.cpp
411
if (
isInstructionTriviallyDead
(CS.getInstruction())) {
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
[
all
...]
Completed in 232 milliseconds