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

  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_origin.h 10 // Origin id utils.
20 // Origin handling.
22 // Origin is a 32-bit identifier that is attached to any uninitialized value in
26 // There are 3 kinds of origin ids:
27 // 1xxx xxxx xxxx xxxx heap origin id
28 // 0000 xxxx xxxx xxxx stack origin id
29 // 0zzz xxxx xxxx xxxx chained origin id
31 // Heap origin id describes a heap memory allocation and contains (in the xxx
34 // Stack origin id describes a stack memory allocation and contains (in the xxx
38 // Chained origin id describes an event of storing an uninitialized value t
    [all...]
msan_report.cc 34 const char *Origin() const { return Magenta(); }
44 Printf("%s", d.Origin());
48 d.Origin(), d.Name(), s, d.Origin(), d.Name(), sep + 1, d.Origin(),
61 VPrintf(1, " raw origin id: %d\n", id);
63 Origin o = Origin::FromRawId(id);
67 Printf(" %sUninitialized value was stored to memory at%s\n", d.Origin(),
80 d.Origin(), d.Default())
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CXXInheritance.h 121 const CXXRecordDecl *Origin = nullptr;
217 const CXXRecordDecl *getOrigin() const { return Origin; }
218 void setOrigin(const CXXRecordDecl *Rec) { Origin = Rec; }
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
InnerPointerChecker.cpp 148 const Expr *Origin = Call.getOriginExpr();
150 // NOTE: `Origin` may be null, and will be stored so in the symbol's
152 State = allocation_state::markReleased(State, Symbol, Origin);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPreLegalizerCombiner.cpp 46 Register Origin;
95 m_GSMax(m_Reg(MatchInfo.Origin), m_ICst(MatchInfo.Cmp2)))) {
103 m_GSMin(m_Reg(MatchInfo.Origin), m_ICst(MatchInfo.Cmp2)))) {
121 Register Src = MatchInfo.Origin;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
WindowsResource.h 194 uint32_t Origin,
199 uint32_t Characteristics, uint32_t Origin, uint32_t DataIndex);
201 bool addEntry(const ResourceEntryRef &Entry, uint32_t Origin,
209 bool addLanguageNode(const ResourceEntryRef &Entry, uint32_t Origin,
213 uint32_t Characteristics, uint32_t Origin,
231 uint32_t Origin;
245 const coff_resource_dir_table &Table, uint32_t Origin,
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_report.cpp 135 const char *Origin() const { return Magenta(); }
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 150 llvm::PointerUnion<const Expr *, const Decl *> Origin;
173 : State(std::move(state)), LCtx(lctx), Origin(E) {}
176 : State(std::move(state)), LCtx(lctx), Origin(D) {}
180 : State(Original.State), LCtx(Original.LCtx), Origin(Original.Origin),
209 return Origin.dyn_cast<const Decl *>();
229 return Origin.dyn_cast<const Expr *>();
298 /// which the return value has already been bound to the origin expression.
583 /// This may be NULL if the block's origin is unknown.
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WindowsResource.cpp 303 " in " + InputFilenames[FirstNode->Origin] + " and " + Twine(LastLang) +
304 " in " + InputFilenames[LastNode->Origin])
348 uint32_t Origin = InputFilenames.size();
354 bool IsNewNode = Root.addEntry(Entry, Origin, Data, StringTable, Node);
358 Entry, InputFilenames[Node->Origin], WR->getFileName()));
370 uint32_t Origin = InputFilenames.size();
373 return addChildren(Root, RSR, BaseTable, Origin, Context, Duplicates);
382 const ResourceEntryRef &Entry, uint32_t Origin,
387 return NameNode.addLanguageNode(Entry, Origin, Data, Result);
393 uint32_t Origin,
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_report.cpp 158 const char *Origin() const { return Magenta(); }
  /src/sys/external/bsd/acpica/dist/include/
acstruct.h 120 ACPI_PARSE_OBJECT *Origin; /* Start of walk [Obsolete] */
actbl1.h 2621 UINT8 Origin;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 1168 // value back to its origin.
1815 const ExplodedNode *Origin;
1821 : Origin(O), ControlDeps(&O->getCFG()) {}
1890 if (Origin->getStackFrame() != N->getStackFrame())
1899 CFGBlock *OriginB = const_cast<CFGBlock *>(Origin->getCFGBlock());
2013 /// origin. Works similarly to trackExpressionValue, but accepts only RValues.
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 36 /// | origin |
61 /// | origin |
252 "this number of origin stores, use callbacks instead of "
508 /// Advances \p OriginAddr to point to the next 32-bit origin and then loads
509 /// from it. Returns the origin's loaded value.
616 /// Computes the origin address for a given function argument.
618 /// Origin = ArgOriginTLS[ArgNo].
621 /// Computes the origin address for a return value.
625 void setOrigin(Instruction *I, Value *Origin);
626 /// Generates IR to compute the origin of the last operand with a taint label
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 2701 Value *Origin;
2713 Origin = Inst->getOperand(Idx);
2721 << "with: " << *Origin << "\n");
2722 Inst->setOperand(Idx, Origin);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 8235 SDNode *Origin = Op.getOperand(0).getNode();
8236 if (Origin->getOpcode() != ISD::LOAD)
8241 MachineMemOperand *MMO = cast<LoadSDNode>(Origin)->getMemOperand();
8245 for (SDNode::use_iterator UI = Origin->use_begin(),
8246 UE = Origin->use_end();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 647 // Classify the origin of a stored value.
7069 /// Represents known origin of an individual byte in load combine pattern. The
7100 /// Recursively traverses the expression calculating the origin of the requested
7104 /// has exactly one use and if it's not true return None. This way if the origin
15767 /// Origin = load Ty1, Base
15768 /// Shift = srl Ty1 Origin, CstTy Amount
15862 LoadSDNode *Origin;
15867 // The DAG from which Origin came from.
15871 LoadedSlice(SDNode *Inst = nullptr, LoadSDNode *Origin = nullptr,
15873 : Inst(Inst), Origin(Origin), Shift(Shift), DAG(DAG) {
    [all...]

Completed in 79 milliseconds