HomeSort by relevance Sort by last modified time
    Searched refs:Func (Results 1 - 25 of 1149) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2003-10-06-NegateExprType.c 5 void Func(int *B) {
2003-10-29-AsmRename.c 7 extern int Func(struct foo*) __asm__("Func64");
10 int Func(struct foo *F) {
20 Func(0); /* should be renamed to call Func64 */
  /external/swiftshader/third_party/subzero/src/
IceVariableSplitting.h 21 void splitBlockLocalVariables(class Cfg *Func);
IceInstARM32.h 105 static OperandARM32Mem *create(Cfg *Func, Type Ty, Variable *Base,
108 return new (Func->allocate<OperandARM32Mem>())
109 OperandARM32Mem(Func, Ty, Base, ImmOffset, Mode);
113 static OperandARM32Mem *create(Cfg *Func, Type Ty, Variable *Base,
117 return new (Func->allocate<OperandARM32Mem>())
118 OperandARM32Mem(Func, Ty, Base, Index, ShiftOp, ShiftAmt, Mode);
137 void emit(const Cfg *Func) const override;
139 void dump(const Cfg *Func, Ostream &Str) const override;
152 OperandARM32Mem(Cfg *Func, Type Ty, Variable *Base,
154 OperandARM32Mem(Cfg *Func, Type Ty, Variable *Base, Variable *Index
    [all...]
IceInstMIPS32.h 81 static OperandMIPS32FCC *create(Cfg *Func, OperandMIPS32FCC::FCC FCC) {
82 return new (Func->allocate<OperandMIPS32FCC>()) OperandMIPS32FCC(FCC);
87 void emit(const Cfg *Func) const override {
90 Ostream &Str = Func->getContext()->getStrEmit();
98 void dump(const Cfg *Func, Ostream &Str) const override {
101 (void)Func;
129 static OperandMIPS32Mem *create(Cfg *Func, Type Ty, Variable *Base,
131 return new (Func->allocate<OperandMIPS32Mem>())
132 OperandMIPS32Mem(Func, Ty, Base, ImmOffset, Mode);
139 void emit(const Cfg *Func) const override
    [all...]
IceInstMIPS32.cpp 48 OperandMIPS32Mem::OperandMIPS32Mem(Cfg *Func, Type Ty, Variable *Base,
52 (void)Func;
157 template <> void InstMIPS32Lui::emit(const Cfg *Func) const {
160 Ostream &Str = Func->getContext()->getStrEmit();
163 getDest()->emit(Func);
169 CR->emitWithoutPrefix(Func->getTarget());
172 Src0->emit(Func);
176 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue,
179 : InstMIPS32(Func, InstMIPS32::Br, 0, nullptr), TargetTrue(TargetTrue),
182 InstMIPS32Br::InstMIPS32Br(Cfg *Func, const CfgNode *TargetTrue
    [all...]
IceInstX86Base.h 208 void dump(const Cfg *Func) const override;
211 void emitTwoAddress(const Cfg *Func, const char *Opcode,
214 static TargetLowering *getTarget(const Cfg *Func) {
215 return static_cast<TargetLowering *>(Func->getTarget());
219 InstX86Base(Cfg *Func, InstKindX86 Kind, SizeT Maxsrcs, Variable *Dest)
220 : InstTarget(Func, static_cast<InstKind>(Kind), Maxsrcs, Dest) {}
262 static InstX86FakeRMW *create(Cfg *Func, Operand *Data, Operand *Addr,
267 return new (Func->allocate<InstX86FakeRMW>())
268 InstX86FakeRMW(Func, Data, Addr, Op, Beacon);
276 void dump(const Cfg *Func) const override
    [all...]
IceInst.cpp 79 Inst::Inst(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest)
80 : Kind(Kind), Number(Func->newInstNumber()), Dest(Dest), MaxSrcs(MaxSrcs),
127 void Inst::renumber(Cfg *Func) {
128 Number = isDeleted() ? NumberDeleted : Func->newInstNumber();
199 void Inst::livenessLightweight(Cfg *Func, LivenessBV &Live) {
202 VariablesMetadata *VMetadata = Func->getVMetadata();
273 InstAlloca::InstAlloca(Cfg *Func, Variable *Dest, Operand *ByteCount,
275 : InstHighLevel(Func, Inst::Alloca, 1, Dest), AlignInBytes(AlignInBytes) {
281 InstArithmetic::InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest,
283 : InstHighLevel(Func, Inst::Arithmetic, 2, Dest), Op(Op)
    [all...]
IceInstX86BaseImpl.h 50 InstImpl<TraitsType>::InstX86FakeRMW::InstX86FakeRMW(Cfg *Func, Operand *Data,
54 : InstX86Base(Func, InstX86Base::FakeRMW, 3, nullptr), Op(Op) {
61 InstImpl<TraitsType>::InstX86GetIP::InstX86GetIP(Cfg *Func, Variable *Dest)
62 : InstX86Base(Func, InstX86Base::GetIP, 0, Dest) {}
65 InstImpl<TraitsType>::InstX86Mul::InstX86Mul(Cfg *Func, Variable *Dest,
68 : InstX86Base(Func, InstX86Base::Mul, 2, Dest) {
74 InstImpl<TraitsType>::InstX86Shld::InstX86Shld(Cfg *Func, Variable *Dest,
77 : InstX86Base(Func, InstX86Base::Shld, 3, Dest) {
84 InstImpl<TraitsType>::InstX86Shrd::InstX86Shrd(Cfg *Func, Variable *Dest,
87 : InstX86Base(Func, InstX86Base::Shrd, 3, Dest)
    [all...]
IceInstARM32.cpp 120 void InstARM32::startNextInst(const Cfg *Func) const {
121 if (auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>())
125 void InstARM32::emitUsingTextFixup(const Cfg *Func) const {
128 GlobalContext *Ctx = Func->getContext();
129 auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>();
145 emit(Func);
160 void InstARM32::emitIAS(const Cfg *Func) const { emitUsingTextFixup(Func); }
163 const InstARM32Pred *Instr, const Cfg *Func,
165 Ostream &Str = Func->getContext()->getStrEmit()
    [all...]
IceInst.h 86 void renumber(Cfg *Func);
161 void livenessLightweight(Cfg *Func, LivenessBV &Live);
179 // resize(size_t, const Ice::Inst &). virtual void emit(const Cfg *Func)
180 // const = 0; virtual void emitIAS(const Cfg *Func) const = 0;
184 virtual void emitIAS(const Cfg *Func) const { emit(Func); }
185 virtual void dump(const Cfg *Func) const;
186 virtual void dumpExtras(const Cfg *Func) const;
187 void dumpDecorated(const Cfg *Func) const;
188 void emitSources(const Cfg *Func) const
    [all...]
IceCfgNode.h 31 static CfgNode *create(Cfg *Func, SizeT Number) {
32 return new (Func->allocate<CfgNode>()) CfgNode(Func, Number);
35 Cfg *getCfg() const { return Func; }
48 Name = NodeString::createWithString(Func, NewName);
51 return ".L" + Func->getFunctionName() + "$" + getName();
113 void emit(Cfg *Func) const;
114 void emitIAS(Cfg *Func) const;
115 void dump(Cfg *Func) const;
131 CfgNode(Cfg *Func, SizeT Number
    [all...]
IceTranslator.h 51 /// Translates the constructed ICE function Func to machine code.
52 void translateFcn(std::unique_ptr<Cfg> Func);
83 CfgOptWorkItem(std::unique_ptr<Cfg> Func) : Func(std::move(Func)) {}
84 std::unique_ptr<Cfg> getParsedCfg() override { return std::move(Func); }
88 std::unique_ptr<Ice::Cfg> Func;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr12696-1.cc 7 void Func() { new Bar(); }
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FunctionDelegates.cs 37 public delegate TResult Func<TResult>();
39 public delegate TResult Func<T, TResult>(T arg);
  /external/clang/test/CodeGenCXX/
2009-08-11-VectorRetTy.cpp 3 typedef void (*Func) ();
11 Func arr[] = {
  /external/clang/test/CoverageMapping/
system_macro.c 6 #define Func(x) if (x) {}
16 Func(x);
  /external/compiler-rt/test/asan/TestCases/
uar_and_exceptions.cc 21 void Func(int depth) {
25 Func(depth - 1);
33 Func(argc * 100);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeVisitorAction.cs 63 Func<object, object> _preAction;
64 Func<object, object> _postAction;
66 public TreeVisitorAction(Func<object, object> preAction, Func<object, object> postAction)
  /external/clang/test/Layout/
ms-vtordisp-local.cpp 15 virtual void Func() {}
38 virtual void Func() {}
60 virtual void Func() {}
81 virtual void Func() {}
102 virtual void Func() {}
122 virtual void Func() {}
144 virtual void Func() {}
170 virtual void Func() {}
193 virtual void Func() {}
  /external/clang/test/PCH/
rdar10830559.cpp 28 class BarTypes { public: virtual void Func(); };
  /external/clang/test/SemaTemplate/
instantiate-overloaded-arrow.cpp 18 void Func() {
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetLibraryInfo.h 19 enum Func {
58 bool has(LibFunc::Func F) const {
64 void setUnavailable(LibFunc::Func F) {
68 void setAvailable(LibFunc::Func F) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeVisitorAction.cs 65 private readonly Func<object, object> _preAction;
66 private readonly Func<object, object> _postAction;
68 public TreeVisitorAction( Func<object, object> preAction, Func<object, object> postAction )
  /external/llvm/bindings/go/llvm/
IRBindings.cpp 25 Function *Func = unwrap<Function>(Fn);
26 const AttributeSet PAL = Func->getAttributes();
29 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex,
30 AttributeSet::get(Func->getContext(),
32 Func->setAttributes(PALnew);
36 Function *Func = unwrap<Function>(Fn);
37 const AttributeSet PAL = Func->getAttributes();
42 Function *Func = unwrap<Function>(Fn);
43 const AttributeSet PAL = Func->getAttributes();
46 PAL.removeAttributes(Func->getContext(), AttributeSet::FunctionIndex
    [all...]

Completed in 1956 milliseconds

1 2 3 4 5 6 7 8 91011>>