HomeSort by: relevance | last modified time | path
    Searched defs:FPI (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
FunctionPropertiesAnalysis.cpp 23 FunctionPropertiesInfo FPI;
25 FPI.Uses = ((!F.hasLocalLinkage()) ? 1 : 0) + F.getNumUses();
28 ++FPI.BasicBlockCount;
32 FPI.BlocksReachedFromConditionalInstruction += BI->getNumSuccessors();
34 FPI.BlocksReachedFromConditionalInstruction +=
42 ++FPI.DirectCallsToDefinedFunctions;
45 ++FPI.LoadInstCount;
47 ++FPI.StoreInstCount;
53 if (FPI.MaxLoopDepth < LoopDepth)
54 FPI.MaxLoopDepth = LoopDepth
    [all...]
  /src/lib/libc/gdtoa/
gdtoa.h 96 FPI {
102 } FPI;
104 enum { /* FPI.rounding values: same as FLT_ROUNDS */
136 extern char* gdtoa ANSI((CONST FPI *fpi, int be, ULong *bits, int *kindp,
141 extern int strtodg ANSI((CONST char*, char**, CONST FPI*, Long*, ULong*,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
WasmEHPrepare.cpp 289 auto *FPI = cast<FuncletPadInst>(BB->getFirstNonPHI());
291 for (auto &U : FPI->uses()) {
332 IRB.CreateCall(LPadIndexF, {FPI, IRB.getInt32(Index)});
337 auto *CPI = cast<CatchPadInst>(FPI);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
InlineFunction.cpp 235 if (auto *FPI = dyn_cast<FuncletPadInst>(EHPad))
236 return FPI->getParentPad();
2333 auto *FPI = cast<FuncletPadInst>(I);
2334 if (isa<ConstantTokenNone>(FPI->getParentPad()))
2335 FPI->setParentPad(CallSiteEHPad);
  /src/external/gpl3/binutils/dist/gas/config/
m68k-parse.h 140 FPI,
  /src/external/gpl3/binutils.old/dist/gas/config/
m68k-parse.h 140 FPI,
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 519 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI);
534 void visitFuncletPadInst(FuncletPadInst &FPI);
3893 if (auto *FPI = dyn_cast<FuncletPadInst>(EHPad))
3894 return FPI->getParentPad();
4077 void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) {
4080 SmallVector<FuncletPadInst *, 8> Worklist({&FPI});
4135 if (ExitedPad == &FPI) {
4138 // FPI, but not including FPI since we need to make sure
4139 // to check all direct users of FPI for consistency
    [all...]

Completed in 39 milliseconds