Searched defs:null (Results 1 - 7 of 7) sorted by relevance
/openjdk7/hotspot/src/share/vm/shark/ |
H A D | llvmValue.hpp | 55 static llvm::ConstantPointerNull* null() function in class:LLVMValue
|
H A D | sharkNativeWrapper.cpp | 116 builder()->CreateStore(LLVMValue::null(), oop_tmp_slot()); 123 BasicBlock *null, *not_null, *merge; local 133 null = CreateBlock("null"); 142 LLVMValue::null()), 143 null, not_null); 145 builder()->SetInsertPoint(null); 153 phi->addIncoming(ConstantPointerNull::get(box_type), null); local 282 LLVMValue::null()), 295 BasicBlock *null local 309 phi->addIncoming(LLVMValue::null(), null); local [all...] |
H A D | sharkValue.hpp | 141 static SharkValue* null() { function in class:SharkValue 142 return create_jobject(LLVMValue::null(), false); 167 // Repeated null and divide-by-zero check removal 234 // Repeated null and divide-by-zero check removal
|
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/ |
H A D | defines.h | 130 #define null (0) macro 160 #define CHECK_NULL(p) _CHECK_DO((p)==null, return) 161 #define CHECK_NULL_(y,p) _CHECK_DO((p)==null, return y) 162 #define CHECK_NULL_0(p) _CHECK_DO((p)==null, return 0) 170 #define BOOL_TF(x) (((x) != null && strcmp((x),STR_TRUE) == 0) ? true : false)
|
H A D | coding.h | 57 coding* init(); // returns self or null if error 97 static void abort(const char* msg = null) { unpack_abort(msg); } argument
|
/openjdk7/jdk/src/share/back/ |
H A D | SDE.c | 44 #define null NULL macro 73 private String globalDefaultStratumId = null; 76 private String defaultStratumId = null; 97 private char* jplsFilename = null; 98 private char* NullString = null; 121 if ( cachedClass != null ) { 123 cachedClass = null; 125 if ( sourceDebugExtension!=null ) { 128 sourceDebugExtension = null; 131 lineTable = null; [all...] |
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | graphKit.hpp | 95 Node* null() const { return zerocon(T_OBJECT); } function in class:GraphKit 114 return null(); 349 // Throw an exception if a given value is null. 350 // Return the value cast to not-null. 351 // Be clever about equivalent dominating null checks. 371 // Throw an uncommon trap if a given value is __not__ null. 372 // Return the value cast to null, and be clever about dominating checks. 377 // Null check oop. Return null-path control into (*null_control). 378 // Return a cast-not-null node which depends on the not-null contro [all...] |
Completed in 59 milliseconds