Home
last modified time | relevance | path

Searched refs:ABI (Results 1 - 25 of 98) sorted by relevance

1234

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
H A DCoroInternal.h66 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 DCoroSplit.cpp113 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 DCoroutines.cpp355 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 DMipsABIInfo.h1 //===---- 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 DMipsMCAsmInfo.cpp25 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 DInspectableNativeWindow.cpp17 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 DInspectableNativeWindow.h29 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 DSwapChainPanelNativeWindow.h40 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 DCoreWindowNativeWindow.h18 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 DCoreWindowNativeWindow_unittest.cpp22 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 DSwapChainPanelNativeWindow_unittest.cpp24 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 DSwapChainPanelNativeWindow.cpp14 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 DNativeWindow11WinRT.cpp32 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 DCompositorNativeWindow11.cpp23 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 DCompositorNativeWindow11.h37 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 Dbuild_all_android.sh41 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 DMipsSEFrameLowering.cpp282 /// 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 DMipsSERegisterInfo.cpp154 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 DMipsMachineFunction.cpp73 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 DMipsTargetMachine.cpp67 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 DRISCVELFStreamer.cpp29 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 DTrim11.cpp19 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 DEGLDirectCompositionTest.cpp30 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 Dabi-aarch64.h27 // 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 DRISCVBaseInfo.cpp13 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()

Completed in 11 milliseconds

1234