Searched refs:abi (Results 1 – 4 of 4) sorted by relevance
/art/compiler/trampolines/ |
D | trampoline_compiler.cc | 31 static const std::vector<uint8_t>* CreateTrampoline(EntryPointCallingConvention abi, in CreateTrampoline() argument 35 switch (abi) { in CreateTrampoline() 59 static const std::vector<uint8_t>* CreateTrampoline(EntryPointCallingConvention abi, in CreateTrampoline() argument 63 switch (abi) { in CreateTrampoline() 96 static const std::vector<uint8_t>* CreateTrampoline(EntryPointCallingConvention abi, in CreateTrampoline() argument 100 switch (abi) { in CreateTrampoline() 160 const std::vector<uint8_t>* CreateTrampoline64(InstructionSet isa, EntryPointCallingConvention abi, in CreateTrampoline64() argument 164 return arm64::CreateTrampoline(abi, offset); in CreateTrampoline64() 173 const std::vector<uint8_t>* CreateTrampoline32(InstructionSet isa, EntryPointCallingConvention abi, in CreateTrampoline32() argument 178 return arm::CreateTrampoline(abi, offset); in CreateTrampoline32() [all …]
|
D | trampoline_compiler.h | 28 const std::vector<uint8_t>* CreateTrampoline32(InstructionSet isa, EntryPointCallingConvention abi, 31 const std::vector<uint8_t>* CreateTrampoline64(InstructionSet isa, EntryPointCallingConvention abi,
|
/art/test/115-native-bridge/ |
D | nativebridge.cc | 300 const char* abi) { in native_bridge_getAppEnv() argument 303 if (abi == nullptr) { in native_bridge_getAppEnv()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 456 #define CREATE_TRAMPOLINE(type, abi, offset) \ argument 458 return CreateTrampoline64(instruction_set_, abi, \ 461 return CreateTrampoline32(instruction_set_, abi, \
|