Home
last modified time | relevance | path

Searched defs:Shape (Results 1 – 25 of 107) sorted by relevance

12345

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
DCoroInternal.h88 struct LLVM_LIBRARY_VISIBILITY Shape { struct
89 CoroBeginInst *CoroBegin;
90 SmallVector<CoroEndInst *, 4> CoroEnds;
91 SmallVector<CoroSizeInst *, 2> CoroSizes;
92 SmallVector<AnyCoroSuspendInst *, 4> CoroSuspends;
93 SmallVector<CallInst*, 2> SwiftErrorOps;
96 struct SwitchFieldIndex {
107 coro::ABI ABI;
109 StructType *FrameTy;
110 Instruction *FramePtr;
[all …]
DCoroSplit.cpp97 coro::Shape &Shape; member in __anon598121120111::CoroCloner
109 CoroCloner(Function &OrigF, const Twine &Suffix, coro::Shape &Shape, in CoroCloner()
117 CoroCloner(Function &OrigF, const Twine &Suffix, coro::Shape &Shape, in CoroCloner()
162 const coro::Shape &Shape, Value *FramePtr, in maybeFreeRetconStorage()
174 const coro::Shape &Shape, Value *FramePtr, in replaceFallthroughCoroEnd()
223 static void replaceUnwindCoroEnd(CoroEndInst *End, const coro::Shape &Shape, in replaceUnwindCoroEnd()
250 static void replaceCoroEnd(CoroEndInst *End, const coro::Shape &Shape, in replaceCoroEnd()
265 static void createResumeEntryBlock(Function &F, coro::Shape &Shape) { in createResumeEntryBlock()
395 static Function *createCloneDeclaration(Function &OrigF, coro::Shape &Shape, in createCloneDeclaration()
499 static void replaceSwiftErrorOps(Function &F, coro::Shape &Shape, in replaceSwiftErrorOps()
[all …]
DCoroFrame.cpp178 SuspendCrossingInfo::SuspendCrossingInfo(Function &F, coro::Shape &Shape) in SuspendCrossingInfo()
395 static StructType *buildFrameType(Function &F, coro::Shape &Shape, in buildFrameType()
586 static Instruction *insertSpills(const SpillInfo &Spills, coro::Shape &Shape) { in insertSpills()
1139 coro::Shape &Shape, in lowerNonLocalAlloca()
1164 coro::Shape &Shape) { in emitGetSwiftErrorValue()
1179 coro::Shape &Shape) { in emitSetSwiftErrorValue()
1198 coro::Shape &Shape) { in emitSetAndGetSwiftErrorValueAround()
1227 coro::Shape &Shape) { in eliminateSwiftErrorAlloca()
1258 coro::Shape &Shape, in eliminateSwiftErrorArgument()
1294 static void eliminateSwiftError(Function &F, coro::Shape &Shape) { in eliminateSwiftError()
[all …]
/external/llvm-project/llvm/lib/Transforms/Coroutines/
DCoroInternal.h93 struct LLVM_LIBRARY_VISIBILITY Shape { struct
94 CoroBeginInst *CoroBegin;
95 SmallVector<CoroEndInst *, 4> CoroEnds;
96 SmallVector<CoroSizeInst *, 2> CoroSizes;
97 SmallVector<AnyCoroSuspendInst *, 4> CoroSuspends;
98 SmallVector<CallInst*, 2> SwiftErrorOps;
101 struct SwitchFieldIndex {
115 coro::ABI ABI;
117 StructType *FrameTy;
118 Align FrameAlign;
[all …]
DCoroSplit.cpp102 coro::Shape &Shape; member in __anon4516bc1e0111::CoroCloner
114 CoroCloner(Function &OrigF, const Twine &Suffix, coro::Shape &Shape, in CoroCloner()
122 CoroCloner(Function &OrigF, const Twine &Suffix, coro::Shape &Shape, in CoroCloner()
166 const coro::Shape &Shape, Value *FramePtr, in maybeFreeRetconStorage()
178 const coro::Shape &Shape, Value *FramePtr, in replaceFallthroughCoroEnd()
232 static void replaceUnwindCoroEnd(CoroEndInst *End, const coro::Shape &Shape, in replaceUnwindCoroEnd()
261 static void replaceCoroEnd(CoroEndInst *End, const coro::Shape &Shape, in replaceCoroEnd()
276 static void createResumeEntryBlock(Function &F, coro::Shape &Shape) { in createResumeEntryBlock()
406 static Function *createCloneDeclaration(Function &OrigF, coro::Shape &Shape, in createCloneDeclaration()
522 static void replaceSwiftErrorOps(Function &F, coro::Shape &Shape, in replaceSwiftErrorOps()
[all …]
DCoroFrame.cpp190 SuspendCrossingInfo::SuspendCrossingInfo(Function &F, coro::Shape &Shape) in SuspendCrossingInfo()
512 coro::Shape &Shape) { in addFieldForAllocas()
715 static StructType *buildFrameType(Function &F, coro::Shape &Shape, in buildFrameType()
1078 coro::Shape &Shape) { in insertSpills()
1773 coro::Shape &Shape, in lowerNonLocalAlloca()
1798 coro::Shape &Shape) { in emitGetSwiftErrorValue()
1813 coro::Shape &Shape) { in emitSetSwiftErrorValue()
1832 coro::Shape &Shape) { in emitSetAndGetSwiftErrorValueAround()
1861 coro::Shape &Shape) { in eliminateSwiftErrorAlloca()
1892 coro::Shape &Shape, in eliminateSwiftErrorArgument()
[all …]
/external/tensorflow/tensorflow/go/
Dshape.go29 type Shape struct { struct
30 dims []int64
50 func (s Shape) NumDimensions() int {
61 func (s Shape) Size(dim int) int64 {
70 func (s Shape) IsFullySpecified() bool {
84 func (s Shape) ToSlice() ([]int64, error) {
93 func (s Shape) String() string {
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Dshape.h96 struct Shape { struct
97 Shape() : layout(Layout::UNKNOWN), dimensions() {} in Shape() function
99 explicit Shape(Layout t) : layout(t), dimensions(Size(t)) {} in Shape() argument
101 Shape(Layout t, std::vector<int32_t> d) in Shape() argument
138 std::string ToString(const Shape& s); argument
/external/gemmlowp/test/
Dbenchmark_meta_gemm.cc64 struct Shape { struct
73 Shape(std::int32_t n, std::int32_t m, std::int32_t k) in Shape() argument
76 void init() { in init()
104 double run_gemms(std::vector<Shape>* shapes) { in run_gemms() argument
Dbenchmark_all_sizes.cc206 struct Shape { struct
212 bool operator==(const Shape& s1, const Shape& s2) { in operator ==() argument
320 void run_benchmarks(std::map<Shape, float>* results) { in run_benchmarks()
/external/tensorflow/tensorflow/core/kernels/
Ddeep_conv2d.h55 struct Shape { struct
56 Shape(int64 r, int64 c) : rows(r), cols(c) {} in Shape() function
61 virtual const Shape& filter_shape() const = 0; argument
/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-categories/
Dmain.cpp5 struct Shape struct
8 Shape() : dummy(true) {} in Shape() argument
/external/tensorflow/tensorflow/lite/delegates/xnnpack/
Dunary_elementwise_tester.h35 inline UnaryElementwiseTester& Shape(std::initializer_list<int32_t> shape) { in Shape() function
44 const std::vector<int32_t>& Shape() const { return shape_; } in Shape() function
Dleaky_relu_tester.h34 inline LeakyReluTester& Shape(std::initializer_list<int32_t> shape) { in Shape() function
43 inline const std::vector<int32_t>& Shape() const { return shape_; } in Shape() function
Dsoftmax_tester.h35 inline SoftmaxTester& Shape(std::initializer_list<int32_t> shape) { in Shape() function
45 const std::vector<int32_t>& Shape() const { return shape_; } in Shape() function
/external/tensorflow/tensorflow/compiler/xla/service/
Dstable_sort_expander_test.cc248 [](const Shape&, const Shape&) { return false; })); in TEST_F()
285 [](const Shape&, const Shape&) { return false; })); in TEST_F()
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
DShape.java21 public final class Shape { class
108 Shape(long[] shape) { in Shape() method in Shape
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
DShape.java18 public interface Shape { interface
/external/clang/test/CodeGenObjC/
Ddebug-info-impl.m7 @interface Shape : NSObject interface
/external/llvm-project/clang/test/CodeGenObjC/
Ddebug-info-impl.m7 @interface Shape : NSObject interface
/external/llvm-project/clang/test/Analysis/
Dcast-value-state-dump.cpp10 struct Shape {}; struct
/external/tensorflow/tensorflow/compiler/mlir/xla/
Dhlo_module_importer.h34 class Shape; variable
/external/clang/test/PCH/
Denum.h9 enum Shape { enum
/external/llvm-project/clang/test/PCH/
Denum.h9 enum Shape { enum
/external/tensorflow/tensorflow/lite/swift/Sources/
DTensor.swift112 public struct Shape: Equatable, Hashable { struct

12345