/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
H A D | CoroInternal.h | 66 enum class ABI { class 107 coro::ABI ABI; member 134 assert(ABI == coro::ABI::Switch); in getSwitchCoroId() 139 assert(ABI == coro::ABI::Retcon || in getRetconCoroId() 140 ABI == coro::ABI::RetconOnce); in getRetconCoroId() 145 assert(ABI in getIndexType() [all...] |
H A D | CoroSplit.cpp | 113 assert(Shape.ABI == coro::ABI::Switch); in CoroCloner() 122 assert(Shape.ABI == coro::ABI::Retcon || in CoroCloner() 123 Shape.ABI == coro::ABI::RetconOnce); in CoroCloner() 164 assert(Shape.ABI == coro::ABI::Retcon || in maybeFreeRetconStorage() 165 Shape.ABI == coro::ABI in maybeFreeRetconStorage() [all...] |
H A D | Coroutines.cpp | 355 this->ABI = coro::ABI::Switch; in buildFrom() 380 this->ABI = (IdIntrinsic == Intrinsic::coro_id_retcon in buildFrom() 381 ? coro::ABI::Retcon in buildFrom() 382 : coro::ABI::RetconOnce); in buildFrom() 479 if (ABI == coro::ABI::Switch && in buildFrom() 501 switch (ABI) { in emitAlloc() 502 case coro::ABI::Switch: in emitAlloc() 505 case coro::ABI in emitAlloc() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsABIInfo.h | 1 //===---- MipsABIInfo.h - Information about MIPS ABI's --------------------===// 25 enum class ABI { Unknown, O32, N32, N64 }; class in llvm::MipsABIInfo 28 ABI ThisABI; 31 MipsABIInfo(ABI ThisABI) : ThisABI(ThisABI) {} in MipsABIInfo() 33 static MipsABIInfo Unknown() { return MipsABIInfo(ABI::Unknown); } in Unknown() 34 static MipsABIInfo O32() { return MipsABIInfo(ABI::O32); } in O32() 35 static MipsABIInfo N32() { return MipsABIInfo(ABI::N32); } in N32() 36 static MipsABIInfo N64() { return MipsABIInfo(ABI::N64); } in N64() 40 bool IsKnown() const { return ThisABI != ABI::Unknown; } in IsKnown() 41 bool IsO32() const { return ThisABI == ABI in IsKnown() [all...] |
H A D | MipsMCAsmInfo.cpp | 25 MipsABIInfo ABI = MipsABIInfo::computeTargetABI(TheTriple, "", Options); in MipsMCAsmInfo() local 27 if (TheTriple.isMIPS64() && !ABI.IsN32()) in MipsMCAsmInfo() 30 if (ABI.IsO32()) in MipsMCAsmInfo() 32 else if (ABI.IsN32() || ABI.IsN64()) in MipsMCAsmInfo()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/winrt/ |
H A D | InspectableNativeWindow.cpp | 17 ComPtr<ABI::Windows::UI::Core::ICoreWindow> *coreWindow) in IsCoreWindow() 25 ComPtr<ABI::Windows::UI::Core::ICoreWindow> coreWin; in IsCoreWindow() 39 ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> *swapChainPanel) in IsSwapChainPanel() 47 ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> panel; in IsSwapChainPanel() 61 ABI::Windows::Foundation::Collections::IPropertySet **propertySet, in IsEGLConfiguredPropertySet() 72 ComPtr<ABI::Windows::Foundation::Collections::IMap<HSTRING, IInspectable *>> propMap; in IsEGLConfiguredPropertySet() 131 const ComPtr<ABI::Windows::Foundation::Collections::IMap<HSTRING, IInspectable *>> &propertyMap, in GetOptionalPropertyValue() 134 ComPtr<ABI::Windows::Foundation::IPropertyValue> &propertyValue) in GetOptionalPropertyValue() 161 // an ABI::Windows::Foundation::Size. This function validates the Size value before returning 173 const ComPtr<ABI in GetOptionalSizePropertyValue() [all...] |
H A D | InspectableNativeWindow.h | 29 using namespace ABI::Windows::Foundation; 30 using namespace ABI::Windows::Foundation::Collections; 122 ComPtr<ABI::Windows::UI::Core::ICoreWindow> *coreWindow = nullptr); 125 ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> *swapChainPanel = nullptr); 128 ABI::Windows::Foundation::Collections::IPropertySet **propertySet = nullptr, 132 const ComPtr<ABI::Windows::Foundation::Collections::IMap<HSTRING, IInspectable *>> &propertyMap, 135 ComPtr<ABI::Windows::Foundation::IPropertyValue> &propertyValue); 138 const ComPtr<ABI::Windows::Foundation::Collections::IMap<HSTRING, IInspectable *>> &propertyMap, 144 const ComPtr<ABI::Windows::Foundation::Collections::IMap<HSTRING, IInspectable *>> &propertyMap,
|
H A D | SwapChainPanelNativeWindow.h | 40 ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> mSwapChainPanel; 41 ComPtr<ABI::Windows::UI::Core::ICoreDispatcher> mSwapChainPanelDispatcher; 49 ABI::Windows::UI::Xaml::ISizeChangedEventHandler> 66 (IInspectable *sender, ABI::Windows::UI::Xaml::ISizeChangedEventArgs *sizeChangedEventArgs) in Invoke() 76 ABI::Windows::Foundation::Size newSize; in Invoke() 92 const ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> &swapChainPanel, 93 const ComPtr<ABI::Windows::UI::Core::ICoreDispatcher> &dispatcher,
|
H A D | CoreWindowNativeWindow.h | 18 typedef ABI::Windows::Foundation:: 48 ComPtr<ABI::Windows::UI::Core::ICoreWindow> mCoreWindow; 72 (ABI::Windows::UI::Core::ICoreWindow *sender, in Invoke() 73 ABI::Windows::UI::Core::IWindowSizeChangedEventArgs *sizeChangedEventArgs) in Invoke() 78 ABI::Windows::Foundation::Size windowSize; in Invoke() 94 HRESULT GetCoreWindowSizeInPixels(const ComPtr<ABI::Windows::UI::Core::ICoreWindow> &coreWindow,
|
H A D | CoreWindowNativeWindow_unittest.cpp | 22 using namespace ABI::Windows::ApplicationModel::Core; 23 using namespace ABI::Windows::Foundation; 24 using namespace ABI::Windows::Foundation::Collections; 25 using namespace ABI::Windows::UI::Core; 26 using namespace ABI::Windows::System; 47 class MockCoreWindow : public ABI::Windows::UI::Core::ICoreWindow 69 *ppvObject = static_cast<ABI::Windows::UI::Core::ICoreWindow *>(this); in QueryInterface() 107 HRESULT(ABI::Windows::System::VirtualKey, 108 ABI::Windows::UI::Core::CoreVirtualKeyStates *)); 111 HRESULT(ABI [all...] |
H A D | SwapChainPanelNativeWindow_unittest.cpp | 24 using namespace ABI::Windows::ApplicationModel::Core; 25 using namespace ABI::Windows::Foundation; 26 using namespace ABI::Windows::Foundation::Collections; 27 using namespace ABI::Windows::UI::Core; 28 using namespace ABI::Windows::System; 29 using namespace ABI::Windows::UI::Xaml::Controls; 30 using namespace ABI::Windows::UI::Xaml::Data; 31 using namespace ABI::Windows::UI::Xaml::Media; 32 using namespace ABI::Windows::UI::Xaml::Input; 33 using namespace ABI [all...] |
H A D | SwapChainPanelNativeWindow.cpp | 14 using namespace ABI::Windows::Foundation; 15 using namespace ABI::Windows::Foundation::Collections; 16 using namespace ABI::Windows::UI::Core; 17 using namespace ABI::Windows::UI::Xaml; 346 const ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> &swapChainPanel, in GetSwapChainPanelSize()
|
H A D | NativeWindow11WinRT.cpp | 32 ComPtr<ABI::Windows::Foundation::Collections::IPropertySet> propertySet; in initialize() 44 ComPtr<ABI::Windows::UI::Core::ICoreWindow> coreWindow; in initialize() 45 ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> swapChainPanel; in initialize()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/converged/ |
H A D | CompositorNativeWindow11.cpp | 23 ABI::Windows::UI::Composition::ISpriteVisual *inspPtr = in CompositorNativeWindow11() 24 reinterpret_cast<ABI::Windows::UI::Composition::ISpriteVisual *>(window); in CompositorNativeWindow11() 25 mHostVisual = Microsoft::WRL::ComPtr<ABI::Windows::UI::Composition::ISpriteVisual>{inspPtr}; in CompositorNativeWindow11() 37 ComPtr<ABI::Windows::UI::Composition::IVisual> visual; in getClientRect() 40 ABI::Windows::Foundation::Numerics::Vector2 size; in getClientRect() 47 ABI::Windows::Foundation::Numerics::Vector3 offset; in getClientRect() 83 ComPtr<ABI::Windows::UI::Composition::ICompositionObject> hostVisual; in createSwapChain() 90 Microsoft::WRL::ComPtr<ABI::Windows::UI::Composition::ICompositor> compositor; in createSwapChain() 97 ComPtr<ABI::Windows::UI::Composition::ICompositorInterop> interop; in createSwapChain() 185 ABI in IsSpriteVisual() [all...] |
H A D | CompositorNativeWindow11.h | 37 ABI::Windows::System::IDispatcherQueueController **dispatcherQueueController); 56 ABI::Windows::System::IDispatcherQueueController **); 107 Microsoft::WRL::ComPtr<ABI::Windows::UI::Composition::ISpriteVisual> mHostVisual; 108 Microsoft::WRL::ComPtr<ABI::Windows::UI::Composition::ICompositionBrush> mCompositionBrush; 109 Microsoft::WRL::ComPtr<ABI::Windows::UI::Composition::ICompositionSurface> mSurface; 110 Microsoft::WRL::ComPtr<ABI::Windows::UI::Composition::ICompositionSurfaceBrush> mSurfaceBrush;
|
/third_party/skia/third_party/externals/oboe/ |
H A D | build_all_android.sh | 41 ABI=$1 43 ABI_BUILD_DIR=build/${ABI} 46 echo "Building Oboe for ${ABI}" 51 -DANDROID_ABI=${ABI} \ 52 -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY=${STAGING_DIR}/lib/${ABI} \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
H A D | MipsSEFrameLowering.cpp | 282 /// expandBuildPairF64 does, for the case when ABI is fpxx and mthc1 is not 283 /// available and the case where the ABI is FP64A. It is implemented here 295 // The FP64A ABI (fp64 with nooddspreg) must also use a spill/reload sequence in expandBuildPairF64() 338 /// expandExtractElementF64 does, for the case when ABI is fpxx and mfhc1 is not 339 /// available and the case where the ABI is FP64A. It is implemented here 360 // The FP64A ABI (fp64 with nooddspreg) must also use a spill/reload sequence in expandExtractElementF64() 413 MipsABIInfo ABI = STI.getABI(); in emitPrologue() local 414 unsigned SP = ABI.GetStackPtr(); in emitPrologue() 415 unsigned FP = ABI.GetFramePtr(); in emitPrologue() 416 unsigned ZERO = ABI in emitPrologue() 700 MipsABIInfo ABI = STI.getABI(); emitEpilogue() local 781 MipsABIInfo ABI = STI.getABI(); getFrameIndexReference() local 867 MipsABIInfo ABI = STI.getABI(); determineCalleeSaves() local [all...] |
H A D | MipsSERegisterInfo.cpp | 154 MipsABIInfo ABI = in eliminateFI() local 182 FrameReg = ABI.GetStackPtr(); in eliminateFI() 185 FrameReg = ABI.GetBasePtr(); in eliminateFI() 189 FrameReg = ABI.GetStackPtr(); in eliminateFI() 223 ABI.ArePtrs64bit() ? &Mips::GPR64RegClass : &Mips::GPR32RegClass; in eliminateFI() 229 BuildMI(MBB, II, DL, TII.get(ABI.GetPtrAddiuOp()), Reg) in eliminateFI() 247 BuildMI(MBB, II, DL, TII.get(ABI.GetPtrAdduOp()), Reg).addReg(FrameReg) in eliminateFI()
|
H A D | MipsMachineFunction.cpp | 73 const MipsABIInfo &ABI = in initGlobalBaseReg() local 75 RC = (ABI.IsN64()) ? &Mips::GPR64RegClass : &Mips::GPR32RegClass; in initGlobalBaseReg() 80 if (ABI.IsN64()) { in initGlobalBaseReg() 112 if (ABI.IsN32()) { in initGlobalBaseReg() 125 assert(ABI.IsO32()); in initGlobalBaseReg() 127 // For O32 ABI, the following instruction sequence is emitted to initialize in initGlobalBaseReg()
|
H A D | MipsTargetMachine.cpp | 67 MipsABIInfo ABI = MipsABIInfo::computeTargetABI(TT, CPU, Options.MCOptions); in computeDataLayout() local 75 if (ABI.IsO32()) in computeDataLayout() 81 if (!ABI.IsN64()) in computeDataLayout() 91 if (ABI.IsN64() || ABI.IsN32()) in computeDataLayout() 122 ABI(MipsABIInfo::computeTargetABI(TT, CPU, Options.MCOptions)), in MipsTargetMachine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/MCTargetDesc/ |
H A D | RISCVELFStreamer.cpp | 29 RISCVABI::ABI ABI = MAB.getTargetABI(); in RISCVTargetELFStreamer() local 30 assert(ABI != RISCVABI::ABI_Unknown && "Improperly initialised target ABI"); in RISCVTargetELFStreamer() 37 switch (ABI) { in RISCVTargetELFStreamer() 53 llvm_unreachable("Improperly initialised target ABI"); in RISCVTargetELFStreamer()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | Trim11.cpp | 19 using namespace ABI::Windows::ApplicationModel; 20 using namespace ABI::Windows::ApplicationModel::Core; 21 using namespace ABI::Windows::Foundation; 22 using namespace ABI::Windows::Foundation::Collections;
|
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/ |
H A D | EGLDirectCompositionTest.cpp | 30 using namespace ABI::Windows::System; 31 using namespace ABI::Windows::UI::Composition; 32 using namespace ABI::Windows::UI::Composition::Desktop; 33 using namespace ABI::Windows::Foundation; 114 namespace abi = ABI::Windows::UI::Composition::Desktop; in CreateDesktopWindowTarget() 175 void CreateSurface(ComPtr<ABI::Windows::UI::Composition::ISpriteVisual> visual, in CreateSurface() 247 ABI::Windows::Foundation::Numerics::Vector2 visualsize{0, 0}; in TEST_P()
|
/third_party/vixl/src/aarch64/ |
H A D | abi-aarch64.h | 27 // The ABI features are only supported with C++11 or later. 32 #error "The ABI support requires C++11 or later." 58 class ABI { class 60 explicit ABI(Register stack_pointer = sp) : stack_pointer_(stack_pointer) { in ABI() function in vixl::aarch64::ABI 76 ABI abi(stack_pointer_); in GetReturnGenericOperand() 159 inline GenericOperand ABI::GetReturnGenericOperand<void>() const { in GetReturnGenericOperand()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/Utils/ |
H A D | RISCVBaseInfo.cpp | 13 ABI computeTargetABI(const Triple &TT, FeatureBitset FeatureBits, in computeTargetABI() 22 << "' is not a recognized ABI for this target (ignoring target-abi)\n"; in computeTargetABI() 34 << "Only the ilp32e ABI is supported for RV32E (ignoring target-abi)\n"; in computeTargetABI() 41 // For now, default to the ilp32/ilp32e/lp64 ABI if no explicit ABI is given in computeTargetABI() 52 ABI getTargetABI(StringRef ABIName) { in getTargetABI() 53 auto TargetABI = StringSwitch<ABI>(ABIName) in getTargetABI()
|