OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:copyFastMathFlags
(Results
1 - 11
of
11
) sorted by null
/external/llvm/lib/IR/
Instruction.cpp
146
void Instruction::
copyFastMathFlags
(FastMathFlags FMF) {
148
cast<FPMathOperator>(this)->
copyFastMathFlags
(FMF);
190
void Instruction::
copyFastMathFlags
(const Instruction *I) {
191
copyFastMathFlags
(I->getFastMathFlags());
Instructions.cpp
[
all
...]
/external/llvm/include/llvm/IR/
Instruction.h
266
void
copyFastMathFlags
(FastMathFlags FMF);
289
void
copyFastMathFlags
(const Instruction *I);
Operator.h
262
void
copyFastMathFlags
(FastMathFlags FMF) {
/external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp
[
all
...]
InstCombineCasts.cpp
[
all
...]
InstCombineMulDivRem.cpp
565
RI->
copyFastMathFlags
(&I);
607
RI->
copyFastMathFlags
(&I);
[
all
...]
InstCombineVectorOps.cpp
655
New->
copyFastMathFlags
(I);
[
all
...]
InstructionCombining.cpp
724
FPInst->
copyFastMathFlags
(BO);
[
all
...]
/external/llvm/unittests/IR/
IRBuilderTest.cpp
238
FDiv->
copyFastMathFlags
(FAdd);
/external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp
[
all
...]
Completed in 535 milliseconds