Searched refs:VarInfo (Results 1 - 15 of 15) sorted by relevance

/external/clang/unittests/AST/
H A DEvaluateAsRValueTest.cpp37 explicit EvaluateConstantInitializersVisitor(VarInfoMap &VarInfo) argument
38 : VarInfo(VarInfo) {}
43 /// For each VarDecl with an initializer this also records in VarInfo
49 VarInfo[VD->getNameAsString()] = WasEvaluated;
57 VarInfoMap &VarInfo; member in class:__anon19532::EvaluateConstantInitializersVisitor
73 VarInfoMap VarInfo; variable
74 EvaluateConstantInitializersVisitor Evaluator(VarInfo);
76 EXPECT_EQ(2u, VarInfo.size());
77 EXPECT_FALSE(VarInfo["Dependen variable
78 EXPECT_TRUE(VarInfo["Constant"]); variable
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dvar_tracker.h151 struct PPAPI_SHARED_EXPORT VarInfo { struct in class:ppapi::VarTracker
152 VarInfo();
153 VarInfo(Var* v, int input_ref_count);
173 typedef base::hash_map<int32, VarInfo> VarMap;
H A Dvar_tracker.cc21 VarTracker::VarInfo::VarInfo() function in class:ppapi::VarTracker::VarInfo
24 VarTracker::VarInfo::VarInfo(Var* v, int input_ref_count) function in class:ppapi::VarTracker::VarInfo
75 VarInfo& info = found->second;
106 VarInfo& info = found->second;
148 new_id, VarInfo(var, mode == ADD_VAR_TAKE_ONE_REFERENCE ? 1 : 0)));
/external/llvm/include/llvm/CodeGen/
H A DLiveVariables.h53 /// VarInfo - This represents the regions where a virtual register is live in
79 struct VarInfo { struct in class:llvm::LiveVariables
120 IndexedMap<VarInfo, VirtReg2IndexFunctor> VirtRegInfo;
268 /// getVarInfo - Return the VarInfo structure for the specified VIRTUAL
270 VarInfo &getVarInfo(unsigned RegIdx);
272 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
274 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DJDWPStackFrameTestCase.java61 public class VarInfo { class in class:JDWPStackFrameTestCase
66 public VarInfo(String name, int slot, String signature) { method in class:JDWPStackFrameTestCase.VarInfo
124 protected VarInfo[] jdwpGetVariableTable(long classID, long methodID) {
137 VarInfo[] varInfos = new VarInfo[varNumber];
145 varInfos[i] = new VarInfo(name, slot, sign);
H A DGetValuesTest.java45 VarInfo[] varInfos;
286 public static boolean checkVarTable(LogWriter logWriter, VarInfo[] varInfos, byte[] varTags, String[] varSignatures, String[] varNames) {
H A DSetValuesTest.java43 VarInfo[] varInfos;
303 private VarInfo varInfoByName(String name) {
/external/llvm/lib/CodeGen/
H A DLiveVariables.cpp60 LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
67 void LiveVariables::VarInfo::dump() const {
84 /// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
85 LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
92 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
118 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
137 VarInfo& VRInfo = getVarInfo(reg);
183 VarInfo &VRInfo = getVarInfo(Reg);
678 VarInfo &VI = getVarInfo(Reg);
692 assert(removed && "kill not in register's VarInfo
[all...]
H A DPHIElimination.cpp273 LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg);
291 // for the VarInfo is not filled in.
H A DMachineVerifier.cpp1000 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
1303 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
/external/llvm/include/llvm/IR/
H A DDIBuilder.h692 /// @param VarInfo Variable's debug info descriptor.
694 Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo,
699 /// @param VarInfo Variable's debug info descriptor.
701 Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo,
708 /// @param VarInfo Variable's debug info descriptor.
711 DIVariable VarInfo,
717 /// @param VarInfo Variable's debug info descriptor.
720 DIVariable VarInfo,
/external/chromium_org/gpu/command_buffer/service/
H A Dprogram_manager_unittest.cc215 } VarInfo; typedef in class:gpu::gles2::ProgramManagerWithShaderTest
276 Program* SetupShaderVariableTest(const VarInfo* vertex_variables,
278 const VarInfo* fragment_variables,
1200 const VarInfo kVertexVarying =
1202 const VarInfo kFragmentVarying =
1217 const VarInfo kVertexVarying =
1219 const VarInfo kFragmentVarying =
1234 const VarInfo kVertexVarying =
1236 const VarInfo kFragmentVarying =
1251 const VarInfo kFragmentVaryin
[all...]
/external/llvm/lib/IR/
H A DDIBuilder.cpp1262 Instruction *DIBuilder::insertDeclare(Value *Storage, DIVariable VarInfo, argument
1265 assert(VarInfo.isVariable() &&
1270 Value *Args[] = { MDNode::get(Storage->getContext(), Storage), VarInfo };
1275 Instruction *DIBuilder::insertDeclare(Value *Storage, DIVariable VarInfo, argument
1278 assert(VarInfo.isVariable() &&
1283 Value *Args[] = { MDNode::get(Storage->getContext(), Storage), VarInfo };
1295 DIVariable VarInfo,
1298 assert(VarInfo.isVariable() &&
1305 VarInfo };
1311 DIVariable VarInfo,
1294 insertDbgValueIntrinsic(Value *V, uint64_t Offset, DIVariable VarInfo, Instruction *InsertBefore) argument
1310 insertDbgValueIntrinsic(Value *V, uint64_t Offset, DIVariable VarInfo, BasicBlock *InsertAtEnd) argument
[all...]
/external/chromium_org/ppapi/proxy/
H A Dplugin_var_tracker.cc72 VarInfo& info = GetLiveVar(ret)->second;
98 VarInfo& info = GetLiveVar(ret)->second;
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp247 LiveVariables::VarInfo &VI = LV->getVarInfo(Reg);

Completed in 777 milliseconds