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

1 2

  /src/external/apache2/llvm/dist/clang/lib/Basic/
Warnings.cpp 107 diag::Severity Mapping =
197 Diags.setSeverityForGroup(Flavor, Opt, Mapping);
Diagnostic.cpp 311 for (auto &Mapping : *Transition.State) {
313 DiagnosticIDs::getWarningOptionForDiag(Mapping.first);
320 llvm::errs() << "<unknown " << Mapping.first << ">";
325 switch (Mapping.second.getSeverity()) {
333 if (!Mapping.second.isUser())
335 if (Mapping.second.isPragma())
337 if (Mapping.second.hasNoWarningAsError())
339 if (Mapping.second.hasNoErrorAsFatal())
341 if (Mapping.second.wasUpgradedFromWarning())
364 // Don't allow a mapping to a warning override an error/fatal mapping
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
ContinuationRecordBuilder.h 38 TypeRecordMapping Mapping;
SymbolDeserializer.h 28 Mapping(Reader, Container) {}
32 SymbolRecordMapping Mapping;
64 assert(!Mapping && "Already in a symbol mapping!");
65 Mapping = std::make_unique<MappingInfo>(Record.content(), Container);
66 return Mapping->Mapping.visitSymbolBegin(Record);
69 assert(Mapping && "Not in a symbol mapping!");
70 auto EC = Mapping->Mapping.visitSymbolEnd(Record)
    [all...]
SymbolSerializer.h 35 SymbolRecordMapping Mapping;
75 return Mapping.visitKnownRecord(CVR, Record);
TypeDeserializer.h 32 Mapping(Reader) {}
36 TypeRecordMapping Mapping;
45 if (auto EC = I.Mapping.visitTypeBegin(CVT))
47 if (auto EC = I.Mapping.visitKnownRecord(CVT, Record))
49 if (auto EC = I.Mapping.visitTypeEnd(CVT))
68 assert(!Mapping && "Already in a type mapping!");
69 Mapping = std::make_unique<MappingInfo>(Record.content());
70 return Mapping->Mapping.visitTypeBegin(Record)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
AnnotationRemarks.cpp 89 MapVector<StringRef, unsigned> Mapping;
98 auto Iter = Mapping.insert({cast<MDString>(Op.get())->getString(), 0});
103 for (const auto &KV : Mapping)
  /src/sys/external/bsd/acpica/dist/executer/
exregion.c 138 * Does the request fit into the cached memory mapping?
139 * Is 1) Address below the current mapping? OR
140 * 2) Address beyond the current mapping?
146 * The request cannot be resolved by the current memory mapping.
148 * Look for an existing saved mapping covering the address range
179 "Unable to save memory mapping at 0x%8.8X%8.8X, size %u",
197 /* Create a new mapping starting at the address given */
209 /* Save the physical address and mapping size */
217 * current mapping.
568 ACPI_DATA_TABLE_MAPPING *Mapping;
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/dap/
launch.py 19 from typing import Mapping, Optional, Sequence
80 env: Optional[Mapping[str, str]] = None,
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/
launch.py 19 from typing import Mapping, Optional, Sequence
80 env: Optional[Mapping[str, str]] = None,
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
DependencyScanningFilesystem.cpp 79 PreprocessorSkippedRangeMapping Mapping;
87 Mapping[Range.Offset] = Range.Length;
89 Result.PPSkippedRangeMapping = std::move(Mapping);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMRegisterBankInfo.cpp 39 // GPR Partial Mapping
41 // SPR Partial Mapping
43 // DPR Partial Mapping
58 "Wrong mapping for GPR");
61 "Wrong mapping for SPR");
64 "Wrong mapping for DPR");
100 "Wrong value mapping for 3 GPR ops instruction");
103 "Wrong value mapping for 3 GPR ops instruction");
106 "Wrong value mapping for 3 GPR ops instruction");
110 "Wrong value mapping for 3 SPR ops instruction")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86RegisterBankInfo.cpp 135 auto Mapping = getValueMapping(OpRegBankIdx[Idx], 1);
136 if (!Mapping->isValid())
139 OpdsMapping[Idx] = Mapping;
155 llvm_unreachable("Unsupported operand mapping yet.");
157 auto Mapping = getValueMapping(getPartialMappingIdx(Ty, isFP), 3);
158 return getInstructionMapping(DefaultMappingID, 1, Mapping, NumOperands);
170 const InstructionMapping &Mapping = getInstrMappingImpl(MI);
171 if (Mapping.isValid())
172 return Mapping;
191 auto Mapping = getValueMapping(getPartialMappingIdx(Ty, false), 3)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
DebugMap.cpp 102 auto Mapping = AddressToMapping.find(Address);
103 if (Mapping == AddressToMapping.end())
105 return Mapping->getSecond();
164 mapping(IO &io, std::pair<std::string, DebugMapObject::SymbolMapping> &s) { function in class:llvm::yaml::MappingTraits
171 void MappingTraits<dsymutil::DebugMapObject>::mapping( function in class:llvm::yaml::MappingTraits
205 void MappingTraits<dsymutil::DebugMap>::mapping(IO &io, function in class:llvm::yaml::MappingTraits
214 void MappingTraits<std::unique_ptr<dsymutil::DebugMap>>::mapping( function in class:llvm::yaml::MappingTraits
281 auto &Mapping = Entry.second;
283 if (Mapping.ObjectAddress)
284 ObjAddress = *Mapping.ObjectAddress
    [all...]
DwarfLinkerForBinary.h 64 const DebugMapObject::DebugMapEntry *Mapping;
67 const DebugMapObject::DebugMapEntry *Mapping)
68 : Offset(Offset), Size(Size), Addend(Addend), Mapping(Mapping) {}
132 const auto &Mapping = Entry.getValue();
133 if (Mapping.Size && Mapping.ObjectAddress)
134 AddressRanges[*Mapping.ObjectAddress] = ObjFileAddressRange(
135 *Mapping.ObjectAddress + Mapping.Size
    [all...]
DwarfLinkerForBinary.cpp 558 if (const auto *Mapping = DMO.lookupSymbol(*SymbolName))
559 ValidRelocs.emplace_back(Offset64, RelocSize, Addend, Mapping);
560 } else if (const auto *Mapping = DMO.lookupObjectAddress(SymAddress)) {
564 ValidRelocs.emplace_back(Offset64, RelocSize, SymOffset, Mapping);
637 const auto &Mapping = Reloc.Mapping->getValue();
638 const uint64_t ObjectAddress = Mapping.ObjectAddress
639 ? uint64_t(*Mapping.ObjectAddress)
642 outs() << "Found valid debug map entry: " << Reloc.Mapping->getKey() << "\t"
644 uint64_t(Mapping.BinaryAddress))
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Tokens.h 279 /// If \p Spelled starts a mapping (e.g. if it's a macro name or '#' starting
316 /// Describes a mapping between a continuous subrange of spelled tokens and
324 struct Mapping {
346 std::vector<Mapping> Mappings;
354 /// Maps a single expanded token to its spelled counterpart or a mapping that
356 std::pair<const syntax::Token *, const Mapping *>
359 /// Returns a mapping starting before \p Spelled token, or nullptr if no
360 /// such mapping exists.
361 static const Mapping *
365 /// Convert a private Mapping to a public Expansion
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 255 ErrorOr<std::unique_ptr<MemoryBuffer>> Mapping =
258 if (!Mapping)
260 Mapping.getError().message());
262 if (!parse(*Mapping, DL))
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_platform.h 46 C/C++ on netbsd/amd64 can reuse the same mapping:
59 struct Mapping {
97 struct Mapping {
132 struct Mapping {
154 // mapping to use. Although slower, it make a same instrumented binary run on
249 // Indicates that mapping defines a mid range memory segment.
255 // mapping to use. Although slower, it make a same instrumented binary run on
373 struct Mapping {
398 struct Mapping {
476 struct Mapping {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
RegisterBankInfo.cpp 117 // The mapping of the registers may be available via the
128 "The mapping of the register bank does not make sense");
152 /// Copy like instruction are special for mapping because
155 /// just use that instead of failing to provide a generic mapping.
167 // For copy like instruction, only the mapping of the definition
175 // We may need to query the instruction encoding to guess the mapping.
178 // Before doing anything complicated check if the mapping is not
193 // is the best default mapping for the current instruction. Keep
210 // MI does not carry enough information to guess the mapping.
259 assert(CompleteMapping && "Setting an uncomplete mapping");
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsRegisterBankInfo.cpp 305 // mapping available.
403 "MSA mapping not available on target without MSA.");
414 // Only 64 bit mapping is available in fprb and will be marked as custom, i.e.
438 const RegisterBankInfo::InstructionMapping &Mapping =
440 if (Mapping.isValid())
441 return Mapping;
530 // PHI is copylike and should have one regbank in mapping for def register.
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
MemProfiler.cpp 97 // These flags allow to change the shadow mapping.
98 // The shadow mapping looks like
101 static cl::opt<int> ClMappingScale("memprof-mapping-scale",
102 cl::desc("scale of memprof shadow mapping"),
106 ClMappingGranularity("memprof-mapping-granularity",
107 cl::desc("granularity of memprof shadow mapping"),
129 /// This struct defines the shadow mapping using the rule:
191 ShadowMapping Mapping;
225 ShadowMapping Mapping;
298 Shadow = IRB.CreateAnd(Shadow, Mapping.Mask)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FileSystem.h 414 /// Resize \p FD to \p Size before mapping \a mapped_file_region::readwrite. On
416 /// since the subsequent mapping (via \c CreateFileMapping) automatically
1255 /// Platform-specific mapping state.
1257 void *Mapping = nullptr;
1265 Mapping = Copied.Mapping;
1299 /// Check if this is a valid mapping.
1300 explicit operator bool() const { return Mapping; }
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
CoverageMappingReader.cpp 1 //===- CoverageMappingReader.cpp - Code coverage mapping reader -----------===//
9 // This file contains support for reading coverage mapping data for
44 #define DEBUG_TYPE "coverage-mapping"
350 // Read the virtual file mapping.
362 // Construct the files using unique filenames and virtual file mapping.
384 // Read the mapping regions sub-arrays.
418 // A dummy coverage mapping data consists of just one region with zero count.
472 // Check if the mapping data is a dummy, i.e. is emitted for an unused function.
473 static Expected<bool> isCoverageMappingDummy(uint64_t Hash, StringRef Mapping) {
474 // The hash value of dummy mapping records is always zero
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_rtl.h 76 typedef MappingS390x Mapping;
78 typedef Mapping48AddressSpace Mapping;
80 static const uptr kSpaceBeg = Mapping::kHeapMemBeg;
81 static const uptr kSpaceSize = Mapping::kHeapMemEnd - Mapping::kHeapMemBeg;

Completed in 75 milliseconds

1 2