| /src/external/apache2/llvm/dist/clang/include/clang/ARCMigrate/ |
| FileRemapper.h | 36 typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target; 37 typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy; 73 void resetTarget(Target &targ);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/ |
| DebugObjectManagerPlugin.h | 44 /// corresponding DebugObject is finalized to target memory and the provided 51 std::unique_ptr<DebugObjectRegistrar> Target); 79 std::unique_ptr<DebugObjectRegistrar> Target;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/ |
| Target.h | 1 //===- llvm/TextAPI/Target.h - TAPI Target ----------------------*- C++ -*-===// 24 class Target { 26 Target() = default; 27 Target(Architecture Arch, PlatformKind Platform) 29 explicit Target(const llvm::Triple &Triple) 32 static llvm::Expected<Target> create(StringRef Target); 40 inline bool operator==(const Target &LHS, const Target &RHS) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/ |
| TargetSelect.cpp | 1 //===-- TargetSelect.cpp - Target Chooser Code ----------------------------===// 9 // This just asks the TargetRegistry for the appropriate target to use, and 22 #include "llvm/Target/TargetMachine.h" 37 /// selectTarget - Pick a target either via -march or by guessing the native 48 const Target *TheTarget = nullptr; 51 [&](const Target &T) { return MArch == T.getName(); }); 77 // Package up features to be passed to target/subtarget 86 // Allocate a target... 87 TargetMachine *Target = 91 Target->Options.EmulatedTLS = EmulatedTLS [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/AArch64/ |
| Target.cpp | 1 //===-- Target.cpp ----------------------------------------------*- C++ -*-===// 8 #include "../Target.h" 67 static ExegesisAArch64Target Target; 68 return &Target;
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Unicode.cpp | 362 UTF32 *Target = &buf[0]; 363 if (conversionOK != ConvertUTF8toUTF32(&Start, Start + Length, &Target, 364 Target + 1, strictConversion))
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/lib/ |
| GraphBuilder.h | 54 uint64_t Target; 57 // - The exit point of a basic block whos entry point is {target|fallthrough} 73 // - [conditional branch node {target|fallthrough}, base address) 111 // path (fallthrough or target) using `buildFlowsToUndefined`. Otherwise, this
|
| /src/sys/external/bsd/acpica/dist/disassembler/ |
| dmcstyle.c | 65 ACPI_PARSE_OBJECT *Target); 73 ACPI_PARSE_OBJECT *Target, 106 ACPI_PARSE_OBJECT *Target; 173 /* Logical operators, no target */ 295 * Check for a valid target as the 3rd (or sometimes 2nd) operand 303 * Only the math operators and Store() have a target. 304 * Logicals have no target. 319 /* Target is 3rd operand */ 321 Target = Argument2->Common.Next; 324 Target2 = Target->Common.Next [all...] |
| /src/sys/external/bsd/acpica/dist/resources/ |
| rsmisc.c | 85 char *Target; 120 Target = NULL; 200 Target = ACPI_ADD_PTR (void, Aml, Info->Value); 201 ItemCount = ACPI_GET16 (Target) - ACPI_GET16 (Source); 221 Target = ACPI_ADD_PTR (void, Aml, (Info->Value + 2)); 222 if (ACPI_GET16 (Target)) 226 Target = ACPI_ADD_PTR (void, Aml, Info->Value); 227 ItemCount = ACPI_GET16 (Target) - ACPI_GET16 (Source); 286 Target = (char *) ACPI_ADD_PTR (void, Resource, 288 *(UINT16 **) Destination = ACPI_CAST_PTR (UINT16, Target); [all...] |
| rsdump.c | 274 UINT8 *Target = NULL; 286 PreviousTarget = Target; 287 Target = ACPI_ADD_PTR (UINT8, Resource, Table->Offset); 311 AcpiRsOutString (Name, ACPI_CAST_PTR (char, Target)); 320 AcpiRsOutString (Name, Table->Pointer [*Target]); 324 AcpiRsOutInteger8 (Name, ACPI_GET8 (Target)); 330 AcpiRsOutInteger16 (Name, ACPI_GET16 (Target)); 335 AcpiRsOutInteger32 (Name, ACPI_GET32 (Target)); 340 AcpiRsOutInteger64 (Name, ACPI_GET64 (Target)); 347 AcpiRsOutString (Name, Table->Pointer [*Target & 0x01]) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Testing/ |
| TestClangConfig.h | 27 /// The argument of the `-target` command line flag. 28 std::string Target; 62 return Target == "x86_64-pc-win32-msvc"; 67 Result.push_back("-target"); 68 Result.push_back(Target); 75 OS << "{ Language=" << Language << ", Target=" << Target << " }";
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| ARMMCInstLower.cpp | 48 llvm_unreachable("Unknown target flag on symbol operand"); 200 auto Target = OutContext.createTempSymbol(); 212 OutStreamer->emitLabel(Target);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
| X86InstPrinterCommon.cpp | 298 // Do not print the numberic target address when symbolizing. 305 uint64_t Target = Address + Op.getImm(); 307 Target &= 0xffffffff; 308 O << formatHex(Target); 313 // If a symbolic branch target was added as a constant expression then print
|
| X86ATTInstPrinter.cpp | 391 uint64_t Target; 392 if (MIA->evaluateBranch(*MI, 0, 0, Target))
|
| X86IntelInstPrinter.cpp | 349 uint64_t Target; 350 if (MIA->evaluateBranch(*MI, 0, 0, Target))
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/PowerPC/ |
| Target.cpp | 1 //===-- Target.cpp ----------------------------------------------*- C++ -*-===// 9 #include "../Target.h" 131 static ExegesisPowerPCTarget Target; 132 return &Target;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| PrettyCompilandDumper.cpp | 196 uint64_t Target = Symbol.getTargetVirtualAddress(); 199 WithColor(Printer, PDB_ColorItem::Address).get() << format_hex(Target, 10);
|
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| ByteCodeEmitter.cpp | 88 const size_t Target = Code.size(); 89 LabelOffsets.insert({Label, Target}); 97 const int32_t Offset = Target - static_cast<int64_t>(Reloc); 108 // If target is known, compute jump offset.
|
| /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/OrcV2CBindingsAddObjectFile/ |
| OrcV2CBindingsAddObjectFile.c | 14 #include "llvm-c/Target.h" 64 // Initialize native target codegen and asm printer. 85 // Get the Target. 87 LLVMTargetRef Target = 0; 89 if (LLVMGetTargetFromTriple(Triple, &Target, &ErrorMsg)) { 90 fprintf(stderr, "Error getting target for %s: %s\n", Triple, ErrorMsg); 98 LLVMCreateTargetMachine(Target, Triple, "", "", LLVMCodeGenLevelNone,
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| RuntimeDyldCOFFI386.h | 144 uint8_t *Target = Section.getAddressWithOffset(RE.Offset); 151 // The target's 32-bit VA. 163 writeBytesUnaligned(Result, Target, 4); 167 // The target's 32-bit RVA. 178 writeBytesUnaligned(Result, Target, 4); 182 // 32-bit relative displacement to the target. 196 writeBytesUnaligned(Result, Target, 4); 200 // 16-bit section index of the section that contains the target. 206 writeBytesUnaligned(RE.SectionID, Target, 2); 209 // 32-bit offset of the target from the beginning of its section [all...] |
| RuntimeDyldCOFFThumb.h | 188 uint8_t *Target = Section.getAddressWithOffset(RE.Offset); 197 // The target's 32-bit VA. 209 writeBytesUnaligned(Result, Target, 4); 213 // The target's 32-bit RVA. 224 writeBytesUnaligned(Result, Target, 4); 228 // 16-bit section index of the section that contains the target. 234 writeBytesUnaligned(RE.SectionID, Target, 2); 237 // 32-bit offset of the target from the beginning of its section. 243 writeBytesUnaligned(RE.Addend, Target, 2); 246 // 32-bit VA of the target applied to a contiguous MOVW+MOVT pair [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/ |
| RISCVInstPrinter.cpp | 114 uint64_t Target = Address + MO.getImm(); 116 Target &= 0xffffffff; 117 O << formatHex(Target);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/ |
| CoroCleanup.cpp | 84 auto *Target = cast<ConstantStruct>( 90 auto *TargetSize = Target->getOperand(1); 95 auto *TargetRelativeFunOffset = Target->getOperand(0); 97 Target->getType(), TargetRelativeFunOffset, SourceSize); 98 Target->replaceAllUsesWith(NewFuncPtrStruct);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| LowerConstantIntrinsics.cpp | 68 BasicBlock *Target, *Other; 70 Target = BI->getSuccessor(1); 73 Target = BI->getSuccessor(0); 76 Target = nullptr; 79 if (Target && Target != Other) { 83 BranchInst::Create(Target, Source);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/Mips/ |
| Target.cpp | 1 //===-- Target.cpp ----------------------------------------------*- C++ -*-===// 9 #include "../Target.h" 159 static ExegesisMipsTarget Target; 160 return &Target;
|