OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsFP
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp
[
all
...]
/external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp
738
bool
IsFP
= Ty->isFPOrFPVectorTy();
740
if (!
IsFP
&& !Ty->isIntOrIntVectorTy())
747
return
IsFP
? Instruction::FAdd : Instruction::Add;
749
return
IsFP
? Instruction::FSub : Instruction::Sub;
751
return
IsFP
? Instruction::FMul : Instruction::Mul;
753
return
IsFP
? -1 : Instruction::UDiv;
755
return
IsFP
? Instruction::FDiv : Instruction::SDiv;
757
return
IsFP
? -1 : Instruction::URem;
759
return
IsFP
? Instruction::FRem : Instruction::SRem;
761
return
IsFP
? -1 : Instruction::Shl
[
all
...]
Completed in 414 milliseconds