OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ISD
(Results
1 - 11
of
11
) sorted by null
/external/llvm/include/llvm/Target/
CostTable.h
23
int
ISD
;
31
unsigned len, int
ISD
, TypeTy Ty) {
33
if (Tbl[i].
ISD
==
ISD
&& Tbl[i].Type == Ty)
43
int
ISD
;
52
unsigned len, int
ISD
, TypeTy Dst, TypeTy Src) {
54
if (Tbl[i].
ISD
==
ISD
&& Tbl[i].Src == Src && Tbl[i].Dst == Dst)
TargetCallingConv.h
23
namespace
ISD
{
/external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp
201
int
ISD
= TLI->InstructionOpcodeToISD(Opcode);
202
assert(
ISD
&& "Invalid opcode");
214
if (
ISD
==
ISD
::EXTRACT_VECTOR_ELT ||
215
ISD
==
ISD
::INSERT_VECTOR_ELT)
/external/llvm/lib/MC/
MCMachOStreamer.cpp
227
IndirectSymbolData
ISD
;
228
ISD
.Symbol = Symbol;
229
ISD
.SectionData = getCurrentSectionData();
230
getAssembler().getIndirectSymbols().push_back(
ISD
);
MCELFStreamer.cpp
158
IndirectSymbolData
ISD
;
159
ISD
.Symbol = Symbol;
160
ISD
.SectionData = getCurrentSectionData();
161
getAssembler().getIndirectSymbols().push_back(
ISD
);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
examples.cpp
232
namespace
ISD
{
234
template class BasicStringPiece<int>; // expected-error {{explicit instantiation of undefined template 'spec_vs_expl_inst::
ISD
::BasicStringPiece<int>'}}
/external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp
181
(TLI->isOperationLegalOrCustom(
ISD
::BR_JT, MVT::Other) ||
182
TLI->isOperationLegalOrCustom(
ISD
::BRIND, MVT::Other));
223
int
ISD
= TLI->InstructionOpcodeToISD(Opcode);
224
assert(
ISD
&& "Invalid opcode");
233
if (TLI->isOperationLegalOrPromote(
ISD
, LT.second)) {
243
if (!TLI->isOperationExpand(
ISD
, LT.second)) {
270
int
ISD
= TLI->InstructionOpcodeToISD(Opcode);
271
assert(
ISD
&& "Invalid opcode");
294
if (TLI->isOperationLegalOrPromote(
ISD
, DstLT.second))
305
if (!TLI->isOperationExpand(
ISD
, DstLT.second)
[
all
...]
/external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp
181
int
ISD
= TLI->InstructionOpcodeToISD(Opcode);
182
assert(
ISD
&& "Invalid opcode");
187
{
ISD
::FP_ROUND, MVT::v2f64, 2 },
188
{
ISD
::FP_EXTEND, MVT::v2f32, 2 },
189
{
ISD
::FP_EXTEND, MVT::v4f32, 4 }
192
if (Src->isVectorTy() && ST->hasNEON() && (
ISD
==
ISD
::FP_ROUND ||
193
ISD
==
ISD
::FP_EXTEND)) {
196
ISD
, LT.second)
[
all
...]
/external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp
174
int
ISD
= TLI->InstructionOpcodeToISD(Opcode);
175
assert(
ISD
&& "Invalid opcode");
180
{
ISD
::SHL, MVT::v4i32, 1 },
181
{
ISD
::SRL, MVT::v4i32, 1 },
182
{
ISD
::SRA, MVT::v4i32, 1 },
183
{
ISD
::SHL, MVT::v8i32, 1 },
184
{
ISD
::SRL, MVT::v8i32, 1 },
185
{
ISD
::SRA, MVT::v8i32, 1 },
186
{
ISD
::SHL, MVT::v2i64, 1 },
187
{
ISD
::SRL, MVT::v2i64, 1 }
[
all
...]
/external/llvm/include/llvm/CodeGen/
ISDOpcodes.h
19
///
ISD
namespace - This namespace contains an enum which represents all of the
22
namespace
ISD
{
25
///
ISD
::NodeType enum - This enum defines the target-independent operators
432
/// 5)
ISD
::CvtCode indicating the type of conversion to do
696
///
ISD
::CondCode enum - These are ordered carefully to make the bitfields
[
all
...]
SelectionDAGNodes.h
62
namespace
ISD
{
74
///
ISD
::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
79
/// and all operands of the specified node are
ISD
::UNDEF.
81
} // end llvm:
ISD
namespace
367
/// are the opcode values in the
ISD
and <target>
ISD
namespaces. For
372
/// \<target\>
ISD
namespace).
373
bool isTargetOpcode() const { return NodeType >=
ISD
::BUILTIN_OP_END; }
376
/// memory-referencing opcode (in the \<target\>
ISD
namespace and
379
return NodeType >=
ISD
::FIRST_TARGET_MEMORY_OPCODE
[
all
...]
Completed in 199 milliseconds