Searched defs:FC (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Target/MBlaze/MCTargetDesc/
H A DMBlazeBaseInfo.h53 FC, enumerator in enum:llvm::MBlazeII::__anon6874
/external/bluetooth/hcidump/parser/
H A Drfcomm.h108 #define FC 0x02 /* flow control (unable to accept frames) */ macro
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp206 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) {
210 FC->getValue()->getValue()));
220 FC->getValue()->getValue())));
233 const SCEVConstant *FC = cast<SCEVConstant>(Factor); local
235 if (!C->getValue()->getValue().srem(FC->getValue()->getValue())) {
239 FC->getValue()->getValue()));
/external/llvm/lib/VMCore/
H A DConstants.cpp1218 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
1219 return FC;
1508 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1509 return FC; // Fold a few common cases.
1600 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
1601 return FC; // Fold a few common cases.
1630 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1631 return FC; // Fold a few common cases...
1653 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1654 return FC; // Fol
1740 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs); local
1756 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs); local
[all...]
H A DVerifier.cpp272 void visitFCmpInst(FCmpInst &FC);
1258 void Verifier::visitFCmpInst(FCmpInst &FC) { argument
1260 Type *Op0Ty = FC.getOperand(0)->getType();
1261 Type *Op1Ty = FC.getOperand(1)->getType();
1263 "Both operands to FCmp instruction are not of the same type!", &FC);
1266 "Invalid operand types for FCmp instruction", &FC);
1268 Assert1(FC.getPredicate() >= CmpInst::FIRST_FCMP_PREDICATE &&
1269 FC.getPredicate() <= CmpInst::LAST_FCMP_PREDICATE,
1270 "Invalid predicate in FCmp instruction!", &FC);
1272 visitInstruction(FC);
[all...]
/external/llvm/utils/TableGen/
H A DARMDecoderEmitter.cpp381 ARMFilterChooser(const ARMFilterChooser &FC) : argument
382 AllInstructions(FC.AllInstructions), Opcodes(FC.Opcodes),
383 Filters(FC.Filters), Parent(FC.Parent), BestIndex(FC.BestIndex) {
384 memcpy(FilterBitValues, FC.FilterBitValues, sizeof(FilterBitValues));
1505 FC(NULL)
1519 if (FC) {
1520 delete FC;
1550 ARMFilterChooser *FC; member in class:ARMDecoderEmitter::ARMDEBackend
[all...]
H A DFixedLenDecoderEmitter.cpp245 FilterChooser(const FilterChooser &FC) : argument
246 AllInstructions(FC.AllInstructions), Opcodes(FC.Opcodes),
247 Operands(FC.Operands), Filters(FC.Filters),
248 FilterBitValues(FC.FilterBitValues), Parent(FC.Parent),
249 BestIndex(FC.BestIndex), BitWidth(FC.BitWidth),
250 Emitter(FC
[all...]

Completed in 7498 milliseconds