HomeSort by relevance Sort by last modified time
    Searched refs:CallingConvention (Results 1 - 25 of 35) sorted by null

1 2

  /art/compiler/jni/quick/
calling_convention.h 33 class CallingConvention : public DeletableArenaObject<kArenaAllocCallingConvention> {
73 virtual ~CallingConvention() {}
76 CallingConvention(bool is_static,
234 class ManagedRuntimeCallingConvention : public CallingConvention {
270 : CallingConvention(is_static, is_synchronized, shorty, frame_pointer_size) {}
287 class JniCallingConvention : public CallingConvention {
380 : CallingConvention(is_static, is_synchronized, shorty, frame_pointer_size),
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
MinimalTypeDumper.cpp 76 static std::string formatCallingConvention(CallingConvention Convention) {
78 RETURN_CASE(CallingConvention, AlphaCall, "alphacall");
79 RETURN_CASE(CallingConvention, AM33Call, "am33call");
80 RETURN_CASE(CallingConvention, ArmCall, "armcall");
81 RETURN_CASE(CallingConvention, ClrCall, "clrcall");
82 RETURN_CASE(CallingConvention, FarC, "far cdecl");
83 RETURN_CASE(CallingConvention, FarFast, "far fastcall");
84 RETURN_CASE(CallingConvention, FarPascal, "far pascal");
85 RETURN_CASE(CallingConvention, FarStdCall, "far stdcall");
86 RETURN_CASE(CallingConvention, FarSysCall, "far syscall")
    [all...]
PrettyFunctionDumper.cpp 65 if ((ClassParent && CC == CallingConvention::ThisCall) ||
66 (!ClassParent && CC == CallingConvention::NearStdCall)) {
163 CallingConvention CC = Signature->getCallingConvention();
167 if ((ClassParent && CC != CallingConvention::ThisCall) ||
168 (!ClassParent && CC != CallingConvention::NearStdCall)) {
  /external/llvm/lib/DebugInfo/CodeView/
TypeDumper.cpp 158 ENUM_ENTRY(CallingConvention, NearC),
159 ENUM_ENTRY(CallingConvention, FarC),
160 ENUM_ENTRY(CallingConvention, NearPascal),
161 ENUM_ENTRY(CallingConvention, FarPascal),
162 ENUM_ENTRY(CallingConvention, NearFast),
163 ENUM_ENTRY(CallingConvention, FarFast),
164 ENUM_ENTRY(CallingConvention, NearStdCall),
165 ENUM_ENTRY(CallingConvention, FarStdCall),
166 ENUM_ENTRY(CallingConvention, NearSysCall),
167 ENUM_ENTRY(CallingConvention, FarSysCall)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
TypeDumpVisitor.cpp 112 ENUM_ENTRY(CallingConvention, NearC),
113 ENUM_ENTRY(CallingConvention, FarC),
114 ENUM_ENTRY(CallingConvention, NearPascal),
115 ENUM_ENTRY(CallingConvention, FarPascal),
116 ENUM_ENTRY(CallingConvention, NearFast),
117 ENUM_ENTRY(CallingConvention, FarFast),
118 ENUM_ENTRY(CallingConvention, NearStdCall),
119 ENUM_ENTRY(CallingConvention, FarStdCall),
120 ENUM_ENTRY(CallingConvention, NearSysCall),
121 ENUM_ENTRY(CallingConvention, FarSysCall)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
CodeViewYAMLTypes.cpp 57 LLVM_YAML_DECLARE_ENUM_TRAITS(CallingConvention)
232 void ScalarEnumerationTraits<CallingConvention>::enumeration(
233 IO &IO, CallingConvention &Value) {
234 IO.enumCase(Value, "NearC", CallingConvention::NearC);
235 IO.enumCase(Value, "FarC", CallingConvention::FarC);
236 IO.enumCase(Value, "NearPascal", CallingConvention::NearPascal);
237 IO.enumCase(Value, "FarPascal", CallingConvention::FarPascal);
238 IO.enumCase(Value, "NearFast", CallingConvention::NearFast);
239 IO.enumCase(Value, "FarFast", CallingConvention::FarFast);
240 IO.enumCase(Value, "NearStdCall", CallingConvention::NearStdCall)
    [all...]
  /external/llvm/tools/llvm-pdbdump/
FunctionDumper.cpp 65 if ((ClassParent && CC == CallingConvention::ThisCall) ||
66 (!ClassParent && CC == CallingConvention::NearStdCall)) {
158 CallingConvention CC = Signature->getCallingConvention();
162 if ((ClassParent && CC != CallingConvention::ThisCall) ||
163 (!ClassParent && CC != CallingConvention::NearStdCall)) {
  /external/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 144 ProcedureRecord(TypeIndex ReturnType, CallingConvention CallConv,
161 CallingConvention getCallConv() const { return CallConv; }
169 CallingConvention CallConv;
176 CallingConvention CallConv;
186 TypeIndex ThisType, CallingConvention CallConv,
205 CallingConvention getCallConv() const { return CallConv; }
216 CallingConvention CallConv;
226 CallingConvention CallConv;
    [all...]
CodeView.h 164 enum class CallingConvention : uint8_t {
  /art/compiler/optimizing/
code_generator_mips.h 66 class InvokeDexCallingConvention : public CallingConvention<Register, FRegister> {
69 : CallingConvention(kParameterCoreRegisters,
94 class InvokeRuntimeCallingConvention : public CallingConvention<Register, FRegister> {
97 : CallingConvention(kRuntimeParameterCoreRegisters,
code_generator_mips64.h 64 class InvokeDexCallingConvention : public CallingConvention<GpuRegister, FpuRegister> {
67 : CallingConvention(kParameterCoreRegisters,
92 class InvokeRuntimeCallingConvention : public CallingConvention<GpuRegister, FpuRegister> {
95 : CallingConvention(kRuntimeParameterCoreRegisters,
code_generator_x86.h 50 class InvokeRuntimeCallingConvention : public CallingConvention<Register, XmmRegister> {
53 : CallingConvention(kRuntimeParameterCoreRegisters,
63 class InvokeDexCallingConvention : public CallingConvention<Register, XmmRegister> {
65 InvokeDexCallingConvention() : CallingConvention(
code_generator_x86_64.h 56 class InvokeRuntimeCallingConvention : public CallingConvention<Register, FloatRegister> {
59 : CallingConvention(kRuntimeParameterCoreRegisters,
69 class InvokeDexCallingConvention : public CallingConvention<Register, FloatRegister> {
71 InvokeDexCallingConvention() : CallingConvention(
code_generator_arm64.h 177 class InvokeRuntimeCallingConvention : public CallingConvention<vixl::aarch64::Register,
183 : CallingConvention(kRuntimeParameterCoreRegisters,
195 class InvokeDexCallingConvention : public CallingConvention<vixl::aarch64::Register,
199 : CallingConvention(kParameterCoreRegisters,
    [all...]
code_generator_arm_vixl.h 149 : public CallingConvention<vixl::aarch32::Register, vixl::aarch32::SRegister> {
152 : CallingConvention(kRuntimeParameterCoreRegistersVIXL,
163 : public CallingConvention<vixl::aarch32::Register, vixl::aarch32::SRegister> {
166 : CallingConvention(kParameterCoreRegistersVIXL,
    [all...]
code_generator.h 796 class CallingConvention {
798 CallingConvention(const C* registers,
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/CodeView/
TypeHashingTest.cpp 40 PR.CallConv = CallingConvention::NearC;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 151 ProcedureRecord(TypeIndex ReturnType, CallingConvention CallConv,
159 CallingConvention getCallConv() const { return CallConv; }
165 CallingConvention CallConv;
178 TypeIndex ThisType, CallingConvention CallConv,
190 CallingConvention getCallConv() const { return CallConv; }
199 CallingConvention CallConv;
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 145 typedef codeview::CallingConvention PDB_CallingConv;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 156 using PDB_CallingConv = codeview::CallingConvention;
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/COFF/
cv-loc-unreachable.s 151 # CallingConvention: NearC (0x0)
  /external/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp     [all...]
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 457 unsigned CallingConvention : 8;
571 unsigned getCallingConvention() const { return CallingConvention; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
Dwarf.h 201 enum CallingConvention {

Completed in 699 milliseconds

1 2