HomeSort by: relevance | last modified time | path
    Searched defs:LC (Results 1 - 25 of 48) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
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();
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);
ObjCSuperDeallocChecker.cpp 119 const LocationContext *LC = C.getLocationContext();
120 SymbolRef SelfSymbol = State->getSelfSVal(LC).getAsSymbol();
ExprInspectionChecker.cpp 131 const LocationContext *LC = N->getLocationContext();
135 SVal AssertionVal = State->getSVal(Assertion, LC);
208 const LocationContext *LC = C.getPredecessor()->getLocationContext();
212 if (LC->getStackFrame()->getParent() != nullptr)
234 const LocationContext *LC = C.getPredecessor()->getLocationContext();
241 if (LC->getStackFrame()->getParent() == nullptr)
SmartPtrModeling.cpp 579 const LocationContext *LC = C.getLocationContext();
581 CallExpr, LC, InnerPointerType, C.blockCount());
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
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)
CoreEngine.cpp 213 const LocationContext *LC = Pred->getLocationContext();
215 LC->getDecl(),
216 LC->getCFG()->getNumBlockIDs());
279 const LocationContext *LC = Pred->getLocationContext();
282 Counter = BCounterFactory.IncrementCount(Counter, LC->getStackFrame(),
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))
ExprEngineC.cpp 612 const LocationContext *LC = N->getLocationContext();
619 SVal InitVal = state->getSVal(InitEx, LC);
622 if (getObjectUnderConstruction(state, DS, LC)) {
623 state = finishObjectConstruction(state, DS, LC);
636 InitVal = svalBuilder.conjureSymbolVal(nullptr, InitEx, LC, Ty,
643 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true);
  /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...]
  /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/usr.bin/rdist/
expand.c 49 #define LC '{'
170 if (*cp == LC) {
441 int ok, lc; local
456 lc = 077777;
464 if (lc <= scc && scc <= *p++)
467 if (scc == (lc = cc))
  /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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 210 const LocationContext *LC;
213 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
222 LC->getStackFrame(),
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
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/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
UninitializedObjectChecker.cpp 480 const LocationContext *LC = Context.getLocationContext();
481 while ((LC = LC->getParent())) {
484 const auto *OtherCtor = dyn_cast<CXXConstructorDecl>(LC->getDecl());
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 727 const SCEVConstant *LC = cast<SCEVConstant>(LHS);
731 const APInt &LA = LC->getAPInt();
781 const SCEVNAryExpr *LC = cast<SCEVNAryExpr>(LHS);
785 unsigned LNumOps = LC->getNumOperands(), RNumOps = RC->getNumOperands();
791 LC->getOperand(i), RC->getOperand(i), DT,
801 const SCEVUDivExpr *LC = cast<SCEVUDivExpr>(LHS);
805 auto X = CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, LC->getLHS(),
809 X = CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, LC->getRHS(),
820 const SCEVCastExpr *LC = cast<SCEVCastExpr>(LHS);
825 CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, LC->getOperand()
    [all...]
  /src/external/gpl3/binutils/dist/opcodes/
micromips-opc.c 215 #define LC INSN_LOAD_COPROC
566 {"cftc1", "s,y", 0x0000043e, 0xfc00ffff, WR_1|RD_C1|TRAP|LC, AL, 0, MT32, 0 },
567 {"cftc1", "s,T", 0x0000043e, 0xfc00ffff, WR_1|RD_C1|TRAP|LC, AL, 0, MT32, 0 },
568 {"cftc2", "s,y", 0x0000045e, 0xfc00ffff, WR_1|RD_C2|TRAP|LC, AL, 0, MT32, 0 },
577 {"cttc2", "t,G", 0x00000456, 0xfc00ffff, WR_1|RD_C2|TRAP|LC, AL, 0, MT32, 0 },
646 {"dmfc1", "t,S", 0x5400243b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I3, 0, 0 },
647 {"dmfc1", "t,G", 0x5400243b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I3, 0, 0 },
864 {"mfc1", "t,S", 0x5400203b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I1, 0, 0 },
865 {"mfc1", "t,G", 0x5400203b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I1, 0, 0 },
871 {"mfhc1", "t,S", 0x5400303b, 0xfc00ffff, WR_1|RD_2|FP_D|LC, 0, I1, 0, 0 }
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
micromips-opc.c 215 #define LC INSN_LOAD_COPROC
566 {"cftc1", "s,y", 0x0000043e, 0xfc00ffff, WR_1|RD_C1|TRAP|LC, AL, 0, MT32, 0 },
567 {"cftc1", "s,T", 0x0000043e, 0xfc00ffff, WR_1|RD_C1|TRAP|LC, AL, 0, MT32, 0 },
568 {"cftc2", "s,y", 0x0000045e, 0xfc00ffff, WR_1|RD_C2|TRAP|LC, AL, 0, MT32, 0 },
577 {"cttc2", "t,G", 0x00000456, 0xfc00ffff, WR_1|RD_C2|TRAP|LC, AL, 0, MT32, 0 },
646 {"dmfc1", "t,S", 0x5400243b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I3, 0, 0 },
647 {"dmfc1", "t,G", 0x5400243b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I3, 0, 0 },
864 {"mfc1", "t,S", 0x5400203b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I1, 0, 0 },
865 {"mfc1", "t,G", 0x5400203b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I1, 0, 0 },
871 {"mfhc1", "t,S", 0x5400303b, 0xfc00ffff, WR_1|RD_2|FP_D|LC, 0, I1, 0, 0 }
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
micromips-opc.c 215 #define LC INSN_LOAD_COPROC
566 {"cftc1", "s,y", 0x0000043e, 0xfc00ffff, WR_1|RD_C1|TRAP|LC, AL, 0, MT32, 0 },
567 {"cftc1", "s,T", 0x0000043e, 0xfc00ffff, WR_1|RD_C1|TRAP|LC, AL, 0, MT32, 0 },
568 {"cftc2", "s,y", 0x0000045e, 0xfc00ffff, WR_1|RD_C2|TRAP|LC, AL, 0, MT32, 0 },
577 {"cttc2", "t,G", 0x00000456, 0xfc00ffff, WR_1|RD_C2|TRAP|LC, AL, 0, MT32, 0 },
646 {"dmfc1", "t,S", 0x5400243b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I3, 0, 0 },
647 {"dmfc1", "t,G", 0x5400243b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I3, 0, 0 },
864 {"mfc1", "t,S", 0x5400203b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I1, 0, 0 },
865 {"mfc1", "t,G", 0x5400203b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I1, 0, 0 },
871 {"mfhc1", "t,S", 0x5400303b, 0xfc00ffff, WR_1|RD_2|FP_D|LC, 0, I1, 0, 0 }
    [all...]
  /src/external/gpl3/gdb.old/dist/opcodes/
micromips-opc.c 207 #define LC INSN_LOAD_COPROC
635 {"dmfc1", "t,S", 0x5400243b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I3, 0, 0 },
636 {"dmfc1", "t,G", 0x5400243b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I3, 0, 0 },
838 {"mfc1", "t,S", 0x5400203b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I1, 0, 0 },
839 {"mfc1", "t,G", 0x5400203b, 0xfc00ffff, WR_1|RD_2|FP_S|LC, 0, I1, 0, 0 },
847 {"mfhc1", "t,S", 0x5400303b, 0xfc00ffff, WR_1|RD_2|FP_D|LC, 0, I1, 0, 0 },
848 {"mfhc1", "t,G", 0x5400303b, 0xfc00ffff, WR_1|RD_2|FP_D|LC, 0, I1, 0, 0 },
  /src/libexec/getty/
gettytab.h 158 #define LC gettyflags[13].value

Completed in 55 milliseconds

1 2