Home
last modified time | relevance | path

Searched refs:FILoc (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
DMBlazeFrameLowering.cpp185 int FILoc = 0; in analyzeFrameIndexes() local
188 case MBlaze::R5: FILoc = -4; break; in analyzeFrameIndexes()
189 case MBlaze::R6: FILoc = -8; break; in analyzeFrameIndexes()
190 case MBlaze::R7: FILoc = -12; break; in analyzeFrameIndexes()
191 case MBlaze::R8: FILoc = -16; break; in analyzeFrameIndexes()
192 case MBlaze::R9: FILoc = -20; break; in analyzeFrameIndexes()
193 case MBlaze::R10: FILoc = -24; break; in analyzeFrameIndexes()
197 FrameRelocate.push_back(std::make_pair(FI,FILoc)); in analyzeFrameIndexes()
198 DEBUG(dbgs() << "FI#" << FI << " relocated to " << FILoc << "\n"); in analyzeFrameIndexes()
/external/clang/lib/Parse/
DParseExpr.cpp319 SourceLocation FILoc = Tok.getLocation(); in ParseRHSOfBinaryExpression() local
322 if (FILoc.isFileID() || PP.isAtStartOfMacroExpansion(FILoc, &FILoc)) { in ParseRHSOfBinaryExpression()
323 assert(FILoc.isFileID()); in ParseRHSOfBinaryExpression()
326 SM.getCharacterData(FILoc.getLocWithOffset(-1), &IsInvalid); in ParseRHSOfBinaryExpression()
329 SM.getCharacterData(FILoc.getLocWithOffset(-2), &IsInvalid); in ParseRHSOfBinaryExpression()
331 FILoc = FILoc.getLocWithOffset(-1); in ParseRHSOfBinaryExpression()
338 << tok::colon << FixItHint::CreateInsertion(FILoc, FIText); in ParseRHSOfBinaryExpression()