Home
last modified time | relevance | path

Searched defs:Func (Results 1 – 25 of 195) sorted by relevance

12345678

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInstX8632.h96 static X86OperandMem *create(Cfg *Func, Type Ty, Variable *Base, in create()
157 static VariableSplit *create(Cfg *Func, Variable *Var, Portion Part) { in create()
172 VariableSplit(Cfg *Func, Variable *Var, Portion Part) in VariableSplit()
331 static TargetLowering *getTarget(const Cfg *Func) { in getTarget()
336 InstX86Base(Cfg *Func, InstKindX86 Kind, SizeT Maxsrcs, Variable *Dest) in InstX86Base()
444 static InstX86Label *create(Cfg *Func, TargetLowering *Target) { in create()
474 static InstX86Br *create(Cfg *Func, CfgNode *TargetTrue, CfgNode *TargetFalse, in create()
482 static InstX86Br *create(Cfg *Func, CfgNode *Target, Mode Kind) { in create()
491 static InstX86Br *create(Cfg *Func, CfgNode *Target, BrCond Condition, in create()
501 static InstX86Br *create(Cfg *Func, InstX86Label *Label, BrCond Condition, in create()
[all …]
DIceInstX8664.h91 static X86OperandMem *create(Cfg *Func, Type Ty, Variable *Base, in create()
270 static TargetLowering *getTarget(const Cfg *Func) { in getTarget()
275 InstX86Base(Cfg *Func, InstKindX86 Kind, SizeT Maxsrcs, Variable *Dest) in InstX86Base()
383 static InstX86Label *create(Cfg *Func, TargetLowering *Target) { in create()
413 static InstX86Br *create(Cfg *Func, CfgNode *TargetTrue, CfgNode *TargetFalse, in create()
421 static InstX86Br *create(Cfg *Func, CfgNode *Target, Mode Kind) { in create()
430 static InstX86Br *create(Cfg *Func, CfgNode *Target, BrCond Condition, in create()
440 static InstX86Br *create(Cfg *Func, InstX86Label *Label, BrCond Condition, in create()
493 static InstX86Jmp *create(Cfg *Func, Operand *Target) { in create()
515 static InstX86Call *create(Cfg *Func, Variable *Dest, Operand *CallTarget) { in create()
[all …]
DIceInstMIPS32.h81 static OperandMIPS32FCC *create(Cfg *Func, OperandMIPS32FCC::FCC FCC) { in create()
87 void emit(const Cfg *Func) const override { in emit()
98 void dump(const Cfg *Func, Ostream &Str) const override { in dump()
152 void dump(const Cfg *Func, Ostream &Str) const override { in dump()
319 InstMIPS32(Cfg *Func, InstKindMIPS32 Kind, SizeT Maxsrcs, Variable *Dest) in InstMIPS32()
367 void emit(const Cfg *Func) const override { in emit()
372 void emitIAS(const Cfg *Func) const override { in emitIAS()
376 void dump(const Cfg *Func) const override { in dump()
408 static InstMIPS32TwoAddrFPR *create(Cfg *Func, Variable *Dest, in create()
413 void emit(const Cfg *Func) const override { in emit()
[all …]
DIceInstARM32.h173 static OperandARM32ShAmtImm *create(Cfg *Func, ConstantInteger32 *ShAmt) { in create()
253 static OperandARM32FlexFpImm *create(Cfg *Func, Type Ty, in create()
284 static OperandARM32FlexFpZero *create(Cfg *Func, Type Ty) { in create()
309 static OperandARM32FlexReg *create(Cfg *Func, Type Ty, Variable *Reg, in create()
348 static StackVariable *create(Cfg *Func, Type Ty, SizeT Index) { in create()
361 StackVariable(const Cfg *Func, Type Ty, SizeT Index) in StackVariable()
495 InstARM32(Cfg *Func, InstKindARM32 Kind, SizeT Maxsrcs, Variable *Dest) in InstARM32()
514 InstARM32Pred(Cfg *Func, InstKindARM32 Kind, SizeT Maxsrcs, Variable *Dest, in InstARM32Pred()
556 static InstARM32UnaryopGPR *create(Cfg *Func, Variable *Dest, Operand *Src, in create()
561 void emit(const Cfg *Func) const override { in emit()
[all …]
DIceInst.cpp71 Inst::Inst(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest) in Inst()
117 void Inst::renumber(Cfg *Func) { in renumber()
189 void Inst::livenessLightweight(Cfg *Func, LivenessBV &Live) { in livenessLightweight()
263 InstAlloca::InstAlloca(Cfg *Func, Variable *Dest, Operand *ByteCount, in InstAlloca()
271 InstArithmetic::InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest, in InstArithmetic()
294 InstAssign::InstAssign(Cfg *Func, Variable *Dest, Operand *Source) in InstAssign()
304 InstBr::InstBr(Cfg *Func, Operand *Source, CfgNode *TargetTrue_, in InstBr()
321 InstBr::InstBr(Cfg *Func, CfgNode *Target) in InstBr()
347 InstCast::InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source) in InstCast()
352 InstExtractElement::InstExtractElement(Cfg *Func, Variable *Dest, in InstExtractElement()
[all …]
DIceInst.h187 virtual void emitIAS(const Cfg *Func) const { emit(Func); } in emitIAS()
273 InstHighLevel(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest) in InstHighLevel()
292 static InstAlloca *create(Cfg *Func, Variable *Dest, Operand *ByteCount, in create()
328 static InstArithmetic *create(Cfg *Func, OpKind Op, Variable *Dest, in create()
363 static InstAssign *create(Cfg *Func, Variable *Dest, Operand *Source) { in create()
385 static InstBr *create(Cfg *Func, Operand *Source, CfgNode *TargetTrue, in create()
391 static InstBr *create(Cfg *Func, CfgNode *Target) { in create()
455 InstCall(Cfg *Func, SizeT NumArgs, Variable *Dest, Operand *CallTarget, in InstCall()
486 static InstCast *create(Cfg *Func, OpKind CastKind, Variable *Dest, in create()
509 static InstExtractElement *create(Cfg *Func, Variable *Dest, Operand *Source1, in create()
[all …]
DIceInstX8664.cpp112 InstX86FakeRMW::InstX86FakeRMW(Cfg *Func, Operand *Data, Operand *Addr, in InstX86FakeRMW()
120 InstX86Mul::InstX86Mul(Cfg *Func, Variable *Dest, Variable *Source1, in InstX86Mul()
127 InstX86Shld::InstX86Shld(Cfg *Func, Variable *Dest, Variable *Source1, in InstX86Shld()
135 InstX86Shrd::InstX86Shrd(Cfg *Func, Variable *Dest, Variable *Source1, in InstX86Shrd()
143 InstX86Label::InstX86Label(Cfg *Func, TargetLowering *Target) in InstX86Label()
155 InstX86Br::InstX86Br(Cfg *Func, const CfgNode *TargetTrue, in InstX86Br()
212 InstX86Jmp::InstX86Jmp(Cfg *Func, Operand *Target) in InstX86Jmp()
217 InstX86Call::InstX86Call(Cfg *Func, Variable *Dest, Operand *CallTarget) in InstX86Call()
223 InstX86Movmsk::InstX86Movmsk(Cfg *Func, Variable *Dest, Operand *Source) in InstX86Movmsk()
228 InstX86Cmov::InstX86Cmov(Cfg *Func, Variable *Dest, Operand *Source, in InstX86Cmov()
[all …]
DIceInstX8632.cpp124 InstX86FakeRMW::InstX86FakeRMW(Cfg *Func, Operand *Data, Operand *Addr, in InstX86FakeRMW()
132 InstX86Mul::InstX86Mul(Cfg *Func, Variable *Dest, Variable *Source1, in InstX86Mul()
139 InstX86Shld::InstX86Shld(Cfg *Func, Variable *Dest, Variable *Source1, in InstX86Shld()
147 InstX86Shrd::InstX86Shrd(Cfg *Func, Variable *Dest, Variable *Source1, in InstX86Shrd()
155 InstX86Label::InstX86Label(Cfg *Func, TargetLowering *Target) in InstX86Label()
167 InstX86Br::InstX86Br(Cfg *Func, const CfgNode *TargetTrue, in InstX86Br()
224 InstX86Jmp::InstX86Jmp(Cfg *Func, Operand *Target) in InstX86Jmp()
229 InstX86Call::InstX86Call(Cfg *Func, Variable *Dest, Operand *CallTarget) in InstX86Call()
235 InstX86Movmsk::InstX86Movmsk(Cfg *Func, Variable *Dest, Operand *Source) in InstX86Movmsk()
240 InstX86Cmov::InstX86Cmov(Cfg *Func, Variable *Dest, Operand *Source, in InstX86Cmov()
[all …]
DIceTargetLoweringX86.h46 explicit TargetX86(Cfg *Func) : TargetLowering(Func) { in TargetX86()
66 inline InstructionSetX86 getInstructionSet(const Cfg *Func) { in getInstructionSet()
DIceInstARM32.cpp158 const InstARM32Pred *Instr, const Cfg *Func, in emitUnaryopGPR()
173 const InstARM32Pred *Instr, const Cfg *Func) { in emitUnaryopFP()
196 const Cfg *Func) { in emitTwoAddr()
210 const InstARM32Pred *Instr, const Cfg *Func, in emitThreeAddr()
226 const InstARM32 *Instr, const Cfg *Func, in emitThreeAddrFP()
241 const InstARM32 *Instr, const Cfg *Func) { in emitFourAddrFP()
257 const Cfg *Func) { in emitFourAddr()
309 const Cfg *Func) { in emitCmpLike()
330 OperandARM32Mem::OperandARM32Mem(Cfg *Func, Type Ty, Variable *Base, in OperandARM32Mem()
470 OperandARM32FlexReg::OperandARM32FlexReg(Cfg *Func, Type Ty, Variable *Reg, in OperandARM32FlexReg()
[all …]
DIceOperand.h87 void dump(const Cfg *Func) const { in dump()
147 void emit(const Cfg *Func) const override { emit(Func->getTarget()); } in emit()
685 static Variable *create(Cfg *Func, Type Ty, SizeT Index) { in create()
696 virtual void setName(const Cfg *Func, const std::string &NewName) { in setName()
847 Variable(const Cfg *Func, OperandKind K, Type Ty, SizeT Index) in Variable()
901 static Variable64On32 *create(Cfg *Func, Type Ty, SizeT Index) { in create()
906 void setName(const Cfg *Func, const std::string &NewName) override { in setName()
931 void initHiLo(Cfg *Func) { in initHiLo()
950 Variable64On32(const Cfg *Func, OperandKind K, Type Ty, SizeT Index) in Variable64On32()
967 static VariableVecOn32 *create(Cfg *Func, Type Ty, SizeT Index) { in create()
[all …]
DIceCfgNode.h31 static CfgNode *create(Cfg *Func, SizeT Number) { in create()
133 CfgNode(Cfg *Func, SizeT Number) in CfgNode()
137 Cfg *const Func; variable
DIceLiveness.h110 static std::unique_ptr<Liveness> create(Cfg *Func, LivenessMode Mode) { in create()
124 Liveness(Cfg *Func, LivenessMode Mode) in Liveness()
139 Cfg *Func; variable
DIceASanInstrumentation.cpp76 bool ASanInstrumentation::isInstrumentable(Cfg *Func) { in isInstrumentable()
223 Cfg *Func = Context.getNode()->getCfg(); in instrumentFuncStart() local
374 Constant *Func = in instrumentLoad() local
391 Constant *Func = in instrumentStore() local
462 Cfg *Func = Context.getNode()->getCfg(); in instrumentRet() local
472 void ASanInstrumentation::instrumentStart(Cfg *Func) { in instrumentStart()
DIceInstMIPS32.cpp46 OperandMIPS32Mem::OperandMIPS32Mem(Cfg *Func, Type Ty, Variable *Base, in OperandMIPS32Mem()
80 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, in InstMIPS32Br()
86 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, in InstMIPS32Br()
94 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue, in InstMIPS32Br()
157 InstMIPS32Label::InstMIPS32Label(Cfg *Func, TargetMIPS32 *Target) in InstMIPS32Label()
188 InstMIPS32Call::InstMIPS32Call(Cfg *Func, Variable *Dest, Operand *CallTarget) in InstMIPS32Call()
194 InstMIPS32Mov::InstMIPS32Mov(Cfg *Func, Variable *Dest, Operand *Src, in InstMIPS32Mov()
222 InstMIPS32MovFP64ToI64::InstMIPS32MovFP64ToI64(Cfg *Func, Variable *Dst, in InstMIPS32MovFP64ToI64()
229 InstMIPS32Ret::InstMIPS32Ret(Cfg *Func, Variable *RA, Variable *Source) in InstMIPS32Ret()
263 const Cfg *Func) { in emitUnaryopGPR()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLibCallsShrinkWrap.cpp137 const LibFunc &Func) { in performCallDomainErrorOnly()
189 const LibFunc &Func) { in performCallRangeErrorOnly()
227 const LibFunc &Func) { in performCallErrors()
300 LibFunc Func; in checkCandidate() local
320 const LibFunc &Func) { in generateOneRangeCond()
342 const LibFunc &Func) { in generateTwoRangeCond()
421 const LibFunc &Func) { in generateCondForPow()
506 LibFunc Func; in perform() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUHSAMetadataStreamer.cpp265 void MetadataStreamerV2::emitKernelLanguage(const Function &Func) { in emitKernelLanguage()
283 void MetadataStreamerV2::emitKernelAttrs(const Function &Func) { in emitKernelAttrs()
301 void MetadataStreamerV2::emitKernelArgs(const Function &Func) { in emitKernelArgs()
309 auto Func = Arg.getParent(); in emitKernelArg() local
399 void MetadataStreamerV2::emitHiddenKernelArgs(const Function &Func) { in emitHiddenKernelArgs()
472 auto &Func = MF.getFunction(); in emitKernel() local
677 void MetadataStreamerV3::emitKernelLanguage(const Function &Func, in emitKernelLanguage()
696 void MetadataStreamerV3::emitKernelAttrs(const Function &Func, in emitKernelAttrs()
717 void MetadataStreamerV3::emitKernelArgs(const Function &Func, in emitKernelArgs()
731 auto Func = Arg.getParent(); in emitKernelArg() local
[all …]
/third_party/skia/third_party/externals/harfbuzz/test/api/
Dhb-test.h197 #define hb_test_add(Func) hb_test_add_func (#Func, Func) argument
208 #define hb_test_add_flavor(Flavor, Func) hb_test_add_func (#Func, Flavor, Func) argument
219 #define hb_test_add_data(UserData, Func) hb_test_add_data_func (#Func, UserData, Func) argument
231 #define hb_test_add_data_flavor(UserData, Flavor, Func) hb_test_add_data_func_flavor (#Func, Flavor… argument
246 #define hb_test_add_fixture(FixturePrefix, UserData, Func) \ argument
274 #define hb_test_add_fixture_flavor(FixturePrefix, UserData, Flavor, Func) \ argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DThreading.cpp62 llvm::unique_function<void()> Func, in llvm_execute_on_thread_async()
72 llvm::unique_function<void()> Func, in llvm_execute_on_thread_async()
135 llvm::unique_function<void()> Func, in llvm_execute_on_thread_async()
/third_party/typescript/tests/baselines/reference/
DjsdocTypeTag.js62 var Func; variable
90 var Func: Function; variable
135 var Func; variable
160 var Func; variable
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dresolved_type_def_function.rs10 pub fn Func(); in Func() function
/third_party/typescript/tests/cases/compiler/
DcircularContextualMappedType.ts3 type Func<T> = () => T; alias
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DRecordSerialization.h83 U Func; member
87 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) { in serialize_conditional()
99 U Func; member
162 serialize_array_impl<T, U> serialize_array(ArrayRef<T> &Item, U Func) { in serialize_array()
/third_party/musl/libc-test/src/functionalext/ldso_cfi/crossdso/
Dcfi_test_lib.cpp28 void BB::Func() in Func() function in BB
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/specifying_types/function_type_literals/
Dfunction_type_literals_2.ts32 interface Func { interface

12345678