Searched refs:ObjectPair (Results 1 - 11 of 11) sorted by relevance
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-utils.h | 25 struct ObjectPair { struct 30 static inline ObjectPair MakePair(Object x, Object y) { in MakePair() 31 ObjectPair result = {x.ptr(), y.ptr()}; in MakePair() 37 using ObjectPair = uint64_t; 38 static inline ObjectPair MakePair(Object x, Object y) { 40 return x.ptr() | (static_cast<ObjectPair>(y.ptr()) << 32); 42 return y->ptr() | (static_cast<ObjectPair>(x->ptr()) << 32);
|
H A D | runtime.cc | 28 ObjectPair Runtime_##name(int args_length, Address* args_object, \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/Symbolize/ |
H A D | Symbolize.h | 79 using ObjectPair = std::pair<const ObjectFile *, const ObjectFile *>; 108 Expected<ObjectPair> getOrCreateObjectPair(const std::string &Path, 120 std::map<std::pair<std::string, std::string>, ObjectPair>
|
/third_party/node/deps/v8/src/execution/ |
H A D | arguments.h | 161 RUNTIME_FUNCTION_RETURNS_TYPE(ObjectPair, ObjectPair, CONVERT_OBJECTPAIR, \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/ |
H A D | Symbolize.cpp | 430 Expected<LLVMSymbolizer::ObjectPair> 440 ObjectPair(nullptr, nullptr)); in getOrCreateObjectPair() 456 ObjectPair Res = std::make_pair(Obj, DbgObj); in getOrCreateObjectPair() 542 ObjectPair Objects = ObjectsOrErr.get(); in getOrCreateModuleInfo()
|
/third_party/node/deps/v8/src/execution/ppc/ |
H A D | simulator-ppc.cc | 936 static void decodeObjectPair(ObjectPair* pair, intptr_t* x, intptr_t* y) { in decodeObjectPair() 948 using SimulatorRuntimePairCall = ObjectPair (*)( 1198 ObjectPair result = in SoftwareInterrupt() 1213 sizeof(ObjectPair)); in SoftwareInterrupt()
|
/third_party/node/deps/v8/src/execution/arm64/ |
H A D | simulator-arm64.cc | 441 // uses the ObjectPair structure. 452 using SimulatorRuntimeCall = ObjectPair (*)( 477 ObjectPair UnsafeGenericFunctionCall( in UnsafeGenericFunctionCall() 694 // When this simulator runs on Windows x64 host, function with ObjectPair in DoRuntimeCall() 696 // ObjectPair as return value. This diverges the calling convention from in DoRuntimeCall() 697 // function which returns primitive type, so function returns ObjectPair in DoRuntimeCall() 744 // ObjectPair f(v8::internal::Arguments). in DoRuntimeCall() 774 ObjectPair result = UnsafeGenericFunctionCall( in DoRuntimeCall()
|
/third_party/node/deps/v8/src/execution/s390/ |
H A D | simulator-s390.cc | 1933 static void decodeObjectPair(ObjectPair* pair, intptr_t* x, intptr_t* y) { in decodeObjectPair() 1945 using SimulatorRuntimePairCall = ObjectPair (*)( 2200 ObjectPair result = in SoftwareInterrupt() 2215 sizeof(ObjectPair)); in SoftwareInterrupt() 2281 // ObjectPair result = target(arg[0], arg[1], arg[2], arg[3], in SoftwareInterrupt() 2292 // sizeof(ObjectPair)); in SoftwareInterrupt()
|
/third_party/node/deps/v8/src/execution/loong64/ |
H A D | simulator-loong64.cc | 2012 // uses the ObjectPair which is essentially two 32-bit values stuffed into a 2017 using SimulatorRuntimeCall = ObjectPair (*)( 2248 ObjectPair result = target(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, in SoftwareInterrupt()
|
/third_party/node/deps/v8/src/execution/mips64/ |
H A D | simulator-mips64.cc | 2206 // uses the ObjectPair which is essentially two 32-bit values stuffed into a 2210 using SimulatorRuntimeCall = ObjectPair (*)( 2443 ObjectPair result = target(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, in SoftwareInterrupt()
|
/third_party/node/deps/v8/src/execution/riscv64/ |
H A D | simulator-riscv64.cc | 2735 // runtime.cc uses the ObjectPair which is essentially two 32-bit values 2740 using SimulatorRuntimeCall = ObjectPair (*)( 2963 ObjectPair result = target(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, in SoftwareInterrupt()
|
Completed in 52 milliseconds