HomeSort by relevance Sort by last modified time
    Searched defs:FI (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/llvm/include/llvm/CodeGen/
PseudoSourceValue.h 61 static const PseudoSourceValue *getFixedStack(int FI);
85 const int FI;
87 explicit FixedStackPseudoSourceValue(int fi) :
88 PseudoSourceValue(FixedStackPseudoSourceValueVal), FI(fi) {}
108 int getFrameIndex() const { return FI; }
  /external/llvm/tools/llvm-cov/
llvm-cov.cpp 75 FileInfo FI;
76 GF.collectLineCounts(FI);
  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSXAPIChecker.cpp 40 const IdentifierInfo *FI) const;
53 const IdentifierInfo *FI) const {
74 os << "Call to '" << FI->getName() << "' uses";
104 const IdentifierInfo *FI = Fn->getIdentifier();
105 if (!FI)
109 llvm::StringSwitch<SubChecker>(FI->getName())
115 (this->*SC)(C, CE, FI);
UnixAPIChecker.cpp 236 const IdentifierInfo *FI = Fn->getIdentifier();
237 if (!FI)
241 llvm::StringSwitch<SubChecker>(FI->getName())
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 52 const SrcMgr::FileInfo &FI = SL.getFile();
53 if (!FI.getContentCache()->OrigEntry)
57 SourceLocation L = FI.getIncludeLoc();
67 CB((CXFile) FI.getContentCache()->OrigEntry,
  /external/llvm/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 110 GCFunctionInfo &FI = **I;
111 for (GCFunctionInfo::iterator J = FI.begin(), JE = FI.end(); J != JE; ++J) {
124 GCFunctionInfo &FI = **I;
126 uint64_t FrameSize = FI.getFrameSize();
129 report_fatal_error("Function '" + FI.getFunction().getName() +
132 "(" + Twine(uintptr_t(&FI)) + ")");
136 Twine(FI.getFunction().getName()));
139 for (GCFunctionInfo::iterator J = FI.begin(), JE = FI.end(); J != JE; ++J)
    [all...]
  /external/llvm/lib/Target/Mips/
MipsEmitGPRestore.cpp 51 int FI = F.getInfo<MipsFunctionInfo>()->getGPFI();
67 BuildMI(MBB, I, dl, TII->get(Mips::LW), Mips::GP).addFrameIndex(FI)
80 BuildMI(MBB, ++I, dl, TII->get(Mips::LW), Mips::GP).addFrameIndex(FI)
  /external/dropbear/libtomcrypt/src/ciphers/
kasumi.c 39 static u16 FI( u16 in, u16 subkey )
111 left = FI( left, key->kasumi.KIi1[round_no] );
115 right = FI( right, key->kasumi.KIi2[round_no] );
119 left = FI( left, key->kasumi.KIi3[round_no] );
cast5.c     [all...]
  /external/llvm/include/llvm/MC/
MCFixup.h 68 MCFixup FI;
69 FI.Value = Value;
70 FI.Offset = Offset;
71 FI.Kind = unsigned(Kind);
72 return FI;
  /external/llvm/lib/CodeGen/
PseudoSourceValue.cpp 73 const PseudoSourceValue *PseudoSourceValue::getFixedStack(int FI) {
76 const PseudoSourceValue *&V = PG.FSValues[FI];
78 V = new FixedStackPseudoSourceValue(FI);
112 return MFI && MFI->isImmutableObjectIndex(FI);
120 return FI >= 0;
122 return !MFI->isFixedObjectIndex(FI) && !MFI->isSpillSlotObjectIndex(FI);
129 return !MFI->isSpillSlotObjectIndex(FI);
133 OS << "FixedStack" << FI;
VirtRegMap.cpp 170 void VirtRegMap::addSpillSlotUse(int FI, MachineInstr *MI) {
171 if (!MF->getFrameInfo()->isFixedObjectIndex(FI)) {
172 // If FI < LowSpillSlot, this stack reference was produced by
174 if (FI >= LowSpillSlot) {
175 assert(FI >= 0 && "Spill slot index should not be negative!");
176 assert((unsigned)FI-LowSpillSlot < SpillSlotToUsesMap.size()
178 SpillSlotToUsesMap[FI-LowSpillSlot].insert(MI);
207 int FI = MO.getIndex();
208 if (MF->getFrameInfo()->isFixedObjectIndex(FI))
212 if (FI < LowSpillSlot
    [all...]
GCStrategy.cpp 69 GCFunctionInfo *FI;
120 GCFunctionInfo *FI = new GCFunctionInfo(F, *this);
121 Functions.push_back(FI);
122 return FI;
253 GCFunctionInfo &FI = getAnalysis<GCModuleInfo>().getFunctionInfo(F);
254 GCStrategy &S = FI.getStrategy();
364 if (FI->getStrategy().needsSafePoint(GC::PreCall)) {
366 FI->addSafePoint(GC::PreCall, Label, CI->getDebugLoc());
369 if (FI->getStrategy().needsSafePoint(GC::PostCall)) {
371 FI->addSafePoint(GC::PostCall, Label, CI->getDebugLoc())
    [all...]
  /external/llvm/lib/Target/Blackfin/
BlackfinISelDAGToDAG.cpp 84 // Selects to ADDpp FI, 0 which in turn will become ADDimm7 SP, imm or ADDpp
86 int FI = cast<FrameIndexSDNode>(N)->getIndex();
87 SDValue TFI = CurDAG->getTargetFrameIndex(FI, MVT::i32);
BlackfinISelLowering.cpp 212 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true);
213 SDValue FIN = DAG.getFrameIndex(FI, MVT::i32);
  /external/clang/test/SemaTemplate/
dependent-base-classes.cpp 27 struct FI : II<TT>
29 C<typename FI::type> a;
  /external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 157 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
158 Base = CurDAG->getTargetFrameIndex(FI->getIndex(), N.getValueType());
173 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N))
174 Base = CurDAG->getTargetFrameIndex(FI->getIndex(), N.getValueType());
210 int FI = dyn_cast<FrameIndexSDNode>(Node)->getIndex();
212 SDValue TFI = CurDAG->getTargetFrameIndex(FI, VT);
  /external/llvm/lib/Target/PTX/
PTXISelDAGToDAG.cpp 185 int FI = cast<FrameIndexSDNode>(Node)->getIndex();
186 //dbgs() << "Selecting FrameIndex at index " << FI << "\n";
187 //SDValue TFI = CurDAG->getTargetFrameIndex(FI, Node->getValueType(0));
191 SDValue FrameSymbol = CurDAG->getTargetExternalSymbol(MFI->getFrameSymbol(FI),
  /external/clang/include/clang/Lex/
HeaderSearch.h 293 HeaderFileInfo &FI = getFileInfo(File);
294 FI.isImport = true;
295 FI.isPragmaOnce = true;
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 352 const CGFunctionInfo &FI =
355 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI, false);
359 StartFunction(GlobalDecl(), getContext().VoidTy, fn, FI, args,
CodeGenTypes.cpp 477 const CGFunctionInfo *FI;
480 FI = &getFunctionInfo(
485 FI = &getFunctionInfo(
492 if (FunctionsBeingProcessed.count(FI)) {
499 ResultType = GetFunctionType(*FI, isVariadic);
  /external/llvm/lib/AsmParser/
LLParser.cpp 120 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
121 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
540 FI = ForwardRefMDNodes.find(MetadataID);
541 if (FI != ForwardRefMDNodes.end()) {
542 MDNode *Temp = FI->second.first;
545 ForwardRefMDNodes.erase(FI);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 129 int FI = SI->second;
131 FI, DI->getDebugLoc());
358 int FI) {
359 ByValArgFrameIndexMap[A] = FI;
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 254 std::map<const Function *, ExFunc>::iterator FI = ExportedFunctions->find(F);
255 if (ExFunc Fn = (FI == ExportedFunctions->end()) ? lookupFunction(F)
256 : FI->second) {
  /external/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 86 int FI = CSI[i].getFrameIdx();
94 FramePtrSpillFI = FI;
95 AFI->addGPRCalleeSavedArea1Frame(FI);
103 FramePtrSpillFI = FI;
105 AFI->addGPRCalleeSavedArea2Frame(FI);
108 AFI->addGPRCalleeSavedArea1Frame(FI);
113 AFI->addDPRCalleeSavedAreaFrame(FI);

Completed in 604 milliseconds

1 2 3