HomeSort by: relevance | last modified time | path
    Searched refs:Origin (Results 1 - 25 of 47) sorted by relevancy

1 2

  /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...]
msan.cc 46 // Function argument origin. Each argument starts at the same offset as the
205 f->origin_history_size > Origin::kMaxDepth) {
207 "Origin history size invalid: %d. Must be 0 (unlimited) or in [1, %d] "
209 f->origin_history_size, Origin::kMaxDepth);
217 "Origin per-stack limit invalid: %d. Must be 0 (unlimited) or in [1, "
241 void PrintWarningWithOrigin(uptr pc, uptr bp, u32 origin) {
244 __msan_origin_tls = origin;
254 (__msan_get_track_origins() && Origin::isValidId(origin)) ? origin : 0
    [all...]
msan_allocator.cc 178 Origin o = Origin::CreateHeapOrigin(stack);
198 Origin o = Origin::CreateHeapOrigin(stack);
msan_poisoning.cc 49 // Copy left unaligned origin if that memory is poisoned.
63 // Copy right unaligned origin if that memory is poisoned.
148 void SetOrigin(const void *dst, uptr size, u32 origin) {
149 // Origin mapping is 4 bytes per 4 bytes of application memory.
155 u64 origin64 = ((u64)origin << 32) | origin;
159 *(u32 *)beg = origin;
163 if (end & 7ULL) *(u32 *)(end - 4) = origin;
170 Origin o = Origin::CreateHeapOrigin(stack)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
AllocationState.h 21 const Expr *Origin);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExternalASTMerger.cpp 74 // The Origins map fixes this problem by allowing the origin to be
97 /// - It updates the ExternalASTMerger's origin map as needed whenever a
196 /// Whenever a DeclContext is imported, ensure that ExternalASTSource's origin
216 << " forced origin (DeclContext*)"
225 << " maybe recording origin (DeclContext*)" << (void*)FromDC
261 llvm_unreachable("We should have an importer for this origin!");
283 ExternalASTMerger::DCOrigin Origin = Origins[DC];
284 LazyASTImporter &Importer = LazyImporterForOrigin(*this, *Origin.AST);
285 Callback(Importer, Importer.GetReverse(), Origin.DC);
370 DCOrigin Origin) {
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExternalASTMerger.h 33 /// - The DeclContext of origin can be found by simple name lookup. In this
36 /// - The DeclContext of origin is different from what would be found by name
40 /// - The DeclContext of origin was determined by another ExternalASTMerger.
42 /// its own ExternalASTMerger). The origin must be properly forwarded in this
50 /// A single origin for a DeclContext. Unlike Decls, DeclContexts do
81 /// a DeclContext whose origin has been overridden, then this
135 /// Sometimes an origin goes away (for example, if a source file gets
161 /// Records an origin in Origins only if name lookup would find
163 void MaybeRecordOrigin(const DeclContext *ToDC, DCOrigin Origin);
165 /// Regardless of any checks, override the Origin for a DeclContext
    [all...]
CXXInheritance.h 121 const CXXRecordDecl *Origin = nullptr;
217 const CXXRecordDecl *getOrigin() const { return Origin; }
218 void setOrigin(const CXXRecordDecl *Rec) { Origin = Rec; }
  /src/sys/external/bsd/acpica/dist/include/
acapps.h 190 ACPI_PARSE_OBJECT *Origin);
194 ACPI_PARSE_OBJECT *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/sys/external/bsd/acpica/dist/parser/
pstree.c 213 * PARAMETERS: Origin - Root of subtree to search
219 * Return NULL when reaching "origin" or when walking up from root
225 ACPI_PARSE_OBJECT *Origin,
266 while (Arg && (Arg != Origin) && (Arg != Op))
273 if (Arg == Origin)
275 /* Reached parent of origin, end search */
  /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/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...]
MemorySanitizer.cpp 45 /// Origin tracking.
54 /// "select" instructions that pick the origin of a dirty argument, if an
57 /// Every 4 aligned, consecutive bytes of application memory have one origin
64 /// avoids storing origin to memory when a fully initialized value is stored.
65 /// This way it avoids needless overwriting origin of the 4-byte region on
113 /// - KMSAN allocates shadow and origin memory for each page separately, so
114 /// there are no explicit accesses to shadow and origin in the
116 /// Shadow and origin values for a particular X-byte memory location
121 /// are possible and returns the pointers to shadow and origin memory.
128 /// - __msan_warning() takes a 32-bit origin parameter
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
RangedConstraintManager.h 147 RangeSet getRangeSet(Range Origin);
151 RangeSet getRangeSet(const llvm::APSInt &Origin) {
152 return getRangeSet(Origin, Origin);
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/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/sys/external/bsd/acpica/dist/dispatcher/
dswstate.c 588 * Origin - Starting point for this walk
602 ACPI_PARSE_OBJECT *Origin,
621 WalkState->Origin = Origin;
624 WalkState->ParserState.StartOp = Origin;
  /src/external/gpl3/binutils/dist/zlib/contrib/delphi/
ZLib.pas 93 function Seek(Offset: Longint; Origin: Word): Longint; override;
122 function Seek(Offset: Longint; Origin: Word): Longint; override;
464 function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
466 if (Offset = 0) and (Origin = soFromCurrent) then
527 function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
532 if (Offset = 0) and (Origin = soFromBeginning) then
540 else if ( (Offset >= 0) and (Origin = soFromCurrent)) or
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
  /src/external/gpl3/binutils.old/dist/zlib/contrib/delphi/
ZLib.pas 93 function Seek(Offset: Longint; Origin: Word): Longint; override;
122 function Seek(Offset: Longint; Origin: Word): Longint; override;
464 function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
466 if (Offset = 0) and (Origin = soFromCurrent) then
527 function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
532 if (Offset = 0) and (Origin = soFromBeginning) then
540 else if ( (Offset >= 0) and (Origin = soFromCurrent)) or
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
  /src/external/gpl3/gdb.old/dist/zlib/contrib/delphi/
ZLib.pas 93 function Seek(Offset: Longint; Origin: Word): Longint; override;
122 function Seek(Offset: Longint; Origin: Word): Longint; override;
464 function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
466 if (Offset = 0) and (Origin = soFromCurrent) then
527 function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
532 if (Offset = 0) and (Origin = soFromBeginning) then
540 else if ( (Offset >= 0) and (Origin = soFromCurrent)) or
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
  /src/external/gpl3/gdb/dist/zlib/contrib/delphi/
ZLib.pas 93 function Seek(Offset: Longint; Origin: Word): Longint; override;
122 function Seek(Offset: Longint; Origin: Word): Longint; override;
464 function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
466 if (Offset = 0) and (Origin = soFromCurrent) then
527 function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
532 if (Offset = 0) and (Origin = soFromBeginning) then
540 else if ( (Offset >= 0) and (Origin = soFromCurrent)) or
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
  /src/common/dist/zlib/contrib/delphi/
ZLib.pas 93 function Seek(Offset: Longint; Origin: Word): Longint; override;
122 function Seek(Offset: Longint; Origin: Word): Longint; override;
464 function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
466 if (Offset = 0) and (Origin = soFromCurrent) then
527 function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
532 if (Offset = 0) and (Origin = soFromBeginning) then
540 else if ( (Offset >= 0) and (Origin = soFromCurrent)) or
541 ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then
543 if Origin = soFromBeginning then Dec(Offset, FZRec.total_out);
  /src/sys/external/bsd/acpica/dist/common/
adwalk.c 118 * PARAMETERS: Origin - Starting object
128 ACPI_PARSE_OBJECT *Origin)
133 if (!Origin)
144 AcpiDmWalkParseTree (Origin, AcpiDmDumpDescending, NULL, &Info);
153 * PARAMETERS: Origin - Starting object
164 ACPI_PARSE_OBJECT *Origin)
169 if (!Origin)
178 AcpiDmWalkParseTree (Origin, AcpiDmFindOrphanDescending, NULL, &Info);

Completed in 55 milliseconds

1 2