| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| PrettyStackTraceLocationContext.h | 31 PrettyStackTraceLocationContext(const LocationContext *LC) : LCtx(LC) {
|
| Environment.cpp | 230 const LocationContext *LC = I.first.getLocationContext(); 231 if (FoundContexts.count(LC) == 0) { 233 LCtx = LC; 234 for (const LocationContext *LCI = LC; LCI; LCI = LCI->getParent()) 246 LCtx->printJson(Out, NL, Space, IsDot, [&](const LocationContext *LC) { 255 if (I->first.getLocationContext() != LC) 272 if (I->first.getLocationContext() != LC)
|
| ExprEngine.cpp | 135 const LocationContext *LC) 136 : Impl(Item, LC) {} 310 ProgramStateRef State, const LocationContext *LC, 318 SVal InitValWithAdjustments = State->getSVal(InitWithAdjustments, LC); 374 if (Optional<SVal> V = getObjectUnderConstruction(State, MT, LC)) { 375 State = finishObjectConstruction(State, MT, LC); 376 State = State->BindExpr(Result, LC, *V); 385 TR = MRMgr.getCXXTempObjectRegion(Init, LC); 389 TR = MRMgr.getCXXTempObjectRegion(Init, LC); 408 currBldrCtx->blockCount(), LC, true [all...] |
| ExplodedGraph.cpp | 309 findTopAutosynthesizedParentContext(const LocationContext *LC) { 310 assert(LC->getAnalysisDeclContext()->isBodyAutosynthesized()); 311 const LocationContext *ParentLC = LC->getParent(); 314 LC = ParentLC; 315 ParentLC = LC->getParent(); 318 return LC; 325 const LocationContext *LC = getLocationContext(); 326 if (LC->getAnalysisDeclContext()->isBodyAutosynthesized()) { 328 return cast<StackFrameContext>(findTopAutosynthesizedParentContext(LC))
|
| MemRegion.cpp | 367 const LocationContext *LC, 372 ID.AddPointer(LC); 378 BlockDataRegion::ProfileRegion(ID, BC, LC, BlockCount, getSuperRegion()); 893 getStackOrCaptureRegionForDeclContext(const LocationContext *LC, 896 while (LC) { 897 if (const auto *SFC = dyn_cast<StackFrameContext>(LC)) { 901 if (const auto *BC = dyn_cast<BlockInvocationContext>(LC)) { 915 LC = LC->getParent(); 921 const LocationContext *LC) { [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| TraversalChecker.cpp | 84 for (const LocationContext *LC = C.getLocationContext()->getParent(); 85 LC != nullptr; LC = LC->getParent()) 101 for (const LocationContext *LC = C.getLocationContext()->getParent(); 102 LC != nullptr; LC = LC->getParent())
|
| UnreachableCodeChecker.cpp | 59 const LocationContext *LC = nullptr; 64 LC = P.getLocationContext(); 65 if (!LC->inTopFrame()) 69 D = LC->getAnalysisDeclContext()->getDecl(); 73 C = LC->getAnalysisDeclContext()->getUnoptimizedCFG(); 75 PM = &LC->getParentMap(); 159 DL = PathDiagnosticLocation::createBegin(S, B.getSourceManager(), LC);
|
| AnalyzerStatsChecker.cpp | 49 const LocationContext *LC = GraphRoot->getLocation().getLocationContext(); 51 const Decl *D = LC->getDecl(); 69 C = LC->getCFG(); 134 PathDiagnosticLocation::createBegin(CS->getStmt(), SM, LC));
|
| MIGChecker.cpp | 147 const LocationContext *LC = C.getLocationContext(); 148 assert(LC && "Unknown location context"); 152 while (LC) { 153 SFC = LC->getStackFrame(); 154 LC = SFC->getParent();
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/ |
| Object.cpp | 35 LoadCommand &LC = LoadCommands[Index]; 36 switch (LC.MachOLoadCommand.load_command_data.cmd) { 61 [&](const LoadCommand &LC) { return !ToRemove(LC); }); 72 for (LoadCommand &LC : LoadCommands) { 74 std::begin(LC.Sections), std::end(LC.Sections), 76 for (auto I = LC.Sections.begin(), End = It; I != End; ++I) { 80 LC.Sections.erase(It, LC.Sections.end()) [all...] |
| MachOObjcopy.cpp | 30 using LoadCommandPred = std::function<bool(const LoadCommand &LC)>; 33 static bool isLoadCommandWithPayloadString(const LoadCommand &LC) { 36 return LC.MachOLoadCommand.load_command_data.cmd == MachO::LC_RPATH || 37 LC.MachOLoadCommand.load_command_data.cmd == MachO::LC_ID_DYLIB || 38 LC.MachOLoadCommand.load_command_data.cmd == MachO::LC_LOAD_DYLIB || 39 LC.MachOLoadCommand.load_command_data.cmd == MachO::LC_LOAD_WEAK_DYLIB; 43 static StringRef getPayloadString(const LoadCommand &LC) { 44 assert(isLoadCommandWithPayloadString(LC) && 47 return StringRef(reinterpret_cast<const char *>(LC.Payload.data()), 48 LC.Payload.size() [all...] |
| MachOReader.cpp | 120 LoadCommand LC; 129 LC.Sections = std::move(*Sections); 137 LC.Sections = std::move(*Sections); 160 memcpy((void *)&(LC.MachOLoadCommand.LCStruct##_data), LoadCmd.Ptr, \ 163 MachO::swapStruct(LC.MachOLoadCommand.LCStruct##_data); \ 165 LC.Payload = ArrayRef<uint8_t>( \ 173 memcpy((void *)&(LC.MachOLoadCommand.load_command_data), LoadCmd.Ptr, 176 MachO::swapStruct(LC.MachOLoadCommand.load_command_data); 178 LC.Payload = ArrayRef<uint8_t>( 185 O.LoadCommands.push_back(std::move(LC)); [all...] |
| MachOWriter.cpp | 122 for (const LoadCommand &LC : O.LoadCommands) 123 for (const std::unique_ptr<Section> &S : LC.Sections) { 168 for (const LoadCommand &LC : O.LoadCommands) { 170 MachO::macho_load_command MLC = LC.MachOLoadCommand; 178 for (const std::unique_ptr<Section> &Sec : LC.Sections) 188 for (const std::unique_ptr<Section> &Sec : LC.Sections) 195 assert(sizeof(MachO::LCStruct) + LC.Payload.size() == \ 201 if (!LC.Payload.empty()) \ 202 memcpy(Begin, LC.Payload.data(), LC.Payload.size()); [all...] |
| MachOLayoutBuilder.cpp | 28 for (const LoadCommand &LC : O.LoadCommands) { 29 const MachO::macho_load_command &MLC = LC.MachOLoadCommand; 34 sizeof(MachO::section) * LC.Sections.size(); 38 sizeof(MachO::section_64) * LC.Sections.size(); 45 Size += sizeof(MachO::LCStruct) + LC.Payload.size(); \ 119 for (LoadCommand &LC : O.LoadCommands) { 120 auto &MLC = LC.MachOLoadCommand; 145 assert(LC.Sections.empty() && "__LINKEDIT segment has sections"); 154 for (std::unique_ptr<Section> &Sec : LC.Sections) { 194 sizeof(MachO::section) * LC.Sections.size() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblyRuntimeLibcallSignatures.h | 26 RTLIB::Libcall LC,
|
| /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| MachOEmitter.cpp | 119 size_t writeLoadCommandData(MachOYAML::LoadCommand &LC, raw_ostream &OS, 125 size_t writeLoadCommandData<MachO::segment_command>(MachOYAML::LoadCommand &LC, 129 for (const auto &Sec : LC.Sections) { 142 MachOYAML::LoadCommand &LC, raw_ostream &OS, bool IsLittleEndian) { 144 for (const auto &Sec : LC.Sections) { 156 size_t writePayloadString(MachOYAML::LoadCommand &LC, raw_ostream &OS) { 158 if (!LC.PayloadString.empty()) { 159 OS.write(LC.PayloadString.c_str(), LC.PayloadString.length()); 160 BytesWritten = LC.PayloadString.length() [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| ProgramPoint.cpp | 23 const LocationContext *LC, 29 return PreStmt(S, LC, tag); 31 return PostStmt(S, LC, tag); 33 return PreLoad(S, LC, tag); 35 return PostLoad(S, LC, tag); 37 return PreStore(S, LC, tag); 39 return PostLValue(S, LC, tag); 41 return PostStmtPurgeDeadSymbols(S, LC, tag); 43 return PreStmtPurgeDeadSymbols(S, LC, tag);
|
| AnalysisDeclContext.cpp | 168 for (const auto &LC : parent->captures()) { 169 if (!LC.capturesVariable()) 172 VarDecl *VD = LC.getCapturedVar(); 411 const LocationContext *LC = this; 412 while (LC) { 413 if (const auto *SFC = dyn_cast<StackFrameContext>(LC)) 415 LC = LC->getParent(); 424 bool LocationContext::isParentOf(const LocationContext *LC) const { 426 const LocationContext *Parent = LC->getParent() [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| macho2yaml.cpp | 26 MachOYAML::LoadCommand &LC, 62 memcpy((void *)&(LC.Data.LCStruct##_data), LoadCmd.Ptr, \ 65 MachO::swapStruct(LC.Data.LCStruct##_data); \ 67 processLoadCommandData<MachO::LCStruct>(LC, LoadCmd, *Y.get())) \ 196 MachOYAML::LoadCommand &LC, 205 MachOYAML::LoadCommand &LC, 209 LoadCmd, LC.Sections, Y); 215 MachOYAML::LoadCommand &LC, 219 LoadCmd, LC.Sections, Y); 224 readString(MachOYAML::LoadCommand &LC, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| MachOUniversalWriter.cpp | 35 for (const auto &LC : O.load_commands()) { 36 if (LC.C.cmd != (Is64Bit ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT)) 40 (Is64Bit ? O.getSegment64LoadCommand(LC).nsects 41 : O.getSegmentLoadCommand(LC).nsects); 45 (Is64Bit ? O.getSection64(LC, SI).align 46 : O.getSection(LC, SI).align)); 50 countTrailingZeros(Is64Bit ? O.getSegment64LoadCommand(LC).vmaddr 51 : O.getSegmentLoadCommand(LC).vmaddr);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| sanitizer_format_interceptor_test.cc | 44 static const unsigned LC = sizeof(wchar_t); 119 testScanf("%lc", 1, LC); 135 testScanf("%10ls", 1, 11 * LC); 136 testScanf("%10lc", 1, 10 * LC);
|
| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| Store.h | 134 virtual Loc getLValueVar(const VarDecl *VD, const LocationContext *LC) { 135 return svalBuilder.makeLoc(MRMgr.getVarRegion(VD, LC)); 139 const LocationContext *LC) { 140 return loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL, LC));
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| ARMSelectionDAGInfo.h | 63 RTLIB::Libcall LC) const;
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/nds32/isr-library/ |
| restore_usr_regs.inc | 32 mtusr $r4, $LC 40 mtusr $r3, $LC
|
| save_usr_regs.inc | 33 mfusr $r4, $LC 41 mfusr $r3, $LC
|