Home
last modified time | relevance | path

Searched refs:arch_type (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbFPOProgramToDWARFExpression.cpp27 static uint32_t ResolveLLDBRegisterNum(llvm::StringRef reg_name, llvm::Triple::ArchType arch_type) { in ResolveLLDBRegisterNum() argument
30 switch (arch_type) { in ResolveLLDBRegisterNum()
52 return npdb::GetLLDBRegisterNumber(arch_type, reg_id); in ResolveLLDBRegisterNum()
57 llvm::Triple::ArchType arch_type, in ResolveFPOProgram() argument
73 ResolveLLDBRegisterNum(symbol.GetName().drop_front(1), arch_type); in ResolveFPOProgram()
94 llvm::Triple::ArchType arch_type, Stream &stream) { in TranslateFPOProgramToDWARFExpression() argument
97 ResolveFPOProgram(program, register_name, arch_type, node_alloc); in TranslateFPOProgramToDWARFExpression()
H A DDWARFLocationExpression.cpp41 static uint32_t GetRegisterNumber(llvm::Triple::ArchType arch_type, in GetRegisterNumber() argument
45 uint32_t reg_num = GetLLDBRegisterNumber(arch_type, register_id); in GetRegisterNumber()
172 llvm::StringRef program, llvm::Triple::ArchType arch_type, Stream &stream) { in EmitVFrameEvaluationDWARFExpression() argument
174 return TranslateFPOProgramToDWARFExpression(program, "$T0", arch_type, in EmitVFrameEvaluationDWARFExpression()
H A DCodeViewRegisterMapping.h18 uint32_t GetLLDBRegisterNumber(llvm::Triple::ArchType arch_type,
H A DPdbFPOProgramToDWARFExpression.h22 llvm::Triple::ArchType arch_type,
H A DCodeViewRegisterMapping.cpp611 llvm::Triple::ArchType arch_type, llvm::codeview::RegisterId register_id) { in GetLLDBRegisterNumber() argument
612 switch (arch_type) { in GetLLDBRegisterNumber()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp61 llvm::StringRef program, llvm::Triple::ArchType arch_type, Stream &stream) { in EmitVFrameEvaluationDWARFExpression() argument
63 return TranslateFPOProgramToDWARFExpression(program, "$T0", arch_type, in EmitVFrameEvaluationDWARFExpression()
76 llvm::Triple::ArchType arch_type = architecture.GetMachine(); in ConvertPDBLocationToDWARFExpression() local
113 if (EmitVFrameEvaluationDWARFExpression(fd->getProgram(), arch_type, in ConvertPDBLocationToDWARFExpression()
131 reg_num = GetLLDBRegisterNumber(arch_type, reg_id); in ConvertPDBLocationToDWARFExpression()
151 uint32_t reg_num = GetLLDBRegisterNumber(arch_type, symbol.getRegisterId()); in ConvertPDBLocationToDWARFExpression()
/llvm-project-15.0.7/llvm/test/tools/llvm-lipo/
H A Dsegalign-invalid-input.test5 # MISSING_ARG: error: segalign is missing an argument: expects -segalign arch_type alignment_value
14 # INVALID_ALIGN_NOT_HEX: error: argument to -segalign <arch_type> 15.7 (hex) is not a proper hexade…
17 # INVALID_ALIGN_HEX: error: argument to -segalign <arch_type> 15 (hex) must be a non-zero power of …
20 # INVALID_ALIGN_ZERO: error: argument to -segalign <arch_type> 0 (hex) must be a non-zero power of …
23 # INVALID_ALIGN_BIG: error: argument to -segalign <arch_type> 10000 (hex) must be less than or equa…
H A Dreplace-invalid-input.test6 # MISSING_ARG: error: replace is missing an argument: expects -replace arch_type file_name
/llvm-project-15.0.7/lldb/unittests/SymbolFile/NativePDB/
H A DPdbFPOProgramToDWARFExpressionTests.cpp76 llvm::Triple::ArchType arch_type = arch_spec.GetMachine(); in CheckInvalidProgramTranslation() local
83 fpo_program, target_register_name, arch_type, stream)); in CheckInvalidProgramTranslation()
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp33 const llvm::Triple::ArchType arch_type = triple_ref.getArch(); in LLDB_PLUGIN_DEFINE() local
37 switch(arch_type) { in LLDB_PLUGIN_DEFINE()
/llvm-project-15.0.7/llvm/tools/llvm-lipo/
H A DLipoOpts.td39 HelpText<"Create a thin output file of specified arch_type from the "
45 "arch_type from the fat input file. Requires -output option">;
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DArchSpec.h283 explicit ArchSpec(ArchitectureType arch_type, uint32_t cpu_type,
413 bool SetArchitecture(ArchitectureType arch_type, uint32_t cpu, uint32_t sub,
/llvm-project-15.0.7/lldb/source/Utility/
H A DArchSpec.cpp456 static const ArchDefinition *FindArchDefinition(ArchitectureType arch_type) { in FindArchDefinition() argument
459 if (def->type == arch_type) in FindArchDefinition()
522 ArchSpec::ArchSpec(ArchitectureType arch_type, uint32_t cpu, uint32_t subtype) { in ArchSpec() argument
523 SetArchitecture(arch_type, cpu, subtype); in ArchSpec()
844 bool ArchSpec::SetArchitecture(ArchitectureType arch_type, uint32_t cpu, in SetArchitecture() argument
848 const ArchDefinition *arch_def = FindArchDefinition(arch_type); in SetArchitecture()
861 if (arch_type == eArchTypeMachO) { in SetArchitecture()
872 } else if (arch_type == eArchTypeELF) { in SetArchitecture()
893 } else if (arch_type == eArchTypeCOFF && os == llvm::Triple::Win32) { in SetArchitecture()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/AArch64/
H A DABIMacOSX_arm64.cpp45 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch(); in CreateInstance() local
49 if (arch_type == llvm::Triple::aarch64 || in CreateInstance()
50 arch_type == llvm::Triple::aarch64_32) { in CreateInstance()
H A DABISysV_arm64.cpp48 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch(); in CreateInstance() local
52 if (arch_type == llvm::Triple::aarch64 || in CreateInstance()
53 arch_type == llvm::Triple::aarch64_32) { in CreateInstance()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips.cpp521 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch(); in CreateInstance() local
522 if ((arch_type == llvm::Triple::mips) || in CreateInstance()
523 (arch_type == llvm::Triple::mipsel)) { in CreateInstance()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/ARM/
H A DABIMacOSX_arm.cpp1204 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch(); in CreateInstance() local
1208 if ((arch_type == llvm::Triple::arm) || in CreateInstance()
1209 (arch_type == llvm::Triple::thumb)) { in CreateInstance()
H A DABISysV_arm.cpp1207 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch(); in CreateInstance() local
1211 if ((arch_type == llvm::Triple::arm) || in CreateInstance()
1212 (arch_type == llvm::Triple::thumb)) { in CreateInstance()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/X86/
H A DABISysV_x86_64.cpp72 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch(); in CreateInstance() local
76 if (arch_type == llvm::Triple::x86_64) { in CreateInstance()