OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GISel
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Target/AArch64/
AArch64TargetMachine.cpp
230
GISelAccessor *
GISel
= new GISelAccessor();
232
AArch64GISelActualAccessor *
GISel
=
234
GISel
->CallLoweringInfo.reset(
236
GISel
->RegBankInfo.reset(
239
I->setGISelAccessor(*
GISel
);
AArch64Subtarget.h
111
/// This is used to avoid ifndefs spreading around while
GISel
is
113
std::unique_ptr<GISelAccessor>
GISel
;
132
void setGISelAccessor(GISelAccessor &
GISel
) {
133
this->
GISel
.reset(&
GISel
);
/external/llvm/lib/Target/AMDGPU/
AMDGPUTargetMachine.cpp
241
GISelAccessor *
GISel
= new GISelAccessor();
243
SIGISelActualAccessor *
GISel
= new SIGISelActualAccessor();
244
GISel
->CallLoweringInfo.reset(
248
I->setGISelAccessor(*
GISel
);
AMDGPUSubtarget.h
345
std::unique_ptr<GISelAccessor>
GISel
;
364
assert(
GISel
&& "Access to GlobalISel APIs not set");
365
return
GISel
->getCallLowering();
372
void setGISelAccessor(GISelAccessor &
GISel
) {
373
this->
GISel
.reset(&
GISel
);
Completed in 97 milliseconds