OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InstructionVal
(Results
1 - 9
of
9
) sorted by null
/external/llvm/include/llvm/IR/
Instruction.h
102
unsigned getOpcode() const { return getValueID() -
InstructionVal
; }
468
return V->getValueID() >= Value::
InstructionVal
;
Value.h
419
///
InstructionVal
. So this means three things:
420
/// # there is no value with code
InstructionVal
(no opcode==0).
422
/// # the
InstructionVal
enumerator must be the highest valued enumerator in
734
return Val.getValueID() >= Value::
InstructionVal
;
PatternMatch.h
422
if (V->getValueID() == Value::
InstructionVal
+ Opcode) {
643
if (V->getValueID() == Value::
InstructionVal
+ Opc1 ||
644
V->getValueID() == Value::
InstructionVal
+ Opc2) {
[
all
...]
/external/swiftshader/third_party/LLVM/include/llvm/
Instruction.h
82
unsigned getOpcode() const { return getValueID() -
InstructionVal
; }
304
return V->getValueID() >= Value::
InstructionVal
;
Value.h
220
InstructionVal
, // This is an instance of Instruction
221
// Enum values starting at
InstructionVal
are used for Instructions;
232
/// for instructions, the Instruction's opcode is added to
InstructionVal
. So
234
/// # there is no value with code
InstructionVal
(no opcode==0).
236
/// # the
InstructionVal
enumerator must be the highest valued enumerator in
353
return Val.getValueID() >= Value::
InstructionVal
;
/external/swiftshader/third_party/LLVM/lib/VMCore/
Instruction.cpp
25
: User(ty, Value::
InstructionVal
+ it, Ops, NumOps), Parent(0) {
39
: User(ty, Value::
InstructionVal
+ it, Ops, NumOps), Parent(0) {
/external/llvm/lib/IR/
Instruction.cpp
25
: User(ty, Value::
InstructionVal
+ it, Ops, NumOps), Parent(nullptr) {
37
: User(ty, Value::
InstructionVal
+ it, Ops, NumOps), Parent(nullptr) {
/external/swiftshader/third_party/LLVM/include/llvm/Support/
PatternMatch.h
279
if (V->getValueID() == Value::
InstructionVal
+ Opcode) {
410
if (V->getValueID() == Value::
InstructionVal
+ Opc1 ||
411
V->getValueID() == Value::
InstructionVal
+ Opc2) {
/external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolution.cpp
[
all
...]
Completed in 175 milliseconds