OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Opnd
(Results
1 - 4
of
4
) sorted by null
/dalvik/vm/compiler/codegen/x86/libenc/
encoder.h
192
class
Opnd
{
199
Opnd
(Tag t): tag(t) {}
212
Opnd
(const
Opnd
&): tag(Mem) { assert(false); }
213
Opnd
& operator=(const
Opnd
&) { assert(false); return *this; }
216
class Imm_Opnd: public
Opnd
{
232
Opnd
(isSigned ? SignedImm : UnsignedImm), value(val), size(size_32) {
248
Imm_Opnd(const Imm_Opnd& that):
Opnd
(that.tag), value(that.value), size(that.size) {};
252
Opnd
(isSigned ? SignedImm : UnsignedImm), value(val), size(sz)
[
all
...]
/external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp
633
SDValue
Opnd
= Op->getOperand(++OpNo), In64;
635
if (
Opnd
.getValueType() == MVT::i64)
636
In64 = initAccumulator(
Opnd
, DL, DAG);
638
Ops.push_back(
Opnd
);
/external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp
796
const FAddend *
Opnd
= *I;
797
if (
Opnd
->isConstant())
800
const FAddendCoef &CE =
Opnd
->getCoef();
824
(const FAddend &
Opnd
, bool &NeedNeg) {
825
const FAddendCoef &Coeff =
Opnd
.getCoef();
827
if (
Opnd
.isConstant()) {
832
Value *OpndVal =
Opnd
.getSymVal();
[
all
...]
/external/llvm/lib/Transforms/Scalar/
Reassociate.cpp
[
all
...]
Completed in 130 milliseconds